diff --git a/.github/workflows/cs-comparison.yml b/.github/workflows/cs-comparison.yml
index d25b6d647..f66589076 100644
--- a/.github/workflows/cs-comparison.yml
+++ b/.github/workflows/cs-comparison.yml
@@ -1,15 +1,9 @@
-# Run the full CS ingration comparison
-#
-# This is just a proof of concept for now since the raw input is not available as it
-# is too large to include in repository.
-
name: cs-comparison
on: workflow_dispatch
jobs:
build:
-
runs-on: ubuntu-latest
steps:
@@ -19,11 +13,21 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
- distribution: 'adopt'
+ distribution: 'temurin'
java-version: '21'
- cache: 'gradle'
+ cache: 'maven'
+
+ - name: Cache Maven packages
+ uses: actions/cache@v4
+ with:
+ path: ~/.m2/repository
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+ restore-keys: |
+ ${{ runner.os }}-maven-
- - name: CS Comparison
+ # Run the comparison using the test classpath
+ - name: Build and run CS Comparison
run: |
- chmod +x gradlew
- ./gradlew :staging-client-java-cs:csIntegrationTest
+ chmod +x ./mvnw
+ ./mvnw -B test-compile -DskipTests
+ ./mvnw -B exec:java -DskipTests -Dexec.mainClass=com.imsweb.staging.cs.CsIntegrationTest -Dexec.classpathScope=test
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index 9a90c945d..5430f2e51 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -18,21 +18,30 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
- distribution: 'adopt'
+ distribution: 'temurin'
java-version: '21'
- cache: 'gradle'
+ cache: 'maven'
+
+ - name: Cache Maven packages
+ uses: actions/cache@v4
+ with:
+ path: ~/.m2/repository
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+ restore-keys: |
+ ${{ runner.os }}-maven-
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
- restore-keys: ${{ runner.os }}-sonar
+ restore-keys: |
+ ${{ runner.os }}-sonar
- name: Build and test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
- chmod +x gradlew
- ./gradlew build sonar
+ chmod +x ./mvnw
+ ./mvnw -B verify sonar:sonar
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index a39adfaf6..eebc1989f 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -1,4 +1,30 @@
-# Publish to Maven Central
+# Publish to Maven Central (Maven)
+#
+# Non-SNAPSHOT releases are done automatically on Git tag. SNAPSHOT releases are not handled by CI; use
+# the following command to release a SNAPSHOT (ensure the version in pom.xml is a SNAPSHOT version):
+#
+# $ .\mvnw.cmd deploy -DskipTests
+#
+# Note that to release locally you will need to set up a settings.xml file in you user
+# home .m2 directory. The username and password is generated at:
+#
+# https://central.sonatype.com/usertoken.
+#
+# Here is the settings.xml file:
+#
+#
+#
+#
+#
+# central
+# USERNAME FROM GENERATED TOKEN
+# PASSWORD FROM GENERATED TOKEN
+#
+#
+#
name: publish
@@ -6,30 +32,45 @@ on:
repository_dispatch:
types: manual-publish
release:
- types: [ created ]
+ types: [ published ]
jobs:
publish:
-
runs-on: ubuntu-latest
+ permissions:
+ contents: read
+
steps:
- name: Checkout
uses: actions/checkout@v4
- - name: Set up JDK
+ - name: Set up JDK 21 for Maven Central
uses: actions/setup-java@v4
with:
- distribution: 'adopt'
+ distribution: 'temurin'
java-version: '21'
- cache: 'gradle'
+ cache: 'maven'
+
+ # Must match in
+ server-id: central
+
+ # These are Maven properties in settings.xml; values come from env below
+ server-username: MAVEN_CENTRAL_USERNAME
+ server-password: MAVEN_CENTRAL_PASSWORD
- - name: Publish to Maven Central (Portal)
- run: |
- chmod +x gradlew
- ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
+ # GPG setup (uses your in-memory private key)
+ gpg-private-key: ${{ secrets.SIGNING_KEY }}
+
+ # Name of env var that holds the passphrase (see pom passphraseEnvName)
+ gpg-passphrase: MAVEN_GPG_PASSPHRASE
+
+ - name: Publish to Maven Central
+ run: mvn -B -ntp clean deploy -P release -DskipTests -Dspotbugs.skip=true -Djacoco.skip=true
env:
- ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
- ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
- ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
- ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}
+ # Sonatype / Central credentials
+ MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
+ MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
+
+ # GPG passphrase (referenced by MAVEN_GPG_PASSPHRASE name)
+ MAVEN_GPG_PASSPHRASE: ${{ secrets.SIGNING_PASSWORD }}
diff --git a/.github/workflows/upload-algorithms.yml b/.github/workflows/upload-algorithms.yml
index 615dc4555..32851323b 100644
--- a/.github/workflows/upload-algorithms.yml
+++ b/.github/workflows/upload-algorithms.yml
@@ -3,38 +3,22 @@
name: upload-algorithms
on:
- repository_dispatch:
- types: manual-publish
release:
- types: [ created ]
+ types: [published]
jobs:
publish:
-
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- - name: Set up JDK
- uses: actions/setup-java@v4
- with:
- distribution: 'adopt'
- java-version: '21'
-
- - name: Create algorithm zips
- if: ${{startsWith(github.ref, 'refs/tags/v') }}
- run: |
- chmod +x gradlew
- ./gradlew zipAlgorithms
-
- name: Add algorithms to release
uses: softprops/action-gh-release@v1
- if: ${{startsWith(github.ref, 'refs/tags/v') }}
with:
files: |
- algorithm-cs/build/algorithms/*.zip
- algorithm-eod/build/algorithms/*.zip
- algorithm-tnm/build/algorithms/*.zip
- algorithm-pediatric/build/algorithms/*.zip
+ src/test/resources/algorithms/cs-*.zip
+ src/test/resources/algorithms/eod_public-*.zip
+ src/test/resources/algorithms/pediatric-*.zip
+ src/test/resources/algorithms/tnm-*.zip
diff --git a/.gitignore b/.gitignore
index a5eedeced..a5edded5c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,33 @@
-target
-build
-classes
-dist
-out
-/.idea
+HELP.md
+target/
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
*.iml
-.dbshell
-.gradle
\ No newline at end of file
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
+
diff --git a/.mvn/wrapper/MavenWrapperDownloader.java b/.mvn/wrapper/MavenWrapperDownloader.java
new file mode 100644
index 000000000..b901097f2
--- /dev/null
+++ b/.mvn/wrapper/MavenWrapperDownloader.java
@@ -0,0 +1,117 @@
+/*
+ * Copyright 2007-present the original author or authors.
+ *
+ * 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.
+ */
+import java.net.*;
+import java.io.*;
+import java.nio.channels.*;
+import java.util.Properties;
+
+public class MavenWrapperDownloader {
+
+ private static final String WRAPPER_VERSION = "0.5.6";
+ /**
+ * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
+ */
+ private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
+ + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
+
+ /**
+ * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
+ * use instead of the default one.
+ */
+ private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
+ ".mvn/wrapper/maven-wrapper.properties";
+
+ /**
+ * Path where the maven-wrapper.jar will be saved to.
+ */
+ private static final String MAVEN_WRAPPER_JAR_PATH =
+ ".mvn/wrapper/maven-wrapper.jar";
+
+ /**
+ * Name of the property which should be used to override the default download url for the wrapper.
+ */
+ private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
+
+ public static void main(String args[]) {
+ System.out.println("- Downloader started");
+ File baseDirectory = new File(args[0]);
+ System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
+
+ // If the maven-wrapper.properties exists, read it and check if it contains a custom
+ // wrapperUrl parameter.
+ File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
+ String url = DEFAULT_DOWNLOAD_URL;
+ if(mavenWrapperPropertyFile.exists()) {
+ FileInputStream mavenWrapperPropertyFileInputStream = null;
+ try {
+ mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
+ Properties mavenWrapperProperties = new Properties();
+ mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
+ url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
+ } catch (IOException e) {
+ System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
+ } finally {
+ try {
+ if(mavenWrapperPropertyFileInputStream != null) {
+ mavenWrapperPropertyFileInputStream.close();
+ }
+ } catch (IOException e) {
+ // Ignore ...
+ }
+ }
+ }
+ System.out.println("- Downloading from: " + url);
+
+ File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
+ if(!outputFile.getParentFile().exists()) {
+ if(!outputFile.getParentFile().mkdirs()) {
+ System.out.println(
+ "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
+ }
+ }
+ System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
+ try {
+ downloadFileFromURL(url, outputFile);
+ System.out.println("Done");
+ System.exit(0);
+ } catch (Throwable e) {
+ System.out.println("- Error downloading");
+ e.printStackTrace();
+ System.exit(1);
+ }
+ }
+
+ private static void downloadFileFromURL(String urlString, File destination) throws Exception {
+ if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
+ String username = System.getenv("MVNW_USERNAME");
+ char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
+ Authenticator.setDefault(new Authenticator() {
+ @Override
+ protected PasswordAuthentication getPasswordAuthentication() {
+ return new PasswordAuthentication(username, password);
+ }
+ });
+ }
+ URL website = new URL(urlString);
+ ReadableByteChannel rbc;
+ rbc = Channels.newChannel(website.openStream());
+ FileOutputStream fos = new FileOutputStream(destination);
+ fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
+ fos.close();
+ rbc.close();
+ }
+
+}
diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar
new file mode 100644
index 000000000..2cc7d4a55
Binary files /dev/null and b/.mvn/wrapper/maven-wrapper.jar differ
diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties
new file mode 100644
index 000000000..d853aaf31
--- /dev/null
+++ b/.mvn/wrapper/maven-wrapper.properties
@@ -0,0 +1,2 @@
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip
+wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
diff --git a/README.md b/README.md
index 845d51301..d5e79ee79 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ A cancer staging client library for Java applications.
### Pediatric Data Collection System (PDCS or Pediatric)
-Pediatric Data Collection System (Pediatric) is a set of three data items that describe how far a cancer has spread at the time of diagnosis for Pediatric cancers.
+Pediatric Data Collection System (Pediatric) is a set of three data items that describe how far a cancer has spread at the time of diagnosis for Pediatric cancers.
PDCS can be collected for cases diagnosed in 2018 and later.
In each Pediatric schema, valid values, definitions, and registrar notes are provided for
@@ -20,29 +20,21 @@ In each Pediatric schema, valid values, definitions, and registrar notes are pro
- Pediatric Mets
- Site-Specific Data Items (SSDIs)
-For cancer cases diagnosed January 1, 2024 and later, the NCI SEER program will collect the Pediatric Data Collection System fields. The schemas have been
+For cancer cases diagnosed January 1, 2024 and later, the NCI SEER program will collect the Pediatric Data Collection System fields. The schemas have been
developed to be compatible with the Toronto Staging v1.1 definitions.
-To get started using the Pediatric staging algorithm, instantiate a `Staging` instance:
-
-```java
-Staging staging=Staging.getInstance(PediatricDataProvider.getInstance(PediatricVersion.LATEST));
-```
-
-If a specific version is needed, the algorithm zip file can be downloaded and initialized using an `ExternalStagingFileDataProvider`.
-
-| Version | Release | Algorithm ZIP |
-|---------------|------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| 1.3 | [11.7.1](https://github.com/imsweb/staging-client-java/releases/tag/v11.7.1) | [pediatric-1.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.7.1/pediatric-1.3.zip) |
-| 1.3 (**BETA**) | [11.6.0](https://github.com/imsweb/staging-client-java/releases/tag/v11.6.0) | [pediatric-1.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.6.0/pediatric-1.3.zip) |
+| Version | Release | Algorithm ZIP |
+|-----------------|------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| 1.3 | [11.7.1](https://github.com/imsweb/staging-client-java/releases/tag/v11.7.1) | [pediatric-1.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.7.1/pediatric-1.3.zip) |
+| 1.3 (**BETA**) | [11.6.0](https://github.com/imsweb/staging-client-java/releases/tag/v11.6.0) | [pediatric-1.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.6.0/pediatric-1.3.zip) |
| 1.2 (*revised*) | [11.3.2](https://github.com/imsweb/staging-client-java/releases/tag/v11.3.2) | [pediatric-1.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.3.2/pediatric-1.2.zip) |
-| 1.2 | [11.2.5](https://github.com/imsweb/staging-client-java/releases/tag/v11.2.5) | [pediatric-1.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.2.5/pediatric-1.2.zip) |
-| 1.1 | [11.2.2](https://github.com/imsweb/staging-client-java/releases/tag/v11.2.2) | [pediatric-1.1.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.2.2/pediatric-1.1.zip) |
-| 1.0 | [11.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v11.0.0) | [pediatric-1.0.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.0.0/pediatric-1.0.zip) |
-| 0.5 | [10.2.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.2.0) | [toronto-0.5.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.2.0/toronto-0.5.zip) |
-| 0.4 | [10.1.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.1.0) | [toronto-0.4.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.1.0/toronto-0.4.zip) |
-| 0.3 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [toronto-0.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/toronto-0.3.zip) |
-| 0.2 | [9.1](https://github.com/imsweb/staging-client-java/releases/tag/v9.1) | [toronto-0.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v9.1/toronto-0.2.zip) |
+| 1.2 | [11.2.5](https://github.com/imsweb/staging-client-java/releases/tag/v11.2.5) | [pediatric-1.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.2.5/pediatric-1.2.zip) |
+| 1.1 | [11.2.2](https://github.com/imsweb/staging-client-java/releases/tag/v11.2.2) | [pediatric-1.1.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.2.2/pediatric-1.1.zip) |
+| 1.0 | [11.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v11.0.0) | [pediatric-1.0.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.0.0/pediatric-1.0.zip) |
+| 0.5 | [10.2.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.2.0) | [toronto-0.5.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.2.0/toronto-0.5.zip) |
+| 0.4 | [10.1.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.1.0) | [toronto-0.4.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.1.0/toronto-0.4.zip) |
+| 0.3 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [toronto-0.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/toronto-0.3.zip) |
+| 0.2 | [9.1](https://github.com/imsweb/staging-client-java/releases/tag/v9.1) | [toronto-0.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v9.1/toronto-0.2.zip) |
### EOD
@@ -63,22 +55,14 @@ been developed to be compatible with the AJCC 8th Edition chapter definitions.
All the standard setting organizations will collect the predictive and prognostic factors through Site Specific Data Items (SSDIs). Unlike the SSFs, these data items have
formats and code structures specific to the data item.
-To get started using the EOD algorithm, instantiate a `Staging` instance:
-
-```java
-Staging staging=Staging.getInstance(EodDataProvider.getInstance(EodVersion.LATEST));
-```
-
-If a specific version is needed, the algorithm zip file can be downloaded and initialized using an `ExternalStagingFileDataProvider`.
-
-| Version | Release | Algorithm ZIP |
-|---------|------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
-| 3.3 | [11.7.1](https://github.com/imsweb/staging-client-java/releases/tag/v11.7.1) | [eod_public-3.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.7.1/eod_public-3.3.zip) |
+| Version | Release | Algorithm ZIP |
+|----------------|------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
+| 3.3 | [11.7.1](https://github.com/imsweb/staging-client-java/releases/tag/v11.7.1) | [eod_public-3.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.7.1/eod_public-3.3.zip) |
| 3.3 (**BETA**) | [11.6.0](https://github.com/imsweb/staging-client-java/releases/tag/v11.6.0) | [eod_public-3.3.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.6.0/eod_public-3.3.zip) |
-| 3.2 | [11.4.1](https://github.com/imsweb/staging-client-java/releases/tag/v11.4.1) | [eod_public-3.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.3.1/eod_public-3.2.zip) |
-| 3.1 | [10.3.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.3.0) | [eod_public-3.1.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.3.0/eod_public-3.1.zip) |
-| 3.0 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [eod_public-3.0.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/eod_public-3.0.zip) |
-| 2.1 | [8.0](https://github.com/imsweb/staging-client-java/releases/tag/v8.0) | [eod_public-2.1.zip](https://github.com/imsweb/staging-client-java/releases/download/v8.0/eod_public-2.1.zip) |
+| 3.2 | [11.4.1](https://github.com/imsweb/staging-client-java/releases/tag/v11.4.1) | [eod_public-3.2.zip](https://github.com/imsweb/staging-client-java/releases/download/v11.3.1/eod_public-3.2.zip) |
+| 3.1 | [10.3.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.3.0) | [eod_public-3.1.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.3.0/eod_public-3.1.zip) |
+| 3.0 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [eod_public-3.0.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/eod_public-3.0.zip) |
+| 2.1 | [8.0](https://github.com/imsweb/staging-client-java/releases/tag/v8.0) | [eod_public-2.1.zip](https://github.com/imsweb/staging-client-java/releases/download/v8.0/eod_public-2.1.zip) |
### TNM
@@ -96,14 +80,6 @@ classification. UICC 7th edition and AJCC 7th edition TNM categories and stage g
For diagnosis years 2016-2017, SEER Summary Stage 2000 is required. SEER Summary Stage 2000 should be collected manually unless the registry is collecting
Collaborative Stage, which would derive Summary Stage 2000.
-To get started using the TNM algorithm, instantiate a `Staging` instance:
-
-```java
-Staging staging=Staging.getInstance(TnmDataProvider.getInstance(TnmVersion.LATEST));
-```
-
-If a specific version is needed, the algorithm zip file can be downloaded and initialized using an `ExternalStagingFileDataProvider`.
-
| Version | Release | Algorithm ZIP |
|---------|------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
| 2.0 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [tnm-2.0.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/tnm-2.0.zip) |
@@ -115,12 +91,6 @@ Collaborative Stage is a unified data collection system designed to provide a co
provides a comprehensive system to improve data quality by standardizing rules for timing, clinical and pathologic assessments, and compatibility across all the systems for
all cancer sites.
-To get started using the CS algorithm, instantiate a `Staging` instance:
-
-```java
-Staging staging=Staging.getInstance(CsDataProvider.getInstance(CsVersion.LATEST));
-```
-
| Version | Release | Algorithm ZIP |
|----------|------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------|
| 02.05.50 | [10.0.0](https://github.com/imsweb/staging-client-java/releases/tag/v10.0.0) | [cs-02.05.50.zip](https://github.com/imsweb/staging-client-java/releases/download/v10.0.0/cs-02.05.50.zip) |
@@ -129,7 +99,7 @@ Staging staging=Staging.getInstance(CsDataProvider.getInstance(CsVersion.LATEST)
Java 8 is the minimum version required to use the library.
-If you are interested in just the library without any bundled algorithm, it can be included with the following.
+It can be included with the following.
Maven
@@ -148,41 +118,8 @@ Gradle
compile 'com.imsweb:staging-client-java:x.x.x'
```
-If you are interested in a specific algorithm, you can include them using their specific artifact.
-
-Maven
-
-```xml
-
- com.imsweb
- staging-client-java-cs
- x.x.x
-
-
- com.imsweb
- staging-client-java-eod-public
- x.x.x
-
-
- com.imsweb
- staging-client-java-tnm
- x.x.x
-
-
- com.imsweb
- staging-client-java-pediatric
- x.x.x
-
-```
-
-Gradle
-
-```groovy
-implementation 'com.imsweb:staging-client-java-cs:x.x.x'
-implementation 'com.imsweb:staging-client-java-eod-public:x.x.x'
-implementation 'com.imsweb:staging-client-java-tnm:x.x.x'
-implementation 'com.imsweb:staging-client-java-pediatric:x.x.x'
-```
+Note that the library does NOT include the algorithms. They must be downloaded separately. The versions are linked above or
+can be found in each release.
## Usage
@@ -190,25 +127,12 @@ More detailed documentation can be found in the [Wiki](https://github.com/imsweb
### Get a `Staging` instance
-Everything starts with getting an instance of the `Staging` object. There are `DataProvider` objects for each staging algorithm and version. The `Staging`
-object is thread safe and cached so subsequent calls to `Staging.getInstance()` will return the same object.
-
-For example, for the Collaborative Staging algorithm, the call will look like this:
+Everything starts with getting an instance of the `Staging` object. You will need an algorithm zip file to load. All avaiable algorithm and version
+download links are listed at the top of this file. Creating a staging instance involves loading all the information from the algorithms and is
+expensive. The staging instance should be maintained once loaded.
```java
-Staging staging = Staging.getInstance(CsDataProvider.getInstance(CsVersion.LATEST));
-```
-
-There could be times when you want to load either a private algorithm or even an older version of an existing algorithm. You can get the algorithm
-zip file from the release page and load it using `ExternalStagingFileDataProvider`.
-
-```java
-Path path = Paths.get("C:/path/to/algorithm", "tnm-1.9.zip");
-try(InputStream is = Files.newInputStream(path)) {
- Staging staging = Staging.getInstance(new ExternalStagingFileDataProvider(is));
-
- // use staging instance
-}
+Staging staging = Staging.getInstance(Paths.get("C:/path/to/algorithm/cs.02.05.50.zip"));
```
### Schemas
@@ -278,9 +202,13 @@ customized for the specific inputs needed to lookup a schema.
For Collaborative Staging, use the `CsSchemaLookup` object (each algorithm has their own lookup class). Here is a lookup based on site and histology.
```java
-List lookup = staging.lookupSchema(new CsSchemaLookup("C629","9231"));
-assertEquals(1, lookup.size());
-assertEquals("testis", lookup.get(0).getId());
+List lookup = staging.lookupSchema(new CsSchemaLookup("C629", "9231"));
+
+assertEquals(1,lookup.size());
+
+assertEquals("testis",lookup.get(0).
+
+getId());
```
If the call returns a single result, then it was successful. If it returns more than one result, then it needs a discriminator. Information about the required discriminator
@@ -289,16 +217,32 @@ sets of discriminators that can be determined based on the result.
```java
// do not supply a discriminator
-List lookup = staging.lookupSchema(new CsSchemaLookup("C111","8200"));
+List lookup = staging.lookupSchema(new CsSchemaLookup("C111", "8200"));
+
assertEquals(2,lookup.size());
-for(Schema schema : lookup)
- assertTrue(schema.getSchemaDiscriminators().contains(CsStagingData.SSF25_KEY));
+ for(
+Schema schema :lookup)
+
+assertTrue(schema.getSchemaDiscriminators().
+
+contains(CsStagingData.SSF25_KEY));
// supply a discriminator
-lookup = staging.lookupSchema(new CsSchemaLookup("C111","8200","010"));
-assertEquals(1, lookup.size());
-assertEquals("nasopharynx", lookup.get(0).getId());
-assertEquals(Integer.valueOf(34), lookup.get(0).getSchemaNum());
+lookup =staging.
+
+lookupSchema(new CsSchemaLookup("C111","8200","010"));
+
+assertEquals(1,lookup.size());
+
+assertEquals("nasopharynx",lookup.get(0).
+
+getId());
+
+assertEquals(Integer.valueOf(34),lookup.
+
+get(0).
+
+getSchemaNum());
```
### Calculate stage
@@ -319,80 +263,161 @@ include the ones that are used in the schema being staged.
```java
CsStagingData data = new CsStagingData();
-data.setInput(CsInput.PRIMARY_SITE,"C680");
-data.setInput(CsInput.HISTOLOGY,"8000");
-data.setInput(CsInput.BEHAVIOR,"3");
-data.setInput(CsInput.GRADE,"9");
-data.setInput(CsInput.DX_YEAR,"2013");
-data.setInput(CsInput.CS_VERSION_ORIGINAL,"020550");
-data.setInput(CsInput.TUMOR_SIZE,"075");
-data.setInput(CsInput.EXTENSION,"100");
-data.setInput(CsInput.EXTENSION_EVAL,"9");
-data.setInput(CsInput.LYMPH_NODES,"100");
-data.setInput(CsInput.LYMPH_NODES_EVAL,"9");
-data.setInput(CsInput.REGIONAL_NODES_POSITIVE,"99");
-data.setInput(CsInput.REGIONAL_NODES_EXAMINED,"99");
-data.setInput(CsInput.METS_AT_DX,"10");
-data.setInput(CsInput.METS_EVAL,"9");
-data.setInput(CsInput.LVI,"9");
-data.setInput(CsInput.AGE_AT_DX,"060");
-data.setSsf(1, "020");
+data.
+
+setInput(CsInput.PRIMARY_SITE,"C680");
+data.
+
+setInput(CsInput.HISTOLOGY,"8000");
+data.
+
+setInput(CsInput.BEHAVIOR,"3");
+data.
+
+setInput(CsInput.GRADE,"9");
+data.
+
+setInput(CsInput.DX_YEAR,"2013");
+data.
+
+setInput(CsInput.CS_VERSION_ORIGINAL,"020550");
+data.
+
+setInput(CsInput.TUMOR_SIZE,"075");
+data.
+
+setInput(CsInput.EXTENSION,"100");
+data.
+
+setInput(CsInput.EXTENSION_EVAL,"9");
+data.
+
+setInput(CsInput.LYMPH_NODES,"100");
+data.
+
+setInput(CsInput.LYMPH_NODES_EVAL,"9");
+data.
+
+setInput(CsInput.REGIONAL_NODES_POSITIVE,"99");
+data.
+
+setInput(CsInput.REGIONAL_NODES_EXAMINED,"99");
+data.
+
+setInput(CsInput.METS_AT_DX,"10");
+data.
+
+setInput(CsInput.METS_EVAL,"9");
+data.
+
+setInput(CsInput.LVI,"9");
+data.
+
+setInput(CsInput.AGE_AT_DX,"060");
+data.
+
+setSsf(1,"020");
// perform the staging
-staging.stage(data);
+staging.
+
+stage(data);
assertEquals(Result.STAGED, data.getResult());
-assertEquals("urethra", data.getSchemaId());
-assertEquals(0, data.getErrors().size());
-assertEquals(37, data.getPath().size());
+
+assertEquals("urethra",data.getSchemaId());
+
+assertEquals(0,data.getErrors().
+
+size());
+
+assertEquals(37,data.getPath().
+
+size());
// check output
-assertEquals("129", data.getOutput(CsOutput.SCHEMA_NUMBER));
-assertEquals("020550", data.getOutput(CsOutput.CSVER_DERIVED));
+assertEquals("129",data.getOutput(CsOutput.SCHEMA_NUMBER));
+
+assertEquals("020550",data.getOutput(CsOutput.CSVER_DERIVED));
// AJCC 6
-assertEquals("T1", data.getOutput(CsOutput.AJCC6_T));
-assertEquals("c", data.getOutput(CsOutput.AJCC6_TDESCRIPTOR));
-assertEquals("N1", data.getOutput(CsOutput.AJCC6_N));
-assertEquals("c", data.getOutput(CsOutput.AJCC6_NDESCRIPTOR));
-assertEquals("M1", data.getOutput(CsOutput.AJCC6_M));
-assertEquals("c", data.getOutput(CsOutput.AJCC6_MDESCRIPTOR));
-assertEquals("IV", data.getOutput(CsOutput.AJCC6_STAGE));
-assertEquals("10", data.getOutput(CsOutput.STOR_AJCC6_T));
-assertEquals("c", data.getOutput(CsOutput.STOR_AJCC6_TDESCRIPTOR));
-assertEquals("10", data.getOutput(CsOutput.STOR_AJCC6_N));
-assertEquals("c", data.getOutput(CsOutput.STOR_AJCC6_NDESCRIPTOR));
-assertEquals("10", data.getOutput(CsOutput.STOR_AJCC6_M));
-assertEquals("c", data.getOutput(CsOutput.STOR_AJCC6_MDESCRIPTOR));
-assertEquals("70", data.getOutput(CsOutput.STOR_AJCC6_STAGE));
+assertEquals("T1",data.getOutput(CsOutput.AJCC6_T));
+
+assertEquals("c",data.getOutput(CsOutput.AJCC6_TDESCRIPTOR));
+
+assertEquals("N1",data.getOutput(CsOutput.AJCC6_N));
+
+assertEquals("c",data.getOutput(CsOutput.AJCC6_NDESCRIPTOR));
+
+assertEquals("M1",data.getOutput(CsOutput.AJCC6_M));
+
+assertEquals("c",data.getOutput(CsOutput.AJCC6_MDESCRIPTOR));
+
+assertEquals("IV",data.getOutput(CsOutput.AJCC6_STAGE));
+
+assertEquals("10",data.getOutput(CsOutput.STOR_AJCC6_T));
+
+assertEquals("c",data.getOutput(CsOutput.STOR_AJCC6_TDESCRIPTOR));
+
+assertEquals("10",data.getOutput(CsOutput.STOR_AJCC6_N));
+
+assertEquals("c",data.getOutput(CsOutput.STOR_AJCC6_NDESCRIPTOR));
+
+assertEquals("10",data.getOutput(CsOutput.STOR_AJCC6_M));
+
+assertEquals("c",data.getOutput(CsOutput.STOR_AJCC6_MDESCRIPTOR));
+
+assertEquals("70",data.getOutput(CsOutput.STOR_AJCC6_STAGE));
// AJCC 7
-assertEquals("T1", data.getOutput(CsOutput.AJCC7_T));
-assertEquals("c", data.getOutput(CsOutput.AJCC7_TDESCRIPTOR));
-assertEquals("N1", data.getOutput(CsOutput.AJCC7_N));
-assertEquals("c", data.getOutput(CsOutput.AJCC7_NDESCRIPTOR));
-assertEquals("M1", data.getOutput(CsOutput.AJCC7_M));
-assertEquals("c", data.getOutput(CsOutput.AJCC7_MDESCRIPTOR));
-assertEquals("IV", data.getOutput(CsOutput.AJCC7_STAGE));
-assertEquals("100", data.getOutput(CsOutput.STOR_AJCC7_T));
-assertEquals("c", data.getOutput(CsOutput.STOR_AJCC6_TDESCRIPTOR));
-assertEquals("100", data.getOutput(CsOutput.STOR_AJCC7_N));
-assertEquals("c", data.getOutput(CsOutput.STOR_AJCC7_NDESCRIPTOR));
-assertEquals("100", data.getOutput(CsOutput.STOR_AJCC7_M));
-assertEquals("c", data.getOutput(CsOutput.STOR_AJCC7_MDESCRIPTOR));
-assertEquals("700", data.getOutput(CsOutput.STOR_AJCC7_STAGE));
+assertEquals("T1",data.getOutput(CsOutput.AJCC7_T));
+
+assertEquals("c",data.getOutput(CsOutput.AJCC7_TDESCRIPTOR));
+
+assertEquals("N1",data.getOutput(CsOutput.AJCC7_N));
+
+assertEquals("c",data.getOutput(CsOutput.AJCC7_NDESCRIPTOR));
+
+assertEquals("M1",data.getOutput(CsOutput.AJCC7_M));
+
+assertEquals("c",data.getOutput(CsOutput.AJCC7_MDESCRIPTOR));
+
+assertEquals("IV",data.getOutput(CsOutput.AJCC7_STAGE));
+
+assertEquals("100",data.getOutput(CsOutput.STOR_AJCC7_T));
+
+assertEquals("c",data.getOutput(CsOutput.STOR_AJCC6_TDESCRIPTOR));
+
+assertEquals("100",data.getOutput(CsOutput.STOR_AJCC7_N));
+
+assertEquals("c",data.getOutput(CsOutput.STOR_AJCC7_NDESCRIPTOR));
+
+assertEquals("100",data.getOutput(CsOutput.STOR_AJCC7_M));
+
+assertEquals("c",data.getOutput(CsOutput.STOR_AJCC7_MDESCRIPTOR));
+
+assertEquals("700",data.getOutput(CsOutput.STOR_AJCC7_STAGE));
// Summary Stage
-assertEquals("L", data.getOutput(CsOutput.SS1977_T));
-assertEquals("RN" ,data.getOutput(CsOutput.SS1977_N));
-assertEquals("D", data.getOutput(CsOutput.SS1977_M));
-assertEquals("D", data.getOutput(CsOutput.SS1977_STAGE));
-assertEquals("L", data.getOutput(CsOutput.SS2000_T));
-assertEquals("RN" ,data.getOutput(CsOutput.SS2000_N));
-assertEquals("D", data.getOutput(CsOutput.SS2000_M));
-assertEquals("D", data.getOutput(CsOutput.SS2000_STAGE));
-assertEquals("7", data.getOutput(CsOutput.STOR_SS1977_STAGE));
-assertEquals("7", data.getOutput(CsOutput.STOR_SS2000_STAGE));
+assertEquals("L",data.getOutput(CsOutput.SS1977_T));
+
+assertEquals("RN",data.getOutput(CsOutput.SS1977_N));
+
+assertEquals("D",data.getOutput(CsOutput.SS1977_M));
+
+assertEquals("D",data.getOutput(CsOutput.SS1977_STAGE));
+
+assertEquals("L",data.getOutput(CsOutput.SS2000_T));
+
+assertEquals("RN",data.getOutput(CsOutput.SS2000_N));
+
+assertEquals("D",data.getOutput(CsOutput.SS2000_M));
+
+assertEquals("D",data.getOutput(CsOutput.SS2000_STAGE));
+
+assertEquals("7",data.getOutput(CsOutput.STOR_SS1977_STAGE));
+
+assertEquals("7",data.getOutput(CsOutput.STOR_SS2000_STAGE));
```
## About SEER
diff --git a/algorithm-cs/build.gradle b/algorithm-cs/build.gradle
deleted file mode 100644
index b0e44bc1f..000000000
--- a/algorithm-cs/build.gradle
+++ /dev/null
@@ -1,11 +0,0 @@
-dependencies {
- implementation project(':staging-client-java')
-
- testImplementation(testFixtures(project(':staging-client-java')))
-}
-
-// run the full CS integration test suite
-task csIntegrationTest(type: JavaExec) {
- mainClass.set('com.imsweb.staging.cs.CsIntegrationTest')
- classpath = sourceSets.test.runtimeClasspath
-}
diff --git a/algorithm-cs/src/main/java/com/imsweb/staging/cs/CsDataProvider.java b/algorithm-cs/src/main/java/com/imsweb/staging/cs/CsDataProvider.java
deleted file mode 100644
index a4a51cce9..000000000
--- a/algorithm-cs/src/main/java/com/imsweb/staging/cs/CsDataProvider.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2014 Information Management Services, Inc.
- */
-package com.imsweb.staging.cs;
-
-import java.util.Map;
-import java.util.concurrent.ConcurrentHashMap;
-
-import com.imsweb.staging.StagingFileDataProvider;
-
-public final class CsDataProvider extends StagingFileDataProvider {
-
- private static final Map _PROVIDERS = new ConcurrentHashMap<>();
-
- public enum CsVersion {
- LATEST("02.05.50"),
- V020550("02.05.50");
-
- private final String _version;
-
- CsVersion(String version) {
- _version = version;
- }
-
- public String getVersion() {
- return _version;
- }
- }
-
- /**
- * Construct a CS data provider with the passed version
- * @param version version to initialize
- */
- private CsDataProvider(CsVersion version) {
- super("cs", version.getVersion());
- }
-
- /**
- * Return the CS provider for the latest version
- * @return the data provider
- */
- public static synchronized CsDataProvider getInstance() {
- return getInstance(CsVersion.LATEST);
- }
-
- /**
- * Return the CS provider for a specified version
- * @param version CS version
- * @return the data provider
- */
- public static synchronized CsDataProvider getInstance(CsVersion version) {
- return _PROVIDERS.computeIfAbsent(version, k -> new CsDataProvider(version));
- }
-}
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/adnexa_uterine_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/adnexa_uterine_other.json
deleted file mode 100644
index 92395d701..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/adnexa_uterine_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "adnexa_uterine_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AdnexaUterineOther",
- "title" : "Broad and Round Ligaments, Parametrium, Uterine Adnexa",
- "notes" : "C57.1 - Broad ligament\nC57.2 - Round ligament\nC57.3 - Parametrium\nC57.4 - Uterine adnexa\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 116,
- "schema_selection_table" : "schema_selection_adnexa_uterine_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcn",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "116"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcn",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcc",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "schema_selection_adnexa_uterine_other", "cs_input_version_original", "mets_hpa", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "nodes_dcc", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "extension_bcn", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:09.076Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/adrenal_gland.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/adrenal_gland.json
deleted file mode 100644
index e8518ae8c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/adrenal_gland.json
+++ /dev/null
@@ -1,1156 +0,0 @@
-{
- "id" : "adrenal_gland",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AdrenalGland",
- "title" : "Adrenal Gland",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3\n\nC74.0 - Cortex of adrenal gland\nC74.1 - Medulla of adrenal gland\nC74.9 - Adrenal gland, NOS\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: Except for histologies that have strictly histology-based CS schemas (for example lymphoma), all cases with primary site adrenal gland (C74._) are coded with this schema. However, only adrenal cortical carcinomas will have AJCC stage derived (7th Edition only). Adrenal cortical carcinoma is identified as C74.0 (adrenal cortex) with histology 8010, 8140, or 8370 OR C74.9 (adrenal gland, NOS) with histology 8370.",
- "schema_num" : 147,
- "schema_selection_table" : "schema_selection_adrenal_gland",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aak",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdp",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_caj",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddk",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eah",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbv",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_iac",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - WHO Grade Classification",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jba",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Tumor Weight",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kak",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Vascular Invasion",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_laf",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "147"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdp",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_caj",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_caj",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddk",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eah",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eah",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbv",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_iac",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_iac",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqc",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uba",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqc",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf25_snt", "nodes_ddk", "ajcc7_inclusions_tqc", "ssf2_kak", "size_aak", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ssf3_laf", "ajcc_tdescriptor_cleanup", "ssf4_mna", "schema_selection_adrenal_gland", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "mets_eval_iac", "grade", "summary_stage_rpa", "ajcc7_m_codes", "extension_eval_caj", "mets_hbv", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "extension_size_xde", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "nodes_eval_eah", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "ssf1_jba", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "extension_bdp", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ajcc7_stage_uba", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:09.268Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ampulla_vater.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ampulla_vater.json
deleted file mode 100644
index 524b7d594..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ampulla_vater.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "ampulla_vater",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AmpullaVater",
- "title" : "Ampulla of Vater (excluding Neuroendocrine Tumor)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1, SSF2, SSF3\n\nC24.1 - Ampulla of Vater",
- "schema_num" : 66,
- "schema_selection_table" : "schema_selection_ampulla_vater",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bde",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbo",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_har",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpe",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpc",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpc",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "66"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bde",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbo",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_har",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uaa",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpp",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppe", "ssf25_snt", "ssf1_jpe", "ssf15_snj", "ajcc7_t_codes", "ssf3_lpc", "ssf23_snr", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc7_stage_uaa", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_inclusions_tpe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpc", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "extension_bde", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "mets_har", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ajcc6_stage_qpp", "schema_selection_ampulla_vater", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dbo", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:09.467Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/anus.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/anus.json
deleted file mode 100644
index deaade753..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/anus.json
+++ /dev/null
@@ -1,1209 +0,0 @@
-{
- "id" : "anus",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Anus",
- "title" : "Anus, Anal Canal, and Other Parts of Rectum",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1\n\nC21.0 - Anus, NOS (excluding skin of anus and perianal skin C44.5)\nC21.1 - Anal canal\nC21.2 - Cloacogenic zone\nC21.8 - Overlapping lesion of rectum, anus and anal canal\n\n**Note**: Skin of anus is coded separately (C44.5).",
- "schema_num" : 59,
- "schema_selection_table" : "schema_selection_anus",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apf",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_baa",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dab",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jce",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "59"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_baa",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dab",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uab",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbj",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ajcc7_stage_uab", "cs_input_version_original", "mets_hpc", "ssf22_snq", "lvi", "ssf14_sni", "extension_size_xaa", "ajcc_tdescriptor_cleanup", "nodes_dab", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "extension_baa", "ajcc7_inclusions_tpe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ajcc6_stage_qbj", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "size_apf", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "schema_selection_anus", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ssf1_jce", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:09.667Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/appendix.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/appendix.json
deleted file mode 100644
index 25d5f9ccf..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/appendix.json
+++ /dev/null
@@ -1,1210 +0,0 @@
-{
- "id" : "appendix",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Appendix",
- "title" : "Carcinomas of the Appendix (excluding Carcinoid Tumor and Neuroendocrine Carcinoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF4, SSF7, SSF10, SSF12\n\nM-8000-8152,8154-8231,8243-8245,8247,8248,8250-8934,8940-9136,9141-9582,9700-9701\nC18.1 - Appendix\n\n**Note**: Carcinoid tumor and neuroendocrine carcinoma (histology codes 8153, 8240-8242, 8246, 8249) of the appendix are included in the \"CarcinoidAppendix\" schema.",
- "schema_num" : 50,
- "schema_selection_table" : "schema_selection_appendix",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aam",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfg",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcf",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipb",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kaq",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpe",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf4",
- "name" : "Tumor Deposits",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpb",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "Microsatellite Instability (MSI)",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spf",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "18q Loss of Heterozygosity (LOH)",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spi",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Histopathologic Grading",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_sbt",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf12",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sbu",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "50"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfg",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfc",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "cs_input_version_original", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcf",
- "inputs" : [ "extension", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "grade_category_calculation_xei",
- "inputs" : [ "ssf11" ],
- "outputs" : [ "grade_category" ]
- }, {
- "id" : "ajcc7_stage_uar",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "grade_category", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpf",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "ssf2_kaq", "ajcc7_stage_uar", "ssf25_snt", "mets_hcf", "ssf7_spf", "ssf1_jpf", "ssf15_snj", "size_aam", "ajcc7_t_codes", "extension_bfg", "ssf23_snr", "ssf3_lpe", "histology", "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg", "determine_correct_table_for_ajcc6_n_ns1", "cs_input_version_original", "ssf22_snq", "ssf10_spi", "lvi", "extension_mets_ajcc6_xeh", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "lymph_nodes_clinical_evaluation_ajcc6_xbk", "ajcc7_inclusions_tpc", "grade", "summary_stage_rpa", "ajcc7_m_codes", "lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "determine_correct_table_for_ajcc7_n_ns2", "ssf12_sbu", "nodes_dfc", "ajcc6_t_codes", "nodes_pos_fpb", "ajcc_mdescriptor_cleanup", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipb", "ssf18_snm", "ajcc6_stage_qpf", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpb", "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xee", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "schema_selection_appendix", "ssf11_sbt", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "grade_category_calculation_xei", "cs_year_validation", "ssf24_sns", "lymph_nodes_clinical_eval_v0205_ajcc7_xcd", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:09.848Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_distal.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_distal.json
deleted file mode 100644
index ead119a2d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_distal.json
+++ /dev/null
@@ -1,1216 +0,0 @@
-{
- "id" : "bile_ducts_distal",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "BileDuctsDistal",
- "title" : "Distal Bile Duct",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF12 SSF13, SSF14\n\nC24.0 - Extrahepatic bile duct\n\n**Note**: Extrahepatic Bile Duct was a single chapter in the AJCC 6th Edition. It has been divided into two chapters in the AJCC 7th Edition: Perihilar Bile Ducts and Distal Bile Duct.",
- "schema_num" : 65,
- "schema_selection_table" : "schema_selection_bile_ducts_distal",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfs",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfn",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcq",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sqf",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sqg",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sqh",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: BileDuctsDistal/BileDuctsPerihilar/CysticDuct",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "999",
- "table" : "ssf25_sqi",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "65"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfs",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfn",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcq",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqi",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_ubm",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqi",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpv",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "mets_hcq", "ssf13_sqg", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ajcc6_stage_qpv", "histology", "cs_input_version_original", "ssf12_sqf", "extension_bfs", "ssf22_snq", "lvi", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_inclusions_tpe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_dfn", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "lymph_nodes_metsat_dxajcc6_xjc", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf25_sqi", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "schema_selection_bile_ducts_distal", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "primary_site", "ajcc6_year_validation", "ajcc7_stage_ubm", "ssf14_sqh", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:09.977Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_intrahepat.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_intrahepat.json
deleted file mode 100644
index 3dcefd2e9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_intrahepat.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "bile_ducts_intrahepat",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "BileDuctsIntraHepat",
- "title" : "Intrahepatic Bile Ducts",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF3, SSF12\n\nC22.0 - Liver\nC22.1 - Intrahepatic bile duct\n\n**Note 1**: For C22.0, the BileDuctsIntraHepat schema includes only M-8160, 8161, 8180. For other histologies, see the Liver schema.\n\n**Note 2**: For C22.1, the BileDuctsIntraHepat schema only includes M-8000-8162, 8180-9136, 9141-9582, and 9700-9701. For hepatocellular carcinoma, M-8170-8175, see the Liver schema.\n\n**Note 3**: AJCC TNM 7 staging will be derived for cases with primary site code of C22.1 and histology code of 8160, 8161, and 8180 only.\n\n**Note 4**: Staging for intrahepatic bile ducts was included in the Liver chapter in the AJCC 6th Edition. Intrahepatic Bile Ducts is a separate chapter in the AJCC 7th Edition.",
- "schema_num" : 61,
- "schema_selection_table" : "schema_selection_bile_ducts_intrahepat",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apt",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfa",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dew",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbz",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Alpha Fetoprotein (AFP) Interpretation",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Fibrosis Score",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf3",
- "name" : "Alpha Fetoprotein (AFP) Lab Value",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lps",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "Tumor Growth Pattern",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_sfj",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf11",
- "name" : "Primary Sclerosing Cholangitis (PSC)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sqe",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf12",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sqf",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "61"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfa",
- "inputs" : [ "extension", "size", "ssf10" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpc",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpc",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dew",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbz",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpt",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubi",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpt",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qcd",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf3_lps", "ajcc7_inclusions_tpt", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "ssf12_sqf", "ssf1_jpw", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "extension_periductal_invasion_ajcc7_xks", "ssf17_snl", "ajcc_descriptor_codes", "extension_bfa", "mets_hbz", "ssf11_sqe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "schema_selection_bile_ducts_intrahepat", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "extension_size_ajcc6_xda", "lymph_nodes_metsat_dxajcc6_xgq_m", "ajcc6_t_codes", "ajcc6_stage_qcd", "lymph_nodes_metsat_dxajcc6_xgq_n", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ss_codes", "ssf10_sfj", "ssf6_ona", "nodes_exam_gpa", "ssf2_kpq", "ajcc6_n_codes", "behavior", "nodes_dew", "ssf18_snm", "mets_eval_ipa", "ajcc7_n_codes", "extension_eval_cpc", "ajcc6_stage_codes", "size_apt", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc7_stage_ubi", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:10.139Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_perihilar.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_perihilar.json
deleted file mode 100644
index f4b26fd54..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bile_ducts_perihilar.json
+++ /dev/null
@@ -1,1215 +0,0 @@
-{
- "id" : "bile_ducts_perihilar",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "BileDuctsPerihilar",
- "title" : "Perihilar Bile Ducts",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF10, SSF12, SSF13, SSF14\n\nC24.0 - Extrahepatic bile duct\n\n**Note**: Extrahepatic Bile Duct was a single chapter in the AJCC 6th Edition. It has been divided into two chapters in the AJCC 7th Edition: Perihilar Bile Ducts and Distal Bile Duct.",
- "schema_num" : 63,
- "schema_selection_table" : "schema_selection_bile_ducts_perihilar",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bft",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfo",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcr",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "Tumor Growth Pattern",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sfi",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Primary Sclerosing Cholangitis (PSC)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sqe",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf12",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sqf",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sqg",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sqh",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: BileDuctsDistal/BileDuctsPerihilar/CysticDuct",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "999",
- "table" : "ssf25_sqi",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "63"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bft",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfo",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcr",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqi",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_ubn",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqi",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpv",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bft", "ssf2_kna", "ajcc6_exclusions_ppd", "mets_hcr", "ssf13_sqg", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ajcc6_stage_qpv", "schema_selection_bile_ducts_perihilar", "histology", "cs_input_version_original", "ssf12_sqf", "ssf22_snq", "lvi", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf11_sqe", "ajcc7_inclusions_tpe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "nodes_dfo", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "ssf10_sfi", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "lymph_nodes_metsat_dxajcc6_xfo", "ssf25_sqi", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "primary_site", "ajcc6_year_validation", "ssf14_sqh", "ajcc7_stage_ubn", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:10.262Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/biliary_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/biliary_other.json
deleted file mode 100644
index 6c5311ef2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/biliary_other.json
+++ /dev/null
@@ -1,1171 +0,0 @@
-{
- "id" : "biliary_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "BiliaryOther",
- "title" : "Other Biliary and Biliary, NOS",
- "notes" : "C24.8 - Overlapping lesion of biliary tract (neoplasms involving both intrahepatic and extrahepatic bile ducts)\nC24.9 - Biliary tract, NOS\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 68,
- "schema_selection_table" : "schema_selection_biliary_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcx",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcl",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbj",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "68"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcx",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcl",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbj",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "mets_hbj", "ajcc_tdescriptor_cleanup", "schema_selection_biliary_other", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ajcc6_stage_qbk", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_bcx", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "nodes_dcl", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:10.380Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bladder.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bladder.json
deleted file mode 100644
index fead76c28..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bladder.json
+++ /dev/null
@@ -1,1214 +0,0 @@
-{
- "id" : "bladder",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Bladder",
- "title" : "Bladder",
- "notes" : "C67.0 - Trigone of bladder\nC67.1 - Dome of bladder\nC67.2 - Lateral wall of bladder\nC67.3 - Anterior wall of bladder\nC67.4 - Posterior wall of bladder\nC67.5 - Bladder neck\nC67.6 - Ureteric orifice\nC67.7 - Urachus\nC67.8 - Overlapping lesion of bladder\nC67.9 - Bladder, NOS",
- "schema_num" : 128,
- "schema_selection_table" : "schema_selection_bladder",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcb",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cag",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dck",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "WHO/ISUP Grade",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kao",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Extranodal Extension of Regional Lymph Nodes",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lai",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "128"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcb",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cag",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cag",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dck",
- "inputs" : [ "nodes", "mets", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "determine_correct_table_for_ajcc6_m_ns4",
- "inputs" : [ "nodes", "mets", "ssf2" ],
- "outputs" : [ "ajcc6_m", "result_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uau",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbh",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "determine_correct_table_for_ajcc6_m_ns4", "ssf25_snt", "ssf2_kao", "ssf1_jpd", "ajcc7_stage_uau", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "determine_correct_table_for_ajcc6_n_ns3", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "lymph_nodes_size_mets114055or60_ajcc6_xdv_n", "ajcc7_year_validation", "ssf21_snp", "mets_hbc", "lymph_nodes_size_mets114055or60_ajcc6_xdv_m", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "extension_eval_cag", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "lymph_nodes_size_mets00_ajcc6_xdo_n", "lymph_nodes_size_mets00_ajcc6_xdo_m", "ajcc6_t_codes", "lymph_nodes_size_mets99_ajcc6_xdp_m", "lymph_nodes_size_mets99_ajcc6_xdp_n", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ajcc6_stage_qbh", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf3_lai", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "schema_selection_bladder", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "nodes_dck", "ssf19_snn", "ajcc7_stage_codes", "lymph_nodes_size_mets10or50_ajcc6_xid_n", "lymph_nodes_size_mets10or50_ajcc6_xid_m", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_bcb", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:10.563Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bone.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bone.json
deleted file mode 100644
index b44d6e9d7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/bone.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "bone",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Bone",
- "title" : "Bone",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1, SSF2, SSF4\n\nC40.0 - Long bones of upper limb, scapula and associated joints\nC40.1 - Short bones of upper limb and associated joints\nC40.2 - Long bones of lower limb and associated joints\nC40.3 - Short bones of lower limb and associated joints\nC40.8 - Overlapping lesion of bones, joints and articular cartilage of limbs\nC40.9 - Bone of limb, NOS\nC41.0 - Bones of skull and face and associated joints (excludes mandible C41.1)\nC41.1 - Mandible\nC41.2 - Vertebral column (excludes sacrum and coccyx C41.4)\nC41.3 - Rib, sternum, clavicle and associated joints\nC41.4 - Pelvic bones, sacrum, coccyx and associated joints\nC41.8 - Overlapping lesion of bones, joints and articular cartilage\nC41.9 - Bone, NOS\n\n**Note 1**: Laterality must be coded for C40.0-C40.3, and C41.3-C41.4. For sternum, sacrum, coccyx, and symphysis pubis, laterality is coded 0.\n\n**Note 2**: The determination of AJCC stage group from T, N, M, and grade for bone also depends on histologic type. The Histologies Stage Table shows the selection of the AJCC Stage table based on histology.",
- "schema_num" : 95,
- "schema_selection_table" : "schema_selection_bone",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aau",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbq",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbh",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hav",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Tumor Size - Second Largest Dimension",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbx",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "CS Tumor Size - Third Largest Dimension",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kbl",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Percent Necrosis Post Neoadjuvant Chemotherapy",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lay",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Resected Pulmonary Metastasis",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mbd",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "95"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbq",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbh",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hav",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpy",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "histologies_stage_xhq_7",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "hist", "ajcc7_n", "ajcc7_m", "grade", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpy",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "histologies_stage_xhq_6",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "hist", "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bbq", "ajcc7_inclusions_tpy", "ajcc6_exclusions_ppc", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "size_aau", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ssf2_kbl", "ajcc_descriptor_codes", "ssf4_mbd", "grade", "summary_stage_rpa", "schema_selection_bone", "ajcc7_m_codes", "ajcc7_stage_not_ewing_ube", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "histologies_stage_xhq_6", "histologies_stage_xhq_7", "nodes_dbh", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lay", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_hav", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf1_jbx", "ssf9_snd", "ssf13_snh", "primary_site", "ajcctnm6and7_stage_ewing_xho", "ajcc6_year_validation", "extension_size_xfu", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ajcc6_stage_not_ewing_qai", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:10.739Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/brain.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/brain.json
deleted file mode 100644
index fbeec127f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/brain.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "brain",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Brain",
- "title" : "Brain and Cerebral Meninges",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF7, SSF8\n\nC70.0 - Cerebral meninges\nC71.0 - Cerebrum\nC71.1 - Frontal lobe\nC71.2 - Temporal lobe\nC71.3 - Parietal lobe\nC71.4 - Occipital lobe\nC71.5 - Ventricle, NOS\nC71.6 - Cerebellum, NOS\nC71.7 - Brain stem\nC71.8 - Overlapping lesion of brain\nC71.9 - Brain, NOS\n\n**Note 1**: This schema is compatible with the AJCC 4th edition TNM scheme for brain, updated to include metastatic and site-specific information from the AJCC 7th edition. The AJCC opted not to recommend a TNM scheme in the 6th or 7th editions.\n\n**Note 2**: AJCC does not define TNM staging for this site.",
- "schema_num" : 143,
- "schema_selection_table" : "schema_selection_brain",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcc",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "988",
- "table" : "nodes_dna",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fna",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gna",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_haw",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "World Health Organization (WHO) Grade Classification",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpo",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "NPCR_REQUIRED_BY_NPCR_2011_FORWARD", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Ki-67/MIB-1 Labeling Index (LI): Brain",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpl",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Functional Neurologic Status - Karnofsky Performance Scale (KPS)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpm",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Methylation of O6-Methylguanine-Methyltransferase (MGMT)",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpn",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf5",
- "name" : "Chromosome 1p: Loss of Heterozygosity (LOH)",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nph",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Chromosome 19q: Loss of Heterozygosity (LOH)",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_opf",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf7",
- "name" : "Surgical Resection",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sqk",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Unifocal vs Multifocal Tumor",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sql",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "143"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcc",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dna",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_haw",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_una",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf25_snt", "ssf3_lpm", "ajcc7_stage_una", "ssf15_snj", "ajcc7_t_codes", "ssf6_opf", "ssf23_snr", "histology", "ssf1_jpo", "ajcc7_inclusions_tqf", "cs_input_version_original", "nodes_exam_gna", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf7_sqk", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "schema_selection_brain", "ssf5_nph", "nodes_pos_fna", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "ajcc6_n_codes", "ssf2_kpl", "behavior", "nodes_dna", "mets_haw", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ssf8_sql", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "extension_bcc", "ssf4_mpn", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:10.882Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/breast.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/breast.json
deleted file mode 100644
index 51240559b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/breast.json
+++ /dev/null
@@ -1,1205 +0,0 @@
-{
- "id" : "breast",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Breast",
- "title" : "Breast",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF17, SSF18, SSF19, SSF20, SSF24\n\nC50.0 - Nipple\nC50.1 - Central portion of breast\nC50.2 - Upper-inner quadrant of breast\nC50.3 - Lower-inner quadrant of breast\nC50.4 - Upper-outer quadrant of breast\nC50.5 - Lower-outer quadrant of breast\nC50.6 - Axillary Tail of breast\nC50.8 - Overlapping lesion of breast\nC50.9 - Breast, NOS\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 106,
- "schema_selection_table" : "schema_selection_breast",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : true
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aab",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bak",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_daj",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fab",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hau",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Estrogen Receptor (ER) Assay",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jag",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Progesterone Receptor (PR) Assay",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kac",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf3",
- "name" : "Number of Positive Ipsilateral Level I-II Axillary Lymph Nodes",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "099",
- "table" : "ssf3_lac",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "Immunohistochemistry (IHC) of Regional Lymph Nodes",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "987",
- "table" : "ssf4_mab",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf5",
- "name" : "Molecular (MOL) Studies of Regional Lymph Nodes",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "987",
- "table" : "ssf5_naa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf6",
- "name" : "Size of Tumor-Invasive Component",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "987",
- "table" : "ssf6_oaa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Nottingham or Bloom-Richardson (BR) Score/Grade",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "999",
- "table" : "ssf7_saa",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "HER2: Immunohistochemistry (IHC) Lab Value",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "999",
- "table" : "ssf8_sab",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf9",
- "name" : "HER2: Immunohistochemistry (IHC) Test Interpretation",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_sac",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "HER2: Fluorescence In Situ Hybridization (FISH) Lab Value",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sad",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf11",
- "name" : "HER2: Fluorescence In Situ Hybridization (FISH) Test Interpretation",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_sae",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "HER2: Chromogenic In Situ Hybridization (CISH) Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_saf",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf13",
- "name" : "HER2: Chromogenic In Situ Hybridization (CISH) Test Interpretation",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "999",
- "table" : "ssf13_sag",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf14",
- "name" : "HER2: Result of Other or Unknown Test",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "999",
- "table" : "ssf14_sbf",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf15",
- "name" : "HER2: Summary Result of Testing",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "999",
- "table" : "ssf15_sbg",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "NPCR_REQUIRED_BY_NPCR_2011_FORWARD", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf16",
- "name" : "Combinations of ER, PR, and HER2 Results",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_sah",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "NPCR_REQUIRED_BY_NPCR_2011_FORWARD" ]
- }, {
- "key" : "ssf17",
- "name" : "Circulating Tumor Cells (CTC) and Method of Detection",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_sai",
- "used_for_staging" : false
- }, {
- "key" : "ssf18",
- "name" : "Disseminated Tumor Cells (DTC) and Method of Detection",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_saj",
- "used_for_staging" : false
- }, {
- "key" : "ssf19",
- "name" : "Assessment of Positive Ipsilateral Axillary Lymph Nodes",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_sak",
- "used_for_staging" : false
- }, {
- "key" : "ssf20",
- "name" : "Assessment of Positive Distant Metastases",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sal",
- "used_for_staging" : false
- }, {
- "key" : "ssf21",
- "name" : "Response to Neoadjuvant Therapy",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_sam",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf22",
- "name" : "Multigene Signature Method",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "999",
- "table" : "ssf22_san",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf23",
- "name" : "Multigene Signature Results",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "999",
- "table" : "ssf23_sao",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf24",
- "name" : "Paget Disease",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sap",
- "used_for_staging" : false
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "106"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bak",
- "inputs" : [ "extension", "size", "behavior" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_daj",
- "inputs" : [ "nodes", "nodes_eval", "ssf4", "ssf5", "ssf3" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hau",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpg",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uac",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpg",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pan",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qad",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pan",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "lymph_nodes_clinical_evaluation_xcx", "size_aab", "ssf22_san", "ssf23_sao", "ssf5_naa", "ssf25_snt", "extension_behavior_xci", "schema_selection_breast", "lymph_nodes_positive_axillary_node_xcy", "ajcc7_t_codes", "extension_size_xar", "determine_correct_table_for_ajcc6_n_ns9", "histology", "ssf24_sap", "cs_input_version_original", "ajcc7_stage_uac", "nodes_pos_fab", "lvi", "ssf3_lac", "ajcc_tdescriptor_cleanup", "ssf11_sae", "ssf16_sah", "ssf14_sbf", "ssf20_sal", "ajcc7_year_validation", "nodes_daj", "ajcc_descriptor_codes", "ajcc7_inclusions_tpg", "ssf10_sad", "ssf15_sbg", "ajcc6_stage_qad", "ssf21_sam", "grade", "summary_stage_rpa", "ssf17_sai", "ajcc7_m_codes", "ssf1_jag", "ajcc_ndescriptor_cleanup", "extension_bak", "ssf19_sak", "ssf6_oaa", "ajcc6_t_codes", "ssf18_saj", "ajcc_mdescriptor_cleanup", "ajcc6_exclusions_pan", "ss_codes", "ssf7_saa", "nodes_exam_gpa", "ssf4_mab", "ajcc6_n_codes", "behavior", "mets_hau", "mets_eval_ipa", "ssf8_sab", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf12_saf", "ajcc7_stage_codes", "ihcmol_xcc", "primary_site", "ajcc6_year_validation", "ssf2_kac", "lymph_nodes_pathologic_evaluation_xcw", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf9_sac", "ssf13_sag" ],
- "last_modified" : "2020-06-30T19:47:11.163Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/buccal_mucosa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/buccal_mucosa.json
deleted file mode 100644
index b0bfd4924..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/buccal_mucosa.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "buccal_mucosa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "BuccalMucosa",
- "title" : "Cheek (Buccal) Mucosa, Vestibule (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC06.0 - Cheek mucosa\nC06.1 - Vestibule of mouth",
- "schema_num" : 25,
- "schema_selection_table" : "schema_selection_buccal_mucosa",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bai",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dah",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "25"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bai",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dah",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "schema_selection_buccal_mucosa", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "extension_size_xag", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "nodes_dah", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "extension_bai", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:11.414Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/carcinoid_appendix.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/carcinoid_appendix.json
deleted file mode 100644
index 4df5859fe..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/carcinoid_appendix.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "carcinoid_appendix",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CarcinoidAppendix",
- "title" : "Carcinoid Tumor and Neuroendocrine Carcinoma of Appendix",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF13\n\nM-8153, 8240-8242, 8246, 8249\nC18.1 - Appendix\n\n**Note 1**: Carcinoid tumor of the appendix is typically not reportable. Use this schema if your institution collects this tumor as reportable by agreement.\n\n**Note 2**: This schema is also used for neurendocrine carcinoma and malignant gastrinomas.\n\n**Note 3**: Not all histologies included in this schema were staged in AJCC 6th Edition. The algorithm will derive an AJCC 6 TNM and stage group only for histology codes 8153 and 8246.",
- "schema_num" : 51,
- "schema_selection_table" : "schema_selection_carcinoid_appendix",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aal",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdu",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddp",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbx",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jcd",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_sbz",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sca",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "51"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdu",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddp",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbx",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uak",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpf",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "ssf25_snt", "size_aal", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "determine_correct_table_for_ajcc6_n_ns8", "ajcc7_stage_uak", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "nodes_ddp", "ssf2_sbz", "grade", "summary_stage_rpa", "ajcc7_m_codes", "lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr", "ssf20_sno", "mets_hbx", "ajcc_ndescriptor_cleanup", "ajcc7_inclusions_tpm", "ssf16_snk", "extension_bdu", "ssf13_sca", "lymph_nodes_clinical_evaluation_ajcc6_xpq", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "schema_selection_carcinoid_appendix", "extension_size_ajcc7_xdj", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "ajcc6_stage_qpf", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "primary_site", "ajcc6_year_validation", "nodes_pos_fpc", "ssf1_jcd", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:11.555Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cervix.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cervix.json
deleted file mode 100644
index 4958ddfd6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cervix.json
+++ /dev/null
@@ -1,1202 +0,0 @@
-{
- "id" : "cervix",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Cervix",
- "title" : "Cervix Uteri",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF4, SSF5, SSF6, SSF7, SSF8, SSF9\n\nC53.0 - Endocervix\nC53.1 - Exocervix\nC53.8 - Overlapping lesion of cervix\nC53.9 - Cervix uteri\n\n**Note**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 110,
- "schema_selection_table" : "schema_selection_cervix",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aac",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbk",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_han",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "FIGO Stage",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbv",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Pelvic Nodal Status",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpr",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Assessment Method of Pelvic Nodal Status",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpu",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Para-Aortic Nodal Status",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mps",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Assessment Method of Para-Aortic Nodal Status",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npm",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Mediastinal Nodal Status",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oaw",
- "used_for_staging" : false
- }, {
- "key" : "ssf7",
- "name" : "Assessment Method of Mediastinal Nodal Status",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sdx",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Scalene Nodal Status",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sdy",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Assessment Method of Scalene Nodal Status",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sdz",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "110"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbk",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbc",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_han",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubh",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qaz",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf3_lpu", "size_aac", "ajcc6_exclusions_ppd", "csextension_size_tablefor_ajcc6th_xba", "ssf25_snt", "ssf9_sdz", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "extension_bbk", "cs_input_version_original", "ssf22_snq", "lvi", "ssf8_sdy", "ssf14_sni", "ajcc6_stage_qaz", "ssf5_npm", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf7_sdx", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "extension_size_ajcc7_xgi", "ssf16_snk", "nodes_dbc", "mets_han", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "ssf6_oaw", "nodes_exam_gpa", "ssf2_kpr", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf1_jbv", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "schema_selection_cervix", "ssf4_mps", "ajcc7_stage_ubh", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:11.745Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cns_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cns_other.json
deleted file mode 100644
index 124f083de..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cns_other.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "cns_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CNSOther",
- "title" : "Other Parts of Central Nervous System",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF7, SSF8\n\nC70.1 - Spinal meninges\nC70.9 - Meninges, NOS\nC72.0 - Spinal cord\nC72.1 - Cauda equina\nC72.2 - Olfactory nerve\nC72.3 - Optic nerve\nC72.4 - Acoustic nerve\nC72.5 - Cranial nerve, NOS\nC72.8 - Overlapping lesion of brain and central nervous system\nC72.9 - Nervous system, NOS\n\n**Note 1**: This schema is compatible with the AJCC fourth edition TNM for spinal cord. \n\n**Note 2**: AJCC does not define TNM staging for this site in the sixth or seventh editions.",
- "schema_num" : 144,
- "schema_selection_table" : "schema_selection_cns_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcd",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "988",
- "table" : "nodes_dna",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fna",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gna",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "World Health Organization (WHO) Grade Classification",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpo",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "NPCR_REQUIRED_BY_NPCR_2011_FORWARD", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Ki-67/MIB-1 Labeling Index (LI): Brain",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpl",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Functional Neurologic Status - Karnofsky Performance Scale (KPS)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpm",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Methylation of O6-Methylguanine-Methyltransferase (MGMT)",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpn",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf5",
- "name" : "Chromosome 1p: Loss of Heterozygosity (LOH)",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nph",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Chromosome 19q: Loss of Heterozygosity (LOH)",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_opf",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf7",
- "name" : "Surgical Resection",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sfl",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Unifocal vs Multifocal Tumor",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sql",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "144"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcd",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dna",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_una",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf25_snt", "ssf3_lpm", "ajcc7_stage_una", "ssf15_snj", "ajcc7_t_codes", "ssf6_opf", "ssf23_snr", "schema_selection_cns_other", "histology", "ssf1_jpo", "ajcc7_inclusions_tqf", "cs_input_version_original", "mets_hpa", "nodes_exam_gna", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_nph", "nodes_pos_fna", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "ajcc6_n_codes", "ssf2_kpl", "behavior", "nodes_dna", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ssf8_sql", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "extension_bcd", "ssf4_mpn", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf7_sfl", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:11.846Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/colon.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/colon.json
deleted file mode 100644
index 0ce5057ab..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/colon.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "colon",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Colon",
- "title" : "Colon (excluding Appendix, Gastrointestinal Stromal Tumor, and Neuroendocrine Tumor)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF5, SSF7, SSF10\n\nM-8000-8152,8154-8231,8243-8245,8247,8248,8250-8934,8940-9136,9141-9582,9700-9701\nC18.0 - Cecum\nC18.2 - Ascending colon\nC18.3 - Hepatic flexure of colon\nC18.4 - Transverse colon\nC18.5 - Splenic flexure of colon\nC18.6 - Descending colon\nC18.7 - Sigmoid colon\nC18.8 - Overlapping lesion of colon\nC18.9 - Colon, NOS",
- "schema_num" : 53,
- "schema_selection_table" : "schema_selection_colon",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aad",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bao",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dan",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hae",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipb",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpp",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpe",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf4",
- "name" : "Tumor Deposits",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpb",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Tumor Regression Grade",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npb",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Circumferential Resection Margin (CRM)",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opb",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Microsatellite Instability (MSI)",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spf",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Perineural Invasion",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "999",
- "table" : "ssf8_spg",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf9",
- "name" : "KRAS",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_sph",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "18q Loss of Heterozygosity (LOH)",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spi",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "53"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bao",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dan",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "cs_input_version_original", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hae",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upw",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpf",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "lymph_nodes_clinical_eval_v0205_ajcc7_xaj", "size_aad", "ssf25_snt", "ssf7_spf", "ssf1_jpf", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf3_lpe", "histology", "ssf6_opb", "schema_selection_colon", "cs_input_version_original", "ssf22_snq", "ssf10_spi", "lvi", "ssf14_sni", "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi", "ajcc_tdescriptor_cleanup", "extension_bao", "ajcc7_year_validation", "ssf21_snp", "ssf5_npb", "ssf17_snl", "ssf9_sph", "determine_correct_table_for_ajcc6_n_ns10", "ajcc_descriptor_codes", "lymph_nodes_clinical_evaluation_ajcc6_xbj", "ajcc7_inclusions_tpc", "ajcc7_stage_upw", "grade", "ssf8_spg", "summary_stage_rpa", "ajcc7_m_codes", "lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpb", "mets_hae", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_exam_gpa", "ssf2_kpp", "nodes_dan", "ajcc6_n_codes", "behavior", "mets_eval_ipb", "ssf18_snm", "ajcc6_stage_qpf", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpb", "ajcc6_stage_codes", "ssf19_snn", "determine_correct_table_for_ajcc7_n_ns11", "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:11.984Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/conjunctiva.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/conjunctiva.json
deleted file mode 100644
index 7c81adadb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/conjunctiva.json
+++ /dev/null
@@ -1,1209 +0,0 @@
-{
- "id" : "conjunctiva",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Conjunctiva",
- "title" : "Conjunctiva (excluding Retinoblastoma, Malignant Melanoma, Kaposi Sarcoma, and Lymphoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2\n\nC69.0 - Conjunctiva\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 131,
- "schema_selection_table" : "schema_selection_conjunctiva",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_aaq",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbj",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Tumor Size",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jbk",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Ki-67/MIB Labeling Index (LI): Ophthalmic",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kay",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "131"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbj",
- "inputs" : [ "extension", "size", "ssf1" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_unb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qnb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "extension_size_table_csv2_xez", "ssf25_snt", "ajcc7_stage_unb", "schema_selection_conjunctiva", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "nodes_dpa", "size_aaq", "histology", "extension_bbj", "cs_input_version_original", "mets_hpc", "ssf22_snq", "lvi", "ssf2_kay", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qnb", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "extension_size_table_csv1_xas", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf1_jbk", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:12.129Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_adenosarcoma.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_adenosarcoma.json
deleted file mode 100644
index 0f87e4c1e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_adenosarcoma.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "corpus_adenosarcoma",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CorpusAdenosarcoma",
- "title" : "Adenosarcoma of the Corpus Uteri; Uterus, NOS",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nM-8933\nC54.0 - Isthmus uteri\nC54.1 - Endometrium\nC54.2 - Myometrium\nC54.3 - Fundus uteri\nC54.8 - Overlapping lesion of corpus uteri\nC54.9 - Corpus uteri\nC55.9 - Uterus, NOS\n\n**Note 1**: AJCC 7th Edition TNM staging reflects the new staging adopted by the Federation Internationale de Gynecologie et d'Obstetrique (FIGO) and utilizes three new staging schemas for cancer of the Corpus Uteri based on histology. This is a change from the AJCC 6th Edition TNM staging. The three new schemas are:\n\n1. Carcinoma and carcinosarcoma \n2. Leiomyosarcoma and endometrial stromal sarcoma (ESS) \n3. Adenosarcoma \n\n**Note 2**: This schema is for adenosarcoma ONLY. When coding pay attention to the FIGO Editions and descriptions about cell and tumor types, disease extension, lymph node status and metastasis.\n\n**Note 3**: AJCC TNM values correspond to the stages accepted by FIGO. Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 112,
- "schema_selection_table" : "schema_selection_corpus_adenosarcoma",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfl",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfh",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcl",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "FIGO Stage",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jca",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Peritoneal Cytology",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpo",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD" ]
- }, {
- "key" : "ssf3",
- "name" : "Number of Positive Pelvic Nodes",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpp",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Number of Examined Pelvic Nodes",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Number of Positive Para-Aortic Nodes",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npk",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Number of Examined Para-Aortic Nodes",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opg",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Percentage of Non-Endometrioid Cell Type in Mixed Histology Tumors",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sqn",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Omentectomy",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sqo",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "112"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfl",
- "inputs" : [ "extension", "ssf2" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfh",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcl",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqh",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqh",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "mets_hcl", "ssf3_lpp", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf6_opg", "ajcc7_inclusions_tqh", "ssf23_snr", "histology", "cs_input_version_original", "extension_bfl", "ssf22_snq", "lvi", "ssf14_sni", "ssf5_npk", "ajcc_tdescriptor_cleanup", "extension_cytology_summary_stage_xkl", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "nodes_dfh", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "ssf7_sqn", "size_apa", "nodes_exam_gpa", "ajcc6_exclusions_pae", "ssf2_kpo", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf8_sqo", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "schema_selection_corpus_adenosarcoma", "ajcc7_stage_ubt", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ssf1_jca", "ssf4_mpq", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:12.272Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_carcinoma.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_carcinoma.json
deleted file mode 100644
index 65ad4eb5b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_carcinoma.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "corpus_carcinoma",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CorpusCarcinoma",
- "title" : "Carcinoma and Carcinosarcoma of Corpus Uteri; Uterus, NOS (excluding Placenta and Adenosarcoma, Leiomyosarcoma, and Endometrial Stromal Sarcoma (ESS))",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nM-8000-8790, 8950, 8951, 8980-8981,9700-9701\nC54.0 - Isthmus uteri\nC54.1 - Endometrium\nC54.2 - Myometrium\nC54.3 - Fundus uteri\nC54.8 - Overlapping lesion of corpus uteri\nC54.9 - Corpus uteri\nC55.9 - Uterus, NOS\n\n**Note 1**: AJCC 7th Edition TNM staging reflects the new staging adopted by the International Federation of Gynecology and Obstetrics (FIGO) and utilizes three new staging schemas for cancer of the Corpus Uteri based on histology. This is a change from the AJCC 6th Edition TNM staging. The three new schemas are: \n\n1. Carcinoma and carcinosarcoma \n2. Leiomyosarcoma and endometrial stromal sarcoma (ESS) \n3. Adenosarcoma\n\n**Note 2**: Carcinosarcoma should be staged as carcinoma.\n\n**Note 3**: This schema is for carcinoma and carcinosarcoma. When coding pay attention to the FIGO Editions and descriptions about cell and tumor types, disease extension, lymph node status and metastasis.\n\n**Note 4**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 111,
- "schema_selection_table" : "schema_selection_corpus_carcinoma",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbl",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbd",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_ham",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "FIGO Stage",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbz",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Peritoneal Cytology",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpo",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD" ]
- }, {
- "key" : "ssf3",
- "name" : "Number of Positive Pelvic Nodes",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpp",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Number of Examined Pelvic Nodes",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Number of Positive Para-Aortic Nodes",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npk",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Number of Examined Para-Aortic Nodes",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opg",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Percentage of Non-Endometrioid Cell Type in Mixed Histology Tumors",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sqn",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Omentectomy",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sqo",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "111"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbl",
- "inputs" : [ "year_dx", "extension", "cs_input_version_original", "ssf2" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbd",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_ham",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqg",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubs",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqg",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpw",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf3_lpp", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf6_opg", "ssf23_snr", "ajcc6_stage_qpw", "histology", "ajcc7_inclusions_tqg", "cs_input_version_original", "ssf22_snq", "lvi", "extension_bbl", "ssf14_sni", "ssf5_npk", "determine_correct_table_for_ajcc6_t_ns6", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "mets_ham", "extension_cytology_ajcc6_table_csv1_xkn", "ajcc6_t_codes", "nodes_pos_fpa", "nodes_dbd", "ajcc_mdescriptor_cleanup", "schema_selection_corpus_carcinoma", "ssf11_snf", "ss_codes", "ssf7_sqn", "size_apa", "nodes_exam_gpa", "ajcc6_exclusions_pae", "extension_cytology_summary_stage_xqa", "ssf2_kpo", "ajcc6_n_codes", "extension_cytology_ajcc6_table_csv2_xkm", "behavior", "ssf10_sne", "ssf8_sqo", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ajcc7_stage_ubs", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf1_jbz", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ssf4_mpq", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:12.420Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_sarcoma.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_sarcoma.json
deleted file mode 100644
index bf6f6f0a8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/corpus_sarcoma.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "corpus_sarcoma",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CorpusSarcoma",
- "title" : "Sarcoma (Leiomyosarcoma and Endometrial Stromal Sarcoma) of the Corpus Uteri; Uterus, NOS (excluding Placenta and Adenosarcoma, Carcinoma, and Carcinosaroma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nM-8800-8932,8934-8941,8959-8974, 8982-9136,9141-9582 \nC54.0 - Isthmus uteri\nC54.1 - Endometrium\nC54.2 - Myometrium\nC54.3 - Fundus uteri\nC54.8 - Overlapping lesion of corpus uteri\nC54.9 - Corpus uteri\nC55.9 - Uterus, NOS\n\n**Note 1**: AJCC 7th Edition TNM staging reflects the new staging adopted by the Federation Internationale de Gynecologie et d'Obstetrique (FIGO) and utilizes three new staging schemas for cancer of the Corpus Uteri based on histology. This is a change from the AJCC 6th Edition TNM staging. The three new schemas are:\n\n1. Carcinoma and carcinosarcoma\n2. Leiomyosarcoma and endometrial stromal sarcoma (ESS)\n3. Adenosarcoma\n\n**Note 2**: This schema is for leiomyosarcoma and endometrial stromal sarcoma (ESS). \n\n**Note 3**: When coding pay attention to the FIGO Editions and descriptions about cell and tumor types, disease extension, lymph node status and metastasis.\n\n**Note 4**: AJCC TNM values correspond to the stages accepted by FIGO. Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 113,
- "schema_selection_table" : "schema_selection_corpus_sarcoma",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_app",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfm",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfi",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcm",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "FIGO Stage",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbh",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Peritoneal Cytology",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpo",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD" ]
- }, {
- "key" : "ssf3",
- "name" : "Number of Positive Pelvic Nodes",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpp",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Number of Examined Pelvic Nodes",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Number of Positive Para-Aortic Nodes",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npk",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Number of Examined Para-Aortic Nodes",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opg",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Percentage of Non-Endometrioid Cell Type in Mixed Histology Tumors",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sqn",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Omentectomy",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sqo",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "113"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfm",
- "inputs" : [ "year_dx", "extension", "size", "cs_input_version_original", "ssf2" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfi",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcm",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqi",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqi",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpw",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "mets_hcm", "ssf3_lpp", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf6_opg", "ssf23_snr", "ajcc7_inclusions_tqi", "ajcc6_stage_qpw", "histology", "cs_input_version_original", "extension_bfm", "ssf22_snq", "lvi", "ssf14_sni", "ssf5_npk", "ajcc_tdescriptor_cleanup", "schema_selection_corpus_sarcoma", "determine_correct_table_for_ajcc6_t_ns7", "extension_size_ajcc7_xkr", "ajcc7_year_validation", "extension_cytology_summary_stage_xkp", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "nodes_dfi", "extension_cytology_ajcc6_table_csv1_xko", "ssf11_snf", "ss_codes", "ssf7_sqn", "nodes_exam_gpa", "ajcc6_exclusions_pae", "ssf2_kpo", "ajcc6_n_codes", "behavior", "ssf1_jbh", "extension_cytology_ajcc6_table_csv2_xkq", "ssf10_sne", "ssf8_sqo", "ssf18_snm", "mets_eval_ipa", "size_app", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ajcc7_stage_ubu", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ssf4_mpq", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:12.623Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cystic_duct.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cystic_duct.json
deleted file mode 100644
index 6d8b34631..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/cystic_duct.json
+++ /dev/null
@@ -1,1219 +0,0 @@
-{
- "id" : "cystic_duct",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CysticDuct",
- "title" : "Cystic Duct",
- "notes" : "C24.0 - Extrahepatic Bile Duct\n\n**Note**: In the 7th edition of the AJCC manual, Cystic Duct was removed from the Extrahepatic Bile Duct staging chapter and added to the Gallbladder staging chapter. For Collaborative Stage version 2, a new schema was created for Cystic Duct due to differences between schemas for bile ducts and gallbladder.",
- "schema_num" : 64,
- "schema_selection_table" : "schema_selection_cystic_duct",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfw",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfr",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcv",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: BileDuctsDistal/BileDuctsPerihilar/CysticDuct",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "999",
- "table" : "ssf25_sqi",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "64"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfw",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfr",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcv",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqi",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_uqb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqi",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpv",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bfw", "ssf2_kna", "ajcc6_exclusions_ppd", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ajcc6_stage_qpv", "histology", "cs_input_version_original", "mets_hcv", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_stage_uqb", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "schema_selection_cystic_duct", "ajcc7_inclusions_tpe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "lymph_nodes_metsat_dxajcc6_xjd", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf25_sqi", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dfr", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:12.794Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/digestive_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/digestive_other.json
deleted file mode 100644
index 8618b639f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/digestive_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "digestive_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "DigestiveOther",
- "title" : "Other and Ill-Defined Digestive Organs",
- "notes" : "C26.0 - Intestinal tract, NOS\nC26.8 - Overlapping lesion of digestive system\nC26.9 - Gastrointestinal tract, NOS\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 72,
- "schema_selection_table" : "schema_selection_digestive_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcg",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbx",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "72"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcg",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbx",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_digestive_other", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_bcg", "ajcc6_m_codes", "nodes_dbx", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:12.917Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/endocrine_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/endocrine_other.json
deleted file mode 100644
index fbe764861..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/endocrine_other.json
+++ /dev/null
@@ -1,1119 +0,0 @@
-{
- "id" : "endocrine_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "EndocrineOther",
- "title" : "Thymus and Other Endocrine Glands (excluding Adrenal Gland, Pituitary Gland, Craniopharyngeal Duct, and Pineal Gland",
- "notes" : "C37.9 - Thymus\nC75.0 - Parathyroid gland\nC75.4 - Carotid body\nC75.5 - Aortic body and other paraganglia\nC75.8 - Overlapping lesion of endocrine glands and related structures\nC75.9 - Endocrine gland, NOS\n\n**Note 1**: Laterality must be coded for C75.4.\n\n**Note 2**: AJCC does not define TNM staging for these sites.\n\n**Note 3**: Adrenal gland primaries (C74.0, C74.1, and C74.9) are included in the Adrenal Gland schema.\n\n**Note 4**: Pituitary gland (C75.1), craniopharyngeal duct (C75.2), and pineal gland (C75.3) primaries are included in the Intracranial Gland schema.",
- "schema_num" : 148,
- "schema_selection_table" : "schema_selection_endocrine_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bco",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcd",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpd",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpb",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - WHO Grade Classification",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jaw",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "148"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bco",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcd",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf1_jaw", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "nodes_exam_gpb", "ssf6_ona", "size_apa", "ajcc6_n_codes", "schema_selection_endocrine_other", "behavior", "ssf10_sne", "ssf18_snm", "nodes_dcd", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_pos_fpd", "ajcc6_m_codes", "cs_year_validation", "extension_bco", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:13.063Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/epiglottis_anterior.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/epiglottis_anterior.json
deleted file mode 100644
index 339499cf6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/epiglottis_anterior.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "epiglottis_anterior",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "EpiglottisAnterior",
- "title" : "Anterior Surface of Epiglottis (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC10.1 - Anterior surface of epiglottis\n\n**Note**: AJCC includes lingual (anterior) surface of epiglottis (C10.1) with larynx. SEER Extent of Disease included it with oropharynx.",
- "schema_num" : 32,
- "schema_selection_table" : "schema_selection_epiglottis_anterior",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcw",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcs",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "32"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcw",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcs",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "nodes_dcs", "schema_selection_epiglottis_anterior", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "extension_bcw", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:13.166Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/esophagus.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/esophagus.json
deleted file mode 100644
index 2e1bffaee..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/esophagus.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "esophagus",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Esophagus",
- "title" : "Esophagus",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF4, SSF5\n\nC15.0 - Cervical esophagus\nC15.1 - Thoracic esophagus\nC15.2 - Abdominal esophagus\nC15.3 - Upper third of esophagus\nC15.4 - Middle third of esophagus\nC15.5 - Lower third of esophagus\nC15.8 - Overlapping lesion of esophagus\nC15.9 - Esophagus, NOS\n\n**Note 1**: The cardia/gastroesophageal junction (EGJ), and the proximal 5 centimeters (cm) of the fundus and body of the stomach (C16.0-C16.2) have been removed from the Stomach chapter and added to the Esophagus chapter effective with AJCC 7th Edition. A new schema EsophagusGEJunction was created in CSv2 to accommodate this change. Tumors arising at the EGJ, or arising in the stomach within 5 cm of the EGJ and crossing the EGJ are staged using the EsophagusGEJunction schema. All other cancers with a midpoint in the stomach lying more than 5 cm distal to the EGJ, or those within 5 cm of the EGJ but not extending into the EGJ or esophagus, are staged using the stomach schema.\n\n**Note 2**: There are two widely used but incompatible systems of dividing the esophagus into subsites, one using anatomic landmarks and the other using using thirds of the total length. Each of these two systems has been assigned topography codes in ICD-O-3; codes C15.0-C15.2 for the former, and C15.3-C15.5 for the latter. As explained on page 23 of ICD-O-3, \"The terms cervical, thoracic, and abdominal are radiographic and intraoperative descriptors; upper, middle, and lower third are endoscopic and clinical descriptors.\" In actual practice by physicians, and in publications of UICC and AJCC, the terms and codes for the upper, middle, and lower thirds are often applied to sub-sections of the thoracic esophagus, and the abdominal portion can be considered part of the lower thoracic esophagus. \n\n**Note 3**: Anatomic Limits of Esophagus: \n\n* Cervical Esophagus (C15.0): From the lower border of the cricoid cartilage to the thoracic inlet (suprasternal notch), about 18 cm from the incisors.\n* Thoracic Esophagus (C15.1) and Abdominal Esophagus (C15.2):\n * Upper thoracic portion (C15.3): From the thoracic inlet to the level of the tracheal bifurcation (18-24 cm). \n * Mid-thoracic portion (C15.4): From the tracheal bifurcation midway to the GEJ (24-32 cm).\n * Lower thoracic portion (C15.5): From midway between the tracheal bifurcation and the EGJ to the EGJ including the abdominal esophagus (32-40 cm). \n\n**Note 4**: Effective with AJCC TNM 7th Edition, there are separate stage groupings for squamous cell carcinoma and adenocarcinoma. Since squamous cell carcinoma typically has a poorer prognosis than adenocarcinoma, a tumor of mixed histopathologic type or a type that is not otherwise specified should be classified as squamous cell carcinoma. \n\n**Note 5**: Effective with AJCC TNM 7th Edition, histologic grade is required for stage grouping.",
- "schema_num" : 41,
- "schema_selection_table" : "schema_selection_esophagus",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aag",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbb",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dat",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbg",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpn",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Specific Location of Tumor",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kas",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Number of Regional Lymph Nodes with Extracapsular Tumor",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpl",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Distance to Proximal Edge of Tumor from Incisors",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpg",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Distance to Distal Edge of Tumor from Incisors",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npg",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "41"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbb",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dat",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "cs_input_version_original", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbg",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "histologies_stage_xhw",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "hist", "ajcc7_n", "site", "ajcc7_m", "grade", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qah",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "schema_selection_esophagus", "ssf2_kas", "ajcc6_exclusions_ppd", "ssf25_snt", "size_aag", "ssf3_lpl", "lymph_nodes_clinical_eval_v0205_ajcc7_xaw", "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr", "ssf15_snj", "ajcc7_t_codes", "extension_bbb", "ssf23_snr", "histology", "ssf1_jpn", "cs_input_version_original", "lymph_nodes_metsat_dxtable_ajcc6_xfv", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "histologies_stage_xhw", "ssf5_npg", "ssf17_snl", "mets_hbg", "ajcc_descriptor_codes", "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfq", "ajcc6_stage_qah", "ajcctnm7_stage_squamous_xhy", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "nodes_dat", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "ajcctnm7_stage_adenocarcinoma_xhz", "primary_site", "ajcc6_year_validation", "determine_correct_table_for_ajcc7_n_ns12", "nodes_pos_fpc", "ajcc6_m_codes", "nodes_eval_epa", "ssf4_mpg", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:13.559Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/esophagus_gejunction.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/esophagus_gejunction.json
deleted file mode 100644
index daa7b1001..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/esophagus_gejunction.json
+++ /dev/null
@@ -1,1216 +0,0 @@
-{
- "id" : "esophagus_gejunction",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "EsophagusGEJunction",
- "title" : "EsophagusGEJunction",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF3, SSF4, SSF5\n\nC16.0 - Cardia, esophagogastric junction (EGJ)\nC16.1 - Fundus of stomach, proximal 5 centimeters (cm) only\nC16.2 - Body of stomach, proximal 5 cm only\n\n**Note 1**: The cardia/EGJ and the proximal 5 cm of the fundus and body of the stomach have been removed from the Stomach chapter and added to the Esophagus chapter effective with AJCC TNM 7th Edition. Due to differences between the schemas for Esophagus and Stomach, a new schema was created in CSv2 to accommodate these changes. Since primary site codes C16.1 (fundus of stomach) and C16.2 (body of stomach) can be assigned to either schema, EsophagusGEJunction or Stomach, a schema discriminator field is needed for the CS algorithm to determine which schema to select. \nIn AJCC 7th Edition, cancers with a midpoint in the lower thoracic esophagus, in the EGJ, or within the proximal 5 cm of the stomach (cardia) and extending into the EGJ or esophagus, are staged similarly to cancers of the esophagus. All other cancers with a midpoint in the stomach greater than 5 cm distal to the EGJ, or those within 5 cm of the EGJ but not extending into the EGJ or esophagus, are staged using the gastric cancer staging system.\n\n**Note 2**: Effective with AJCC TNM 7th Edition, there are separate stage groupings for squamous cell carcinoma and adenocarcinoma of the esophagus. Since squamous cell carcinoma typically has a poorer prognosis than adenocarcinoma, a tumor of mixed histopathologic type or a type that is not otherwise specified should be classified as squamous cell carcinoma. \n\n**Note 3**: Effective with AJCC TNM 7th Edition, histologic grade is required for stage grouping.",
- "schema_num" : 43,
- "schema_selection_table" : "schema_selection_esophagus_gejunction",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aah",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdr",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddm",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbu",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jcf",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "Number of Regional Lymph Nodes with Extracapsular Tumor",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpl",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Distance to Proximal Edge of Tumor from Incisors",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpg",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Distance to Distal Edge of Tumor from Incisors",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npg",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: EsophagusGEJunction (EGJ)/Stomach",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "999",
- "table" : "ssf25_spv",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "43"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdr",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddm",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "cs_input_version_original", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbu",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spv",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "histologies_stage_xhx",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "hist", "ajcc7_n", "ajcc7_m", "grade", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spv",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qcb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "size_aah", "ssf3_lpl", "nodes_ddm", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "lymph_nodes_clinical_eval_v0205_ajcc7_xax", "cs_input_version_original", "lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "histologies_stage_xhx", "ajcc7_year_validation", "ssf21_snp", "ssf5_npg", "ssf17_snl", "lymph_nodes_clinical_evaluation0or5_ajcc6_xbg", "ajcc_descriptor_codes", "determine_correct_table_for_ajcc6_n_ns13", "ajcc7_inclusions_tpc", "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfs", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcctnm7_stage_squamous_xia", "mets_hbu", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "lymph_nodes_clinical_evaluation1or9_ajcc6_xbf", "extension_bdr", "lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft", "ajcc6_t_codes", "ssf25_spv", "ajcc6_stage_qcb", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "schema_selection_esophagus_gejunction", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "determine_correct_table_for_ajcc7_n_ns14", "ajcc6_year_validation", "ajcctnm7_stage_adenocarcinoma_xib", "nodes_pos_fpc", "ajcc6_m_codes", "nodes_eval_epa", "ssf4_mpg", "ssf1_jcf", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:13.831Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/eye_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/eye_other.json
deleted file mode 100644
index 9bb7b7166..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/eye_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "eye_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "EyeOther",
- "title" : "Cornea, Retina, Choroid, Ciliary Body, Iris, Overlapping Lesion of Eye, and Other Eye (excluding Melanoma and Retinoblastoma)",
- "notes" : "C69.1 - Cornea, NOS\nC69.2 - Retina\nC69.3 - Choroid\nC69.4 - Ciliary body\nC69.8 - Overlapping lesion of eye and adnexa\nC69.9 - Eye, NOS\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: AJCC does not define TNM staging for these sites.\n\n**Note 3**: AJCC includes primary site C69.8 (overlapping lesion of eye and adnexa) in its chapter 46, Sarcoma of the Orbit. Collaborative Staging excludes melanomas and retinoblastomas from this schema.",
- "schema_num" : 133,
- "schema_selection_table" : "schema_selection_eye_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bpb",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "133"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bpb",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpb",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "nodes_dpb", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "extension_bpb", "ssf5_nna", "schema_selection_eye_other", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:13.968Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/fallopian_tube.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/fallopian_tube.json
deleted file mode 100644
index 259a4ca18..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/fallopian_tube.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "fallopian_tube",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "FallopianTube",
- "title" : "Fallopian Tube",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3\n\nC57.0 - Fallopian tube\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 115,
- "schema_selection_table" : "schema_selection_fallopian_tube",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbh",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_daz",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hai",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "FIGO Stage",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbp",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Biopsy of Metastatic Site",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kbc",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Primary Tumor Location",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_laq",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Number of Positive Pelvic Nodes",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mav",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Number of Examined Pelvic Nodes",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_nas",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Number of Positive Para-Aortic Nodes",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_oap",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Number of Examined Para-Aortic Nodes",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "999",
- "table" : "ssf7_sde",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "115"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbh",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_daz",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hai",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qac",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf2_kbc", "cs_input_version_original", "extension_bbh", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf7_sde", "schema_selection_fallopian_tube", "grade", "ajcc6_stage_qac", "summary_stage_rpa", "ssf4_mav", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "mets_hai", "ssf6_oap", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "nodes_exam_gpa", "ssf3_laq", "ajcc6_n_codes", "nodes_daz", "behavior", "lymph_nodes_metsat_dxajcc6_xfm", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf1_jbp", "ajcc6_stage_codes", "ssf5_nas", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng", "ajcc7_stage_ubb" ],
- "last_modified" : "2020-06-30T19:47:14.150Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/floor_mouth.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/floor_mouth.json
deleted file mode 100644
index a4db4c865..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/floor_mouth.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "floor_mouth",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "FloorMouth",
- "title" : "Floor of Mouth (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC04.0 - Anterior floor of mouth\nC04.1 - Lateral floor of mouth\nC04.8 - Overlapping lesion of floor of mouth\nC04.9 - Floor of mouth, NOS",
- "schema_num" : 17,
- "schema_selection_table" : "schema_selection_floor_mouth",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bae",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpd",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "17"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bae",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpd",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "schema_selection_floor_mouth", "ssf22_snq", "lvi", "nodes_dpd", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_size_xac", "ssf9_spc", "lymph_nodes_size_xpd", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "extension_bae", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:14.373Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gallbladder.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gallbladder.json
deleted file mode 100644
index 907fd1efc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gallbladder.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "gallbladder",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Gallbladder",
- "title" : "Gallbladder",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF15, SSF16\n\nC23.9 - Gallbladder",
- "schema_num" : 62,
- "schema_selection_table" : "schema_selection_gallbladder",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbd",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dav",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbe",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "Extent of Liver Resection",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_sdm",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "Primary Tumor Location within Gallbladder",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_sdn",
- "used_for_staging" : false
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "62"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbd",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dav",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbe",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pac",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qag",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pac",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ajcc7_t_codes", "ssf23_snr", "histology", "extension_bbd", "schema_selection_gallbladder", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_stage_uqb", "ajcc7_year_validation", "ssf21_snp", "mets_hbe", "ssf17_snl", "ajcc_descriptor_codes", "ajcc6_stage_qag", "ajcc7_inclusions_tpe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf1_jna", "ajcc6_t_codes", "ssf16_sdn", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ajcc6_exclusions_pac", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "nodes_dav", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "lymph_nodes_metsat_dxajcc6_xhv", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ssf15_sdm", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:14.753Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/genital_female_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/genital_female_other.json
deleted file mode 100644
index 2f7da84ef..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/genital_female_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "genital_female_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GenitalFemaleOther",
- "title" : "Other and Unspecified Female Genital Organs",
- "notes" : "C57.7 - Other specified parts of female genital organs\nC57.8 - Overlapping lesion of female genital organs\nC57.9 - Female genital tract, NOS\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 117,
- "schema_selection_table" : "schema_selection_genital_female_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcm",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "117"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcm",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcb",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "schema_selection_genital_female_other", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "nodes_dcb", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "extension_bcm", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:14.873Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/genital_male_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/genital_male_other.json
deleted file mode 100644
index f125c72bc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/genital_male_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "genital_male_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GenitalMaleOther",
- "title" : " Other and Unspecified Male Genital Organs (excluding Scrotum, Kaposi Sarcoma and Lymphoma)",
- "notes" : "C63.0 - Epididymis\nC63.1 - Spermatic cord\nC63.7 - Other specified parts of male genital organs\nC63.8 - Overlapping lesion of male genital organs\nC63.9 - Male genital organs, NOS\n\n**Note 1**: AJCC does not define TNM staging for this site.\n\n**Note 2**: Laterality must be coded for C63.0-C63.1.\n\n**Note 3**: Melanoma, mycosis fungoides, or Sezary disease of all sites listed is coded using this schema. Kaposi sarcoma of all sites is included in the Kaposi sarcoma schema, and lymphomas of all sites are included in the lymphoma schema.",
- "schema_num" : 123,
- "schema_selection_table" : "schema_selection_genital_male_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcl",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dca",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "123"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcl",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dca",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "schema_selection_genital_male_other", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "nodes_dca", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "extension_bcl", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:15.186Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_appendix.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_appendix.json
deleted file mode 100644
index e2094517a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_appendix.json
+++ /dev/null
@@ -1,1158 +0,0 @@
-{
- "id" : "gist_appendix",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GISTAppendix",
- "title" : "Gastrointestinal Stromal Tumor of Appendix",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF13, SSF14, SSF15\n\nM- 8935-8936\nC18.1 - Appendix\n\n**Note**: The histologies included in this schema were not staged with AJCC 6th Edition. Therefore, the algorithm will not derive an AJCC 6th TNM or stage group.",
- "schema_num" : 52,
- "schema_selection_table" : "schema_selection_gist_appendix",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apr",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfh",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfd",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hch",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpv",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kph",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Mitotic Count",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spk",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf12",
- "name" : "KIT Gene Immunohistochemistry (IHC)",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_spl",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf13",
- "name" : "KIT Gene Mutations",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_spm",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "PDGFRA Gene Mutation",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_spn",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Tumor Multiplicity",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_spo",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "52"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfh",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfd",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hch",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "mitotic_rate_calculation_xpi",
- "inputs" : [ "ssf11" ],
- "outputs" : [ "mitotic_rate" ]
- }, {
- "id" : "ajcc7_stage_upy",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "mitotic_rate", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf11_spk", "ssf25_snt", "mets_hch", "ajcc7_t_codes", "ssf23_snr", "histology", "extension_bfh", "cs_input_version_original", "ssf22_snq", "ssf1_jpv", "lvi", "ssf13_spm", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "schema_selection_gist_appendix", "ajcc7_stage_upy", "grade", "ajcc7_inclusions_tpo", "summary_stage_rpa", "ajcc7_m_codes", "ssf12_spl", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "mitotic_rate_calculation_xpi", "nodes_dfd", "ssf15_spo", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf14_spn", "ssf2_kph", "ssf10_sne", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "size_apr", "ajcc6_stage_codes", "extension_eval_cpb", "ssf5_nna", "extension_size_ajcc7_xet", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:15.388Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_colon.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_colon.json
deleted file mode 100644
index b615bc153..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_colon.json
+++ /dev/null
@@ -1,1158 +0,0 @@
-{
- "id" : "gist_colon",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GISTColon",
- "title" : "Gastrointestinal Stromal Tumors of Colon (excluding Appendix)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF13, SSF14, SSF15\n\nM-8935-8936\nC18.0 - Cecum\nC18.2 - Ascending colon\nC18.3 - Hepatic flexure of colon\nC18.4 - Transverse colon\nC18.5 - Splenic flexure of colon\nC18.6 - Descending colon\nC18.7 - Sigmoid colon\nC18.8 - Overlapping lesion of colon\nC18.9 - Colon, NOS\n\n**Note**: The histologies included in this schema were not staged with AJCC 6th Edition. Therefore, the algorithm will not derive an AJCC 6th TNM or stage group.",
- "schema_num" : 54,
- "schema_selection_table" : "schema_selection_gist_colon",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apr",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfe",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dey",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpv",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kph",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Mitotic Count",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spk",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf12",
- "name" : "KIT Gene Immunohistochemistry (IHC)",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_spl",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf13",
- "name" : "KIT Gene Mutations",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_spm",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "PDGFRA Gene Mutation",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_spn",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Tumor Multiplicity",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_spo",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "54"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfe",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dey",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "mitotic_rate_calculation_xpi",
- "inputs" : [ "ssf11" ],
- "outputs" : [ "mitotic_rate" ]
- }, {
- "id" : "ajcc7_stage_upy",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "mitotic_rate", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf11_spk", "ssf25_snt", "ajcc7_t_codes", "ssf23_snr", "extension_bfe", "histology", "cs_input_version_original", "ssf22_snq", "ssf1_jpv", "lvi", "ssf13_spm", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upy", "schema_selection_gist_colon", "mets_hcb", "grade", "ajcc7_inclusions_tpo", "summary_stage_rpa", "ajcc7_m_codes", "ssf12_spl", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "mitotic_rate_calculation_xpi", "ssf15_spo", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf14_spn", "nodes_dey", "ssf2_kph", "ssf10_sne", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "size_apr", "ajcc6_stage_codes", "extension_eval_cpb", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "primary_site", "ajcc6_year_validation", "extension_size_ajcc7_xeb", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:15.606Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_esophagus.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_esophagus.json
deleted file mode 100644
index 138237417..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_esophagus.json
+++ /dev/null
@@ -1,1160 +0,0 @@
-{
- "id" : "gist_esophagus",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GISTEsophagus",
- "title" : "Gastrointestinal Stromal Tumor of Esophagus",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF8, SSF9, SSF10\n\nM- 8935-8936\nC15.0 - Cervical esophagus\nC15.1 - Thoracic esophagus\nC15.2 - Abdominal esophagus\nC15.3 - Upper third of esophagus\nC15.4 - Middle third of esophagus\nC15.5 - Lower third of esophagus\nC15.8 - Overlapping lesion of esophagus\nC15.9 - Esophagus, NOS\n\n**Note**: The histologies included in this schema were not staged with AJCC 6th Edition. Therefore, the algorithm will not derive an AJCC 6th TNM or stage group.",
- "schema_num" : 42,
- "schema_selection_table" : "schema_selection_gist_esophagus",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_api",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfn",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfj",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcn",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "Mitotic Count",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_oph",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf7",
- "name" : "KIT Gene Immunohistochemistry (IHC)",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sre",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf8",
- "name" : "KIT Gene Mutations",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_srf",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "PDGFRA Gene Mutation",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_srg",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "Tumor Multiplicity",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_srh",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "42"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfn",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfj",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcn",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "mitotic_rate_calculation_xqe",
- "inputs" : [ "ssf6" ],
- "outputs" : [ "mitotic_rate" ]
- }, {
- "id" : "ajcc7_stage_upy",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "mitotic_rate", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "mets_hcn", "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "extension_size_ajcc7_xfd", "histology", "extension_bfn", "cs_input_version_original", "ssf22_snq", "lvi", "ssf6_oph", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "mitotic_rate_calculation_xqe", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upy", "grade", "ajcc7_inclusions_tpo", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf10_srh", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_sre", "nodes_dfj", "ssf11_snf", "ssf3_lna", "ss_codes", "schema_selection_gist_esophagus", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "size_api", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "extension_eval_cpb", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_srg", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf8_srf", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:15.779Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_peritoneum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_peritoneum.json
deleted file mode 100644
index 991afd60c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_peritoneum.json
+++ /dev/null
@@ -1,1211 +0,0 @@
-{
- "id" : "gist_peritoneum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GISTPeritoneum",
- "title" : "Gastrointestinal Stromal Tumors of Peritoneum and Retroperitoneum",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF9\n\nM-8935-8936\nC48.0 - Retroperitioneum\nC48.1 - Specified parts of peritoneum (including omentum and mesentery)\nC48.2 - Peritoneum, NOS\nC48.8 - Overlapping lesion of retroperitoneum and peritoneum",
- "schema_num" : 104,
- "schema_selection_table" : "schema_selection_gist_peritoneum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aps",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfu",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfp",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcs",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "Mitotic Count",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_nav",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf6",
- "name" : "KIT Gene Immunohistochemistry (IHC)",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oas",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf7",
- "name" : "KIT Gene Mutations",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sdo",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "PDGFRA Gene Mutation",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sdp",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Tumor Multiplicity",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sdq",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "Location of Primary Tumor",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_sqj",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "104"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfu",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfp",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcs",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "mitotic_rate_calculation_xjm",
- "inputs" : [ "ssf5" ],
- "outputs" : [ "mitotic_rate" ]
- }, {
- "id" : "ssf10_sqj",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "mitotic_rate", "ajcc7_m", "ajcc7_t", "ssf10" ],
- "outputs" : [ "stage_table", "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpi",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bfu", "ajcc6_exclusions_ppc", "ssf2_kna", "ssf9_sdq", "extension_size_ajcc7_xfp", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf8_sdp", "mets_hcs", "cs_input_version_original", "ajcctnm7_stage_giststomach_xit", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ssf7_sdo", "schema_selection_gist_peritoneum", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upy", "grade", "ajcc7_inclusions_tpo", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ssf10_sqj", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ssf3_lna", "ss_codes", "nodes_exam_gpa", "ssf6_oas", "ajcc6_n_codes", "behavior", "ssf18_snm", "ajcc6_stage_qpi", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "size_aps", "ajcc6_stage_codes", "ssf5_nav", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dfp", "mitotic_rate_calculation_xjm", "extension_size_ajcc6_xir", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:16.022Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_rectum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_rectum.json
deleted file mode 100644
index cf1e1ddb5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_rectum.json
+++ /dev/null
@@ -1,1158 +0,0 @@
-{
- "id" : "gist_rectum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GISTRectum",
- "title" : "Gastrointestinal Stromal Tumor of Rectum and Rectosigmoid Junction",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF13, SSF14, SSF15\n\nM-8935-8936\nC19.9 - Rectosigmoid junction\nC20.9 - Rectum, NOS\n\n**Note**: The histologies included in this schema were not staged with AJCC 6th Edition. Therefore, the algorithm will not derive an AJCC 6th TNM or stage group.",
- "schema_num" : 57,
- "schema_selection_table" : "schema_selection_gist_rectum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apr",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bff",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dez",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpv",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kph",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Mitotic Count",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spk",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf12",
- "name" : "KIT Gene Immunohistochemistry (IHC)",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_spl",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf13",
- "name" : "KIT Gene Mutations",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_spm",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "PDGFRA Gene Mutation",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_spn",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Tumor Multiplicity",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_spo",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "57"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bff",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dez",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "mitotic_rate_calculation_xpi",
- "inputs" : [ "ssf11" ],
- "outputs" : [ "mitotic_rate" ]
- }, {
- "id" : "ajcc7_stage_upy",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "mitotic_rate", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "mets_hcc", "ssf11_spk", "ssf25_snt", "ajcc7_t_codes", "extension_bff", "ssf23_snr", "histology", "cs_input_version_original", "ssf22_snq", "ssf1_jpv", "lvi", "ssf13_spm", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upy", "grade", "ajcc7_inclusions_tpo", "summary_stage_rpa", "ajcc7_m_codes", "ssf12_spl", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "mitotic_rate_calculation_xpi", "ssf15_spo", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "schema_selection_gist_rectum", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf14_spn", "ssf2_kph", "ssf10_sne", "mets_eval_ipc", "nodes_dez", "ssf18_snm", "ajcc7_n_codes", "size_apr", "ajcc6_stage_codes", "extension_eval_cpb", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "primary_site", "ajcc6_year_validation", "extension_size_ajcc7_xec", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:16.176Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_small_intestine.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_small_intestine.json
deleted file mode 100644
index 19d4fd63f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_small_intestine.json
+++ /dev/null
@@ -1,1160 +0,0 @@
-{
- "id" : "gist_small_intestine",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GISTSmallIntestine",
- "title" : "Gastrointestinal Stromal Tumor of Small Intestine",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF8, SSF9, SSF10\n\nM-8935-8936\nC17.0 - Duodenum\nC17.1 - Jejunum\nC17.2 - Ileum (excludes ileocecal valve C18.0)\nC17.3 - Meckel diverticulum (site of neoplasm)\nC17.8 - Overlapping lesion of small intestine\nC17.9 - Small intestine, NOS\n\n**Note**: The histologies included in this schema were not staged with AJCC 6th Edition. Therefore, the algorithm will not derive an AJCC 6th TNM or stage group.",
- "schema_num" : 48,
- "schema_selection_table" : "schema_selection_gist_small_intestine",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aps",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfd",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hce",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "Mitotic Count",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_oph",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf7",
- "name" : "KIT Gene Immunohistochemistry (IHC)",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sre",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf8",
- "name" : "KIT Gene Mutations",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_srf",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "PDGFRA Gene Mutation",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_srg",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "Tumor Multiplicity",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_srh",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "48"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfd",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfb",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hce",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tql",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "mitotic_rate_calculation_xqe",
- "inputs" : [ "ssf6" ],
- "outputs" : [ "mitotic_rate" ]
- }, {
- "id" : "ajcc7_stage_upy",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "mitotic_rate", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tql",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "mets_hce", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "extension_bfd", "histology", "cs_input_version_original", "ajcc7_inclusions_tql", "ssf22_snq", "lvi", "ssf6_oph", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "mitotic_rate_calculation_xqe", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upy", "grade", "summary_stage_rpa", "schema_selection_gist_small_intestine", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf10_srh", "nodes_dfb", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_sre", "ssf11_snf", "ssf3_lna", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "size_aps", "ajcc6_stage_codes", "extension_eval_cpb", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_srg", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "extension_size_ajcc7_xef", "ssf8_srf", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:16.305Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_stomach.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_stomach.json
deleted file mode 100644
index 613968942..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gist_stomach.json
+++ /dev/null
@@ -1,1159 +0,0 @@
-{
- "id" : "gist_stomach",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GISTStomach",
- "title" : "Gastrointestinal Stromal Tumor of Stomach",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF8, SSF9, SSF10\n\nM-8935-8936\nC16.0 - Cardia of stomach\nC16.1 - Fundus of stomach\nC16.2 - Body of stomach\nC16.3 - Gastric antrum\nC16.4 - Pylorus\nC16.5 - Lesser curvature of stomach, NOS\nC16.6 - Greater curvature of stomach, NOS\nC16.8 - Overlapping lesion of stomach\nC16.9 - Stomach, NOS\n\n**Note**: The histologies included in this schema were not staged with AJCC 6th Edition. Therefore, the algorithm will not derive an AJCC 6th TNM or stage group.",
- "schema_num" : 45,
- "schema_selection_table" : "schema_selection_gist_stomach",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aax",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfc",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbm",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "Mitotic Count",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_oph",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf7",
- "name" : "KIT Gene Immunohistochemistry (IHC)",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sre",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION" ]
- }, {
- "key" : "ssf8",
- "name" : "KIT Gene Mutations",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_srf",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "PDGFRA Gene Mutation",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_srg",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "Tumor Multiplicity",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_srh",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "45"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfc",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "mitotic_rate_calculation_xqe",
- "inputs" : [ "ssf6" ],
- "outputs" : [ "mitotic_rate" ]
- }, {
- "id" : "ajcc7_stage_uap",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "mitotic_rate", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpo",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "mets_hcd", "ajcc7_stage_uap", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "size_aax", "ssf22_snq", "lvi", "ssf6_oph", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "mitotic_rate_calculation_xqe", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "extension_bfc", "ssf17_snl", "ajcc_descriptor_codes", "grade", "ajcc7_inclusions_tpo", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf10_srh", "nodes_dfa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_sre", "ssf11_snf", "ssf3_lna", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf1_jbm", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "extension_eval_cpb", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_srg", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "schema_selection_gist_stomach", "nodes_eval_epc", "cs_year_validation", "extension_size_ajcc7_xed", "ssf24_sns", "ssf8_srf", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:16.429Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_lower.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_lower.json
deleted file mode 100644
index ca997e6d0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_lower.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "gum_lower",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GumLower",
- "title" : "Gum, Lower and Retromolar Area (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC03.1 - Lower gum\nC06.2 - Retromolar area (gingiva, trigone)",
- "schema_num" : 13,
- "schema_selection_table" : "schema_selection_gum_lower",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdl",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddh",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "13"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdl",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddh",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "nodes_ddh", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "schema_selection_gum_lower", "nodes_exam_gpa", "size_apc", "extension_size_xpb", "ajcc6_n_codes", "extension_bdl", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:16.574Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_other.json
deleted file mode 100644
index 487346810..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_other.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "gum_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GumOther",
- "title" : "Gum, NOS (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC03.9 - Gum, NOS",
- "schema_num" : 15,
- "schema_selection_table" : "schema_selection_gum_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdn",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dad",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "15"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdn",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dad",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "extension_size_xjg", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "nodes_dad", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "schema_selection_gum_other", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "behavior", "extension_bdn", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:16.735Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_upper.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_upper.json
deleted file mode 100644
index 159671ea2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/gum_upper.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "gum_upper",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "GumUpper",
- "title" : "Gum, Upper (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC03.0 - Upper gum",
- "schema_num" : 11,
- "schema_selection_table" : "schema_selection_gum_upper",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdm",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddi",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "11"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdm",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddi",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "nodes_ddi", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "schema_selection_gum_upper", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "extension_size_xpb", "extension_bdm", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:16.875Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/heart_mediastinum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/heart_mediastinum.json
deleted file mode 100644
index 613ab8388..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/heart_mediastinum.json
+++ /dev/null
@@ -1,1212 +0,0 @@
-{
- "id" : "heart_mediastinum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "HeartMediastinum",
- "title" : "Heart, Mediastinum",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF4\n\nC38.0 - Heart\nC38.1 - Anterior mediastinum\nC38.2 - Posterior mediastinum\nC38.3 - Mediastinum, NOS\nC38.8 - Overlapping lesion of heart, mediastinum and pleura",
- "schema_num" : 92,
- "schema_selection_table" : "schema_selection_heart_mediastinum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apu",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbt",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbk",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Grade for Sarcomas",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpm",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Neurovascular Invasion",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpk",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Bone Invasion",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpk",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Pathologic M1: Source of Pathologic Metastatic Specimen",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpf",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "92"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbt",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbk",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tps",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf1_jpm",
- "inputs" : [ "ssf1" ],
- "outputs" : [ "grade_ssf1" ]
- }, {
- "id" : "ajcc7_stage_upm",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "grade_ssf1", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tps",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpi",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppc", "ajcc7_inclusions_tps", "extension_bbt", "ssf3_lpk", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpm", "histology", "cs_input_version_original", "mets_hpc", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_size_xqj", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upm", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "nodes_dbk", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "schema_selection_heart_mediastinum", "ajcc6_n_codes", "ssf2_kpk", "behavior", "ssf10_sne", "ssf18_snm", "ajcc6_stage_qpi", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "size_apu", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ssf4_mpf", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:17.038Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/heme_retic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/heme_retic.json
deleted file mode 100644
index 083ac9727..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/heme_retic.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "heme_retic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "HemeRetic",
- "title" : "Hematopoietic, Reticuloendothelial, Immunoproliferative, and Myeloproliferative Neoplasms",
- "notes" : "* M-See list of specific histologies below. All primary sites (C00.0-C80.9) are included unless otherwise specified.\n \n* Schema includes only preferred terms from ICD-O-3.\n\n* Plasmacytomas (9731 and 9734) and Multiple Myeloma (9732), except for cases with primary site C441, C690 and C695-C696, have been moved to the MyelomaPlasmaCellDisorder schema in V0203.\n9733 - Plasma cell leukemia [except C441, C690, C695-C696]\n9740 - Mast cell sarcoma\n9741 - Malignant mastocytosis\n9742 - Mast cell leukemia\n9750 - Malignant histiocytosis\n9752 - Langerhans cell histiocytosis, unifocal\\* (see new reportable code 9751/3)\n9753 - Langerhans cell histiocytosis, multifocal\\* (see new reportable code 9751/3)\n9754 - Langerhans cell histiocytosis disseminated\n9755 - Histiocytic sarcoma\n9756 - Langerhans cell sarcoma\n9757 - Interdigitating dendritic cell sarcoma\n9758 - Follicular dendritic cell sarcoma\n9760 - Immunoproliferative disease, NOS\n9761 - Waldenstrom macroglobulinemia\n9762 - Heavy chain disease, NOS\n9764 - Immunoproliferative small intestinal disease\n9765 - Monoclonal gammopathy of undetermined significance\\*\n9766 - Angiocentric immunoproliferative lesion\\*\n9767 - Angioimmunoblastic lymphadenopathy\\*\n9768 - T-gamma lymphoproliferative disease\\*\n9769 - Immunoglobulin deposition disease\\*\n9800 - Leukemia, NOS\n9801 - Acute leukemia, NOS\n9805 - Acute biphenotypic leukemia\n9820 - Lymphoid leukemia, NOS [except C441, C690, C695-C696]\n9823 - B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma [C420, C421, or C424 ONLY]\n9826 - Burkitt cell leukemia leukemia [except C441, C690, C695-C696]\n9827 - Adult T-cell leukemia/lymphoma (HTLV-1 positive)[C420, C421, or C424 ONLY]\n9832 - Prolymphocytic leukemia, NOS [except C441, C690, C695-C696]\n9833 - Prolymphocytic leukemia, B-cell type [except C441, C690, C695-C696]\n9834 - Prolymphocytic leukemia, T-cell type [except C441, C690, C695-C696]\n9835 - Precursor cell lymphoblastic leukemia, NOS [except C441, C690, C695-C696]\n9836 - Precursor B-cell lymphoblastic leukemia [except C441, C690, C695-C696]\n9837 - Precursor T-cell lymphoblastic leukemia [see 9837 below, new definition]\n9840 - Acute myeloid leukemia, M6 type\n9860 - Myeloid leukemia, NOS\n9861 - Acute myeloid leukemia, NOS\n9863 - Chronic myeloid leukemia\n9866 - Acute promyelocytic leukemia\n9867 - Acute myelomonocytic leukemia\n9870 - Acute basophilic leukemia\n9871 - Acute myeloid leukemia with abnormal marrow, eosinophils\n9872 - Acute myeloid leukemia, minimal differentiation\n9873 - Acute myeloid leukemia without maturation\n9874 - Acute myeloid leukemia with maturation\n9875 - Chronic myelogenous leukemia, BCR/ABL positive\n9876 - Atypical chronic myeloid leukemia BCR/ABL negative\n9891 - Acute monocytic leukemia\n9895 - Acute myeloid leukemia with multilineage dysplasia\n9896 - Acute myeloid leukemia, t(8;21)(q22;q22)\n9897 - Acute myeloid leukemia, 11q23 abnormalities\n9910 - Acute megakaryoblastic leukemia\n9920 - Therapy-related acute myeloid leukemia, NOS\n9930 - Myeloid sarcoma\n9931 - Acute panmyelosis with myelofibrosis\n9940 - Hairy cell leukemia\n9945 - Chronic myelomonocytic leukemia, NOS\n9946 - Juvenile myelomonocytic leukemia\n9948 - Aggressive NK-cell leukemia\n9950 - Polycythemia (rubra) vera\n9960 - Chronic myeloproliferative disease, NOS\n9961 - Myelosclerosis with myeloid metaplasia\n9962 - Essential thrombocythemia\n9963 - Chronic neutrophilic leukemia\n9964 - Hypereosinophilic syndrome\n9970 - Lymphoproliferative disorder, NOS\\*\n9975 - Myeloproliferative disease, NOS\\*\n9980 - Refractory anemia, NOS\n9982 - Refractory anemia with sideroblasts\n9983 - Refractory anemia with excess blasts\n9984 - Refractory anemia with excess blasts in transformation\n9985 - Refractory cytopenia with multilineage dysplasia\n9986 - Myelodysplastic syndrome with 5q deletion (5q-) syndrome\n9987 - Therapy-related myelodysplastic syndrome, NOS\n9989 - Myelodysplastic syndrome, NOS\n\n\n* The following ICD-O codes were added to the reportable list for Hematopoietic diseases. These are from the \"WHO Classification of Tumours of Haematopoietic and Lymphoid Tissues, 3rd edition\" publication, which was released in 2008. These new codes have been incorporated into the new Hematopoietic and Lymphoid Neoplasm MP/H rules. Use these only for cases diagnosed on January 1, 2010 and forward.\n9751 - Langerhans cell histiocytosis, NOS\n9806 - Mixed phenotype acute leukemia with t(9;22(q34;q11.2); BCR-ABL1\n9807 - Mixed phenotype acute leukemia with t(v;11q23); MLL, rearranged\n9808 - Mixed phenotype acute leukemia, B/myeloid, NOS\n9809 - Mixed phenotype acute leukemia, T/myeloid, NOS\n9811 - B lymphoblastic leukemia/lymphoma, NOS [C420, C421, or C424 ONLY]\n9812 - B lymphoblastic leukemia/lymphoma with t(9;22))q34;q11.2); BCR-ABL1 [C420, C421, or C424 ONLY]\n9813 - B lymphoblastic leukemia/lymphoma with t(v;11q23); MLL rearranged [C420, C421, or C424 ONLY]\n9814 - B lymphoblastic leukemia/lymphoma with t(12;21)(p13;q22); TEL-AML1 (ETV6-RUNX1) [C420, C421, or C424 ONLY]\n9815 - B lymphoblastic/lymphoma with hyperdiploidy[C420, C421, or C424 ONLY]\n9816 - B lymphoblastic/lymphoma with hypodiploidy (hypodiploid ALL) [C420, C421, or C424 ONLY]\n9817 - B lymphoblastic/lymphoma with t(5;14)(q31;q32); IL3-IGH [C420, C421, or C424 ONLY]\n9818 - B lymphoblastic/lymphoma with t(1;19)(q23;p13.3); E2A PBX1 (TCF3 PBX1) [C420, C421, or C424 ONLY]\n9831 - T-cell large granular lymphocytic leukemia [except C441, C690, C695-C696]\n9837 - T lymphoblastic leukemia/lymphoma [C420, C421, or C424 ONLY]\n9865 - Acute myeloid leukemia with t(6;9)([23;q34) DEK-NUP214\n9869 - Acute myeloid leukemia with inv(3)(q21q26.2) or t(3;3)(q21;q26;2); RPN1EVI1\n9898 - Myeloid leukemia associated with Down Syndrome\n9911 - Acute myeloid leukemia (megakaryoblastic) with t(1;22)(p13;q13); RBM15-MKL1\n9965 - Myeloid and lymphoid neoplasms with PDGFRA rearrangement\n9966 - Myeloid neoplasm with PDGFRB rearrangement\n9967 - Myeloid and lymphoid neoplasm with FGFR1 abnormalities\n9971 - Polymorphic PTLD\n9975 - Myeloproliferative neoplasm, unclassifiable\n9991 - Refractory neutropenia\n9992 - Refractory thrombocytopenia\n\n\\*Usually considered of uncertain/borderline behavior\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 151,
- "schema_selection_table" : "schema_selection_heme_retic",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_ana",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bci",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "988",
- "table" : "nodes_dna",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fna",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gna",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "98",
- "table" : "mets_hna",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "JAK2 (also known as Janus Kinase 2 and JAK2 Exon 12)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jbt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "151"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bci",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dna",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hna",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "size_ana", "cs_input_version_original", "nodes_exam_gna", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "schema_selection_heme_retic", "ssf17_snl", "ajcc_descriptor_codes", "nodes_pos_fna", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "ajcc6_n_codes", "mets_hna", "behavior", "nodes_dna", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf1_jbt", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "extension_bci", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:17.210Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/hypopharynx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/hypopharynx.json
deleted file mode 100644
index af6161c59..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/hypopharynx.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "hypopharynx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Hypopharynx",
- "title" : "Pyriform Sinus, Hypopharynx, Laryngopharynx (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC12.9 - Pyriform sinus\nC13.0 - Postcricoid region\nC13.1 - Hypopharyngeal aspect of aryepiglottic fold\nC13.2 - Posterior wall of hypopharynx\nC13.8 - Overlapping lesion of hypopharynx\nC13.9 - Hypopharynx, NOS (laryngopharynx)",
- "schema_num" : 37,
- "schema_selection_table" : "schema_selection_hypopharynx",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aay",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bar",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dco",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_spd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "37"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bar",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dco",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "nodes_dco", "cs_input_version_original", "mets_hpb", "size_aay", "ssf22_snq", "lvi", "ssf14_sni", "extension_bar", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "schema_selection_hypopharynx", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_size_xbq", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:17.408Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ids.txt b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ids.txt
deleted file mode 100644
index 028efd8f9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ids.txt
+++ /dev/null
@@ -1,153 +0,0 @@
-adnexa_uterine_other
-adrenal_gland
-ampulla_vater
-anus
-appendix
-bile_ducts_distal
-bile_ducts_intrahepat
-bile_ducts_perihilar
-biliary_other
-bladder
-bone
-brain
-breast
-buccal_mucosa
-carcinoid_appendix
-cervix
-cns_other
-colon
-conjunctiva
-corpus_adenosarcoma
-corpus_carcinoma
-corpus_sarcoma
-cystic_duct
-digestive_other
-endocrine_other
-epiglottis_anterior
-esophagus
-esophagus_gejunction
-eye_other
-fallopian_tube
-floor_mouth
-gallbladder
-genital_female_other
-genital_male_other
-gist_appendix
-gist_colon
-gist_esophagus
-gist_peritoneum
-gist_rectum
-gist_small_intestine
-gist_stomach
-gum_lower
-gum_other
-gum_upper
-heart_mediastinum
-heme_retic
-hypopharynx
-ill_defined_other
-intracranial_gland
-kaposi_sarcoma
-kidney_parenchyma
-kidney_renal_pelvis
-lacrimal_gland
-lacrimal_sac
-larynx_glottic
-larynx_other
-larynx_subglottic
-larynx_supraglottic
-lip_lower
-lip_other
-lip_upper
-liver
-lung
-lymphoma
-lymphoma_ocular_adnexa
-melanoma_buccal_mucosa
-melanoma_choroid
-melanoma_ciliary_body
-melanoma_conjunctiva
-melanoma_epiglottis_anterior
-melanoma_eye_other
-melanoma_floor_mouth
-melanoma_gum_lower
-melanoma_gum_other
-melanoma_gum_upper
-melanoma_hypopharynx
-melanoma_iris
-melanoma_larynx_glottic
-melanoma_larynx_other
-melanoma_larynx_subglottic
-melanoma_larynx_supraglottic
-melanoma_lip_lower
-melanoma_lip_other
-melanoma_lip_upper
-melanoma_mouth_other
-melanoma_nasal_cavity
-melanoma_nasopharynx
-melanoma_oropharynx
-melanoma_palate_hard
-melanoma_palate_soft
-melanoma_pharynx_other
-melanoma_sinus_ethmoid
-melanoma_sinus_maxillary
-melanoma_sinus_other
-melanoma_skin
-melanoma_tongue_anterior
-melanoma_tongue_base
-merkel_cell_penis
-merkel_cell_scrotum
-merkel_cell_skin
-merkel_cell_vulva
-middle_ear
-mouth_other
-mycosis_fungoides
-myeloma_plasma_cell_disorder
-nasal_cavity
-nasopharynx
-net_ampulla
-net_colon
-net_rectum
-net_small_intestine
-net_stomach
-orbit
-oropharynx
-ovary
-palate_hard
-palate_soft
-pancreas_body_tail
-pancreas_head
-pancreas_other
-parotid_gland
-penis
-peritoneum
-peritoneum_female_gen
-pharyngeal_tonsil
-pharynx_other
-placenta
-pleura
-prostate
-rectum
-respiratory_other
-retinoblastoma
-retroperitoneum
-salivary_gland_other
-scrotum
-sinus_ethmoid
-sinus_maxillary
-sinus_other
-skin
-skin_eyelid
-small_intestine
-soft_tissue
-stomach
-submandibular_gland
-testis
-thyroid
-tongue_anterior
-tongue_base
-trachea
-urethra
-urinary_other
-vagina
-vulva
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ill_defined_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ill_defined_other.json
deleted file mode 100644
index c288df928..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ill_defined_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "ill_defined_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "IllDefinedOther",
- "title" : "Other and Ill-Defined Sites, Unknown Primary Site",
- "notes" : "M-8000-9136,9141-9582,9700-9701\nC42.0 - Blood\nC42.1 - Bone marrow\nC42.2 - Spleen\nC42.3 - Reticuloendothelial system, NOS\nC42.4 - Hematopoietic system, NOS\nC76.0 - Head, face or neck, NOS\nC76.1 - Thorax, NOS\nC76.2 - Abdomen, NOS\nC76.3 - Pelvis, NOS\nC76.4 - Upper limb, NOS\nC76.5 - Lower limb, NOS\nC76.7 - Other ill-defined sites\nC76.8 - Overlapping lesion of ill-defined sites\nC77.0 - Lymph nodes of head, face and neck\nC77.1 - Lymph nodes of intrathoracic\nC77.2 - Lymph nodes of intra-abdominal\nC77.3 - Lymph nodes of axilla or arm\nC77.4 - Lymph nodes of inguinal region or leg\nC77.5 - Lymph nodes of pelvis\nC77.8 - Lymph nodes of multiple regions\nC77.9 - Lymph nodes, NOS\nC80.9 - Unknown primary site\n\n**Note 1**: AJCC does not define TNM staging for these sites.\n\n**Note 2**: Excludes hematopoietic, reticuloendothelial, immunoproliferative and myeloproliferative neoplasms, Hodgkin and non-Hodgkin lymphomas, and Kaposi sarcoma.",
- "schema_num" : 153,
- "schema_selection_table" : "schema_selection_ill_defined_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "988",
- "table" : "extension_bna",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "988",
- "table" : "nodes_dna",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fna",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gna",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "98",
- "table" : "mets_hna",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "153"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bna",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dna",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hna",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "nodes_exam_gna", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_bna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "nodes_pos_fna", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "schema_selection_ill_defined_other", "ssf6_ona", "size_apa", "ajcc6_n_codes", "mets_hna", "behavior", "nodes_dna", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:17.555Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/intracranial_gland.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/intracranial_gland.json
deleted file mode 100644
index 1664fb362..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/intracranial_gland.json
+++ /dev/null
@@ -1,1119 +0,0 @@
-{
- "id" : "intracranial_gland",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "IntracranialGland",
- "title" : "Pituitary Gland, Craniopharyngeal Duct, and Pineal Gland",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2\n\nC75.1 - Pituitary gland\nC75.2 - Craniopharyngeal duct\nC75.3 - Pineal Gland\n\n**Note**: AJCC does not define TNM staging for this schema.",
- "schema_num" : 145,
- "schema_selection_table" : "schema_selection_intracranial_gland",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfy",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "988",
- "table" : "nodes_dfu",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fna",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gna",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "World Health Organization (WHO) Grade Classification",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpo",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_CLINICALLY_SIGNIFICANT", "NPCR_REQUIRED_BY_NPCR_2011_FORWARD", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Ki-67/MIB-1 Labeling Index (LI): Brain",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpl",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "145"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfy",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfu",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bfy", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf1_jpo", "cs_input_version_original", "mets_hpa", "nodes_exam_gna", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "nodes_pos_fna", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "schema_selection_intracranial_gland", "ssf6_ona", "size_apa", "ajcc6_n_codes", "ssf2_kpl", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "nodes_dfu", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:17.696Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kaposi_sarcoma.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kaposi_sarcoma.json
deleted file mode 100644
index 15ff87a38..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kaposi_sarcoma.json
+++ /dev/null
@@ -1,1117 +0,0 @@
-{
- "id" : "kaposi_sarcoma",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "KaposiSarcoma",
- "title" : "Kaposi Sarcoma of All Sites",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF4\n\nM-9140\n\n**Note**: This scheme cannot be compared to either the Historic Stage or the 1977 Summary Stage schemes.",
- "schema_num" : 149,
- "schema_selection_table" : "schema_selection_kaposi_sarcoma",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_ana",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcj",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dby",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "98",
- "table" : "mets_hna",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Associated with HIV/AIDS",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpj",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Systemic Symptoms at Diagnosis",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kbv",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Ulceration and Edema",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_laz",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CD4 Cell Count",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mbh",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "149"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcj",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dby",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hna",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf25_snt", "ssf4_mbh", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpj", "histology", "size_ana", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf2_kbv", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "schema_selection_kaposi_sarcoma", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf3_laz", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "mets_hna", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_dby", "extension_bcj", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:17.822Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kidney_parenchyma.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kidney_parenchyma.json
deleted file mode 100644
index 4906f1252..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kidney_parenchyma.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "kidney_parenchyma",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "KidneyParenchyma",
- "title" : "Kidney (Renal Parenchyma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF5, SSF7\n\nC64.9 - Kidney, NOS (Renal parenchyma)\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 126,
- "schema_selection_table" : "schema_selection_kidney_parenchyma",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aao",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbp",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbg",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcg",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Invasion Beyond Capsule",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jbd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Vein Involvement",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kar",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "Ipsilateral Adrenal Gland Involvement",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lah",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Sarcomatoid Features",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mam",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Histologic Tumor Necrosis",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nai",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Fuhrman Nuclear Grade",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_oaf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sbx",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extranodal Extension of Regional Lymph Nodes",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "999",
- "table" : "ssf8_sby",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "126"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbp",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbg",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcg",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uaw",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qal",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bbp", "ajcc7_stage_uaw", "ajcc6_exclusions_ppd", "ssf2_kar", "ssf25_snt", "mets_hcg", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "size_aao", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "extension_size_table_ajcc7_xek", "ajcc_tdescriptor_cleanup", "ssf4_mam", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ajcc6_stage_qal", "ssf16_snk", "ssf6_oaf", "ajcc6_t_codes", "nodes_pos_fpa", "extension_size_table_ajcc6_xal", "ajcc_mdescriptor_cleanup", "ssf11_snf", "nodes_dbg", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "ssf8_sby", "ssf1_jbd", "ssf3_lah", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf7_sbx", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf5_nai", "ssf12_sng", "schema_selection_kidney_parenchyma" ],
- "last_modified" : "2020-06-30T19:47:17.990Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kidney_renal_pelvis.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kidney_renal_pelvis.json
deleted file mode 100644
index d791f1923..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/kidney_renal_pelvis.json
+++ /dev/null
@@ -1,1210 +0,0 @@
-{
- "id" : "kidney_renal_pelvis",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "KidneyRenalPelvis",
- "title" : "Renal Pelvis and Ureter",
- "notes" : "C65.9 - Renal pelvis\nC66.9 - Ureter\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 127,
- "schema_selection_table" : "schema_selection_kidney_renal_pelvis",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbn",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbe",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpe",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "WHO/ISUP Grade",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Depth of Renal Parenchymal Invasion",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kaj",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "127"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbn",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbe",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpe",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upz",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qao",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "ssf25_snt", "ssf1_jpd", "ssf2_kaj", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "extension_bbn", "ssf22_snq", "mets_hpe", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upz", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc6_stage_qao", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "nodes_dbe", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "schema_selection_kidney_renal_pelvis", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:18.133Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lacrimal_gland.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lacrimal_gland.json
deleted file mode 100644
index 35569b1f5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lacrimal_gland.json
+++ /dev/null
@@ -1,1214 +0,0 @@
-{
- "id" : "lacrimal_gland",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LacrimalGland",
- "title" : "Lacrimal Gland (excluding Lymphoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1, SSF2, SSF3, SSF5, SSF7\n\nC69.5 - Lacrimal gland [excluding lacrimal sac, lacrimal duct] \n\n**Note 1**: CS Site-Specific Factor 25 is used to discriminate between lacrimal gland, staged by AJCC, and lacrimal sac, not staged by AJCC. Both sites are coded to ICD-O-3 code C69.5.\n\n**Note 2**: Laterality must be coded for this site.",
- "schema_num" : 138,
- "schema_selection_table" : "schema_selection_lacrimal_gland",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aan",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bct",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Ki-67/MIB-1 Labeling Index (LI): Ophthalmic",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbj",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Nuclear NM23 Staining",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kax",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Clinical Evaluation of Lymph Nodes",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lba",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Perineural Invasion",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_maj",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Carcinoma ex Pleomorphic Adenoma, Invasion Beyond Capsule",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nah",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Adenoid Cystic Carcinoma - Presence of Basaloid Pattern",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_oae",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Mucoepidermoid Carcinoma - Grade",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sbv",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Orbital Bone",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "999",
- "table" : "ssf8_sfk",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Lacrimal Gland/Lacrimal Sac",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "015",
- "table" : "ssf25_spp",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "138"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bct",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spp",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_unb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spp",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qnb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kax", "ajcc6_exclusions_ppd", "ajcc7_stage_unb", "ssf15_snj", "ajcc7_t_codes", "size_aan", "ssf23_snr", "nodes_dpa", "histology", "cs_input_version_original", "mets_hpc", "ssf22_snq", "lvi", "ssf14_sni", "schema_selection_lacrimal_gland", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qnb", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf4_maj", "ssf25_spp", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf6_oae", "ssf3_lba", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf8_sfk", "ssf11_snf", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf1_jbj", "ssf10_sne", "extension_bct", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf7_sbv", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "extension_size_ajcc7_xej", "cs_year_validation", "ssf5_nah", "extension_size_ajcc6_xat", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:18.325Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lacrimal_sac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lacrimal_sac.json
deleted file mode 100644
index 2065ffb41..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lacrimal_sac.json
+++ /dev/null
@@ -1,1176 +0,0 @@
-{
- "id" : "lacrimal_sac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LacrimalSac",
- "title" : "Lacrimal Sac (excluding Lymphoma)",
- "notes" : "C69.5 - Lacrimal sac, lacrimal duct \n\n**Note 1**: CS Site-Specific Factor 25 is used to discriminate between lacrimal gland, staged by AJCC, and lacrimal sac, not staged by AJCC. Both sites are coded to ICD-O-3 code C69.5.\n\n**Note 2**: Laterality must be coded for this site.",
- "schema_num" : 139,
- "schema_selection_table" : "schema_selection_lacrimal_sac",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aaz",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_btb",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cal",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dex",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eaj",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hca",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_iae",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Lacrimal Gland/Lacrimal Sac",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "015",
- "table" : "ssf25_spp",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "139"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_btb",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cal",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_ajcc_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cal",
- "output_mapping" : [ {
- "from" : "staging_basis_ajcc_6",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "tdescriptor", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dex",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eaj",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_ajcc_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eaj",
- "output_mapping" : [ {
- "from" : "staging_basis_ajcc_6",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hca",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_iae",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_iae",
- "output_mapping" : [ {
- "from" : "staging_basis_6",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spp",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpj",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "size_aaz", "ssf22_snq", "schema_selection_lacrimal_sac", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "mets_eval_iae", "ajcc_descriptor_codes", "mets_hca", "ssf25_spp", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "extension_eval_cal", "ajcc_ndescriptor_cleanup", "ssf16_snk", "nodes_eval_eaj", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "nodes_dex", "ssf10_sne", "ssf18_snm", "extension_size_ajcc6_xea", "extension_btb", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "ajcc6_stage_qpj", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:18.463Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_glottic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_glottic.json
deleted file mode 100644
index a8031dcf2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_glottic.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "larynx_glottic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LarynxGlottic",
- "title" : "Glottic Larynx (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC32.0 - Glottis",
- "schema_num" : 82,
- "schema_selection_table" : "schema_selection_larynx_glottic",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bat",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcp",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "82"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bat",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcp",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubk",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbl",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "nodes_dcp", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_bat", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ajcc6_stage_qbl", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "schema_selection_larynx_glottic", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "ajcc7_stage_ubk", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:18.609Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_other.json
deleted file mode 100644
index 84d4d04fb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_other.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "larynx_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LarynxOther",
- "title" : "Laryngeal Cartilage, Overlapping Lesion of Larynx, and Larynx, NOS (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC32.3 - Laryngeal cartilage\nC32.8 - Overlapping lesion of larynx\nC32.9 - Larynx, NOS\n\n**Note**: AJCC 7 TNM staging will be derived for primary site codes of C32.8 and C32.9 only",
- "schema_num" : 88,
- "schema_selection_table" : "schema_selection_larynx_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_baw",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcr",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "88"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_baw",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcr",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqm",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqm",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "nodes_dcr", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "ajcc7_inclusions_tqm", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "extension_baw", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "schema_selection_larynx_other", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:18.743Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_subglottic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_subglottic.json
deleted file mode 100644
index 1150de150..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_subglottic.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "larynx_subglottic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LarynxSubglottic",
- "title" : "Subglottic Larynx (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC32.2 - Subglottis",
- "schema_num" : 86,
- "schema_selection_table" : "schema_selection_larynx_subglottic",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bav",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dap",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "86"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bav",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dap",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_bav", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_larynx_subglottic", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_dap", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:18.891Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_supraglottic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_supraglottic.json
deleted file mode 100644
index a31551547..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/larynx_supraglottic.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "larynx_supraglottic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LarynxSupraglottic",
- "title" : "Supraglottic Larynx (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC32.1 - Supraglottis\n\n**Note**: Excludes Anterior Surface of Epiglottis - see separate schema (C10.1).",
- "schema_num" : 84,
- "schema_selection_table" : "schema_selection_larynx_supraglottic",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bau",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcq",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "84"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bau",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcq",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "nodes_dcq", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_bau", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "schema_selection_larynx_supraglottic", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:19.052Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_lower.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_lower.json
deleted file mode 100644
index f78e2f9e7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_lower.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "lip_lower",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LipLower",
- "title" : "Lip, Lower (excluding Malignant Melanoma)",
- "subtitle" : "Lip (Vermilion or Labial Mucosa)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC00.1 - External lower lip (vermilion)\nC00.4 - Mucosa of lower lip\nC00.6 - Commissure of lip",
- "schema_num" : 3,
- "schema_selection_table" : "schema_selection_lip_lower",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bab",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_daa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "3"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bab",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_daa",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "nodes_daa", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "extension_bab", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "extension_size_xpa", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "schema_selection_lip_lower", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:19.213Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_other.json
deleted file mode 100644
index 3cc5ec69c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_other.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "lip_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LipOther",
- "title" : "Other Lip (excluding Malignant Melanoma)",
- "subtitle" : "Lip (Vermilion or Labial Mucosa)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC00.2 - External lip, NOS (vermilion)\nC00.5 - Mucosa of lip, NOS\nC00.8 - Overlapping lesion of lip\nC00.9 - Lip, NOS (excludes skin of lip C44.0)\n\n**Note**: AJCC includes labial mucosa (C00.5) with buccal mucosa (C06.0)",
- "schema_num" : 5,
- "schema_selection_table" : "schema_selection_lip_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdj",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddg",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "5"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdj",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddg",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "extension_size_xjh", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "nodes_ddg", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "schema_selection_lip_other", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "extension_bdj", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:19.364Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_upper.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_upper.json
deleted file mode 100644
index dcd869b1d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lip_upper.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "lip_upper",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LipUpper",
- "title" : "Lip, Upper (excluding Malignant Melanoma)",
- "subtitle" : "Lip (Vermilion or Labial Mucosa)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC00.0 - External upper lip (vermilion)\nC00.3 - Mucosa of upper lip",
- "schema_num" : 1,
- "schema_selection_table" : "schema_selection_lip_upper",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdc",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddd",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "1"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdc",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddd",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "nodes_ddd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "extension_size_xpa", "ss_codes", "extension_bdc", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "lymph_nodes_size_xja", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "schema_selection_lip_upper", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:19.563Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/liver.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/liver.json
deleted file mode 100644
index 1124687c8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/liver.json
+++ /dev/null
@@ -1,1210 +0,0 @@
-{
- "id" : "liver",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Liver",
- "title" : "Liver",
- "notes" : "C22.0 - Liver\nC22.1 - Intrahepatic bile duct \n\n**Note 1**: For C22.0, the Liver schema includes only M-8000-8157,8162-8175,8190-9136,9141-9582, and 9700-9701. For cholangiocarcinoma (M-8160,8161, and 8180), see BileDuctsIntraHepat schema.\n\n**Note 2**: For C22.1, the Liver schema includes only M-8170-8175. For other histologies, see BileDuctsIntraHepat schema.\n\n**Note 3**: AJCC 7 TNM staging will be derived for hepatocellular carcinoma only, M-8170-8175 for liver (C22.0).",
- "schema_num" : 60,
- "schema_selection_table" : "schema_selection_liver",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apt",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbc",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dau",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_haf",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Alpha Fetoprotein (AFP) Interpretation",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Fibrosis Score",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf3",
- "name" : "Alpha Fetoprotein (AFP) Lab Value",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lps",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf4",
- "name" : "Creatinine Value",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mal",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf5",
- "name" : "Creatinine Unit of Measure",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nak",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf6",
- "name" : "Total Bilirubin Value",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oag",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf7",
- "name" : "Total Bilirubin Unit of Measure",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_scb",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf8",
- "name" : "International Normalized Ratio for Prothrombin Time (INR)",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_scc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "60"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbc",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpc",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpc",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dau",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_haf",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpn",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubl",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpn",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qcc",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf3_lps", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "extension_bbc", "ssf23_snr", "ssf7_scb", "histology", "cs_input_version_original", "ssf1_jpw", "ssf22_snq", "lvi", "ssf14_sni", "schema_selection_liver", "ssf8_scc", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ssf4_mal", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc7_inclusions_tpn", "ssf6_oag", "lymph_nodes_metsat_dxajcc6_xew", "ajcc6_t_codes", "ajcc6_stage_qcc", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "mets_haf", "ssf11_snf", "ss_codes", "nodes_exam_gpa", "ssf2_kpq", "ajcc6_n_codes", "behavior", "nodes_dau", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "ajcc7_n_codes", "extension_eval_cpc", "ajcc6_stage_codes", "size_apt", "ssf19_snn", "ajcc7_stage_codes", "extension_size_ajcc7_xev", "ssf9_snd", "ssf13_snh", "ssf5_nak", "primary_site", "ajcc7_stage_ubl", "ajcc6_year_validation", "extension_size_ajcc6_xak", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:19.740Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lung.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lung.json
deleted file mode 100644
index edf237a26..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lung.json
+++ /dev/null
@@ -1,1186 +0,0 @@
-{
- "id" : "lung",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lung",
- "title" : "Lung",
- "notes" : "C34.0 - Main bronchus\nC34.1 - Upper lobe, lung\nC34.2 - Middle lobe, lung\nC34.3 - Lower lobe, lung\nC34.8 - Overlapping lesion of lung\nC34.9 - Lung, NOS\n\n**Note**: Laterality must be coded for this site (except carina).",
- "schema_num" : 91,
- "schema_selection_table" : "schema_selection_lung",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aaa",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_baj",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cae",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dai",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eag",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hab",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Separate Tumor Nodules - Ipsilateral Lung",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_sbh",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_BY_NPCR_2010_FORWARD" ]
- }, {
- "key" : "ssf2",
- "name" : "Pleural/Elastic Layer Invasion (PL) by H and E or Elastic Stain",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_sbi",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "91"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_baj",
- "inputs" : [ "year_dx", "extension", "size", "mets", "cs_input_version_original", "ssf1" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cae",
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dai",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eag",
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "determine_correct_table_for_m_ns48",
- "inputs" : [ "extension", "mets", "size", "ssf1" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubq",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_paa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qab",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_paa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "size_extension_mets_ssf1_ajcc6_xjp_t", "size_extension_mets_ssf1_ajcc6_xjt_m", "size_extension_mets_ssf1_ajcc6_xjp_m", "determine_correct_table_for_ajcc7_t_ns43", "size_extension_mets_ssf1_ajcc6_xjx_t", "ssf25_snt", "size_extension_mets_ssf1_ajcc6_xjt_t", "size_extension_mets_ssf1_ajcc6_xjx_m", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "extension_ssf1_summary_stage77_xkc", "extension_ssf1_summary_stage77_xkd", "histology", "cs_input_version_original", "lvi", "ajcc_tdescriptor_cleanup", "ssf1_sbh", "ssf21_snp", "nodes_dai", "extension_mets_ssf1_ajcc6_xjo_m", "ssf17_snl", "extension_eval_cae", "extension_mets_ssf1_ajcc6_xjo_t", "grade", "extension_baj", "determine_correct_table_for_ss77t_ns45", "size_extension_mets_ssf1_ajcc6_xjw_m", "extension_ssf1_summary_stage2000_xkf", "extension_ssf1_summary_stage2000_xke", "size_extension_mets_ssf1_ajcc6_xjs_m", "size_extension_mets_ssf1_ajcc6_xjw_t", "ajcc6_t_codes", "mets_hab", "determine_correct_table_for_ajcc6_tm_ns47", "nodes_pos_fpa", "size_extension_mets_ssf1_ajcc6_xjs_t", "determine_correct_table_for_ajcc6_tm_ns44", "nodes_eval_eag", "ssf11_snf", "ssf3_lna", "ssf6_ona", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "schema_selection_lung", "ajcc6_stage_codes", "ajcc7_stage_codes", "ssf13_snh", "ajcc6_m_codes", "ssf24_sns", "ssf8_snc", "size_extension_mets_ssf1_ajcc6_xjv_m", "size_aaa", "size_extension_mets_ssf1_ajcc6_xjr_m", "ajcc6_stage_qab", "size_extension_mets_ssf1_ajcc6_xjv_t", "size_extension_mets_ssf1_ajcc6_xjr_t", "determine_correct_table_for_ss00t_ns46", "ssf22_snq", "ssf14_sni", "ssf4_mna", "ssf2_sbi", "ajcc7_year_validation", "ajcc7_inclusions_tpb", "ajcc_descriptor_codes", "invalid_lung_m_values_ns49", "size_extension_ssf1_ajcc7_t_xjz", "extension_ssf1_ajcc7_t_xjy", "summary_stage_rpa", "ajcc7_m_codes", "size_extension_ssf1_ajcc7_t_xka", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "size_extension_mets_ssf1_ajcc6_xju_m", "size_extension_mets_ssf1_ajcc6_xjq_m", "size_extension_mets_ssf1_ajcc6_xju_t", "ajcc_mdescriptor_cleanup", "size_extension_mets_ssf1_ajcc6_xjq_t", "ssf7_snb", "ss_codes", "ajcc6_exclusions_paa", "nodes_exam_gpa", "size_metsat_dxajcc7_m_xkb", "ssf10_sne", "ajcc7_n_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_ubq", "ssf9_snd", "primary_site", "ajcc6_year_validation", "determine_correct_table_for_m_ns48", "cs_year_validation", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:20.076Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lymphoma.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lymphoma.json
deleted file mode 100644
index 1b66e0d37..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lymphoma.json
+++ /dev/null
@@ -1,1137 +0,0 @@
-{
- "id" : "lymphoma",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymphoma",
- "title" : "Hodgkin and Non-Hodgkin Lymphomas of All Sites (excluding Mycosis Fungoides and Sezary Disease)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF4, SSF5\n\nM-9590-9699,9702-9729,9735,9737,9738 (EXCEPT C44.1, C69.0, C69.5-C69.6)\nM-9811-9818,9823,9827,9837 (EXCEPT C42.0, C42.1, C42.4, C44.1, C69.0, C69.5-C69.6)",
- "schema_num" : 150,
- "schema_selection_table" : "schema_selection_lymphoma",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_aaf",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bch",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_caf",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "988",
- "table" : "nodes_dna",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eaf",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fna",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gna",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "98",
- "table" : "mets_hna",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_iaa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Associated with HIV/AIDS",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpj",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Systemic Symptoms at Diagnosis",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpg",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "International Prognostic Index (IPI)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lph",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Follicular Lymphoma Prognostic Index (FLIPI)",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpd",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "International Prognostic Score (IPS)",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npe",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "150"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bch",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_caf",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_caf",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dna",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eaf",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eaf",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hna",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_iaa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_iaa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpr",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubw",
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "extension", "ssf2" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpr",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpo",
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "extension", "ssf2" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "size_aaf", "ssf25_snt", "ssf3_lph", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpj", "histology", "cs_input_version_original", "nodes_exam_gna", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "schema_selection_lymphoma", "ssf21_snp", "ssf5_npe", "ssf17_snl", "ajcc_descriptor_codes", "extension_eval_caf", "mets_eval_iaa", "nodes_pos_fna", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_inclusions_tpr", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpg", "ajcc6_t_codes", "nodes_eval_eaf", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "ajcc6_n_codes", "mets_hna", "behavior", "nodes_dna", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc7_stage_ubw", "ajcc6_stage_codes", "ajcc6_stage_qpo", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_bch", "ajcc6_m_codes", "cs_year_validation", "ssf4_mpd", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:20.273Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lymphoma_ocular_adnexa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lymphoma_ocular_adnexa.json
deleted file mode 100644
index 2002de46e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/lymphoma_ocular_adnexa.json
+++ /dev/null
@@ -1,1140 +0,0 @@
-{
- "id" : "lymphoma_ocular_adnexa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LymphomaOcularAdnexa",
- "title" : "Lymphoma of the Ocular Adnexa and Skin of Eyelid",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF4, SSF5, SSF7, SSF8, SSF9, SSF10, SSF11, SSF12, SSF13\n\nM-9590-9699,9702-9738, 9811-9818,9820-9837\nC44.1 - Skin of Eyelid\nC69.0 - Conjunctiva\nC69.5 - Lacrimal Gland\nC69.6 - Orbit\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: Ocular lymphomas are assigned a stage grouping but no TNM values in AJCC 6th Edition staging. Ocular lymphomas are assigned TNM values but no stage grouping in AJCC 7th Edition staging.",
- "schema_num" : 142,
- "schema_selection_table" : "schema_selection_lymphoma_ocular_adnexa",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aaw",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "989",
- "table" : "extension_bez",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cak",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dev",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eai",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hby",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_iad",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Associated with HIV/AIDS",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpj",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Systemic Symptoms at Diagnosis",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpg",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "International Prognostic Index (IPI)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lbc",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Follicular Lymphoma Prognostic Index (FLIPI)",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mbj",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Ki-67/MIB-1 Labeling Index (LI): Ophthalmic",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nac",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Lactate Dehydrogenase (LDH)",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oat",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf7",
- "name" : "Rheumatoid Arthritis",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_saq",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Sjogren Syndrome",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sar",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Other Connective Tissue Disease",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sas",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "Sicca Syndrome",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sat",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Other Viral Infection",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_see",
- "used_for_staging" : false
- }, {
- "key" : "ssf12",
- "name" : "Bacterial Infection",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sef",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "Other infection",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_seg",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "142"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bez",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cak",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cak",
- "output_mapping" : [ {
- "from" : "staging_basis_6",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "tdescriptor", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dev",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eai",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eai",
- "output_mapping" : [ {
- "from" : "staging_basis_6",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hby",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_iad",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_iad",
- "output_mapping" : [ {
- "from" : "staging_basis_6",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpl",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_unb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpl",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "determine_correct_table_for_ajcc6_stg_ns15",
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "extension", "nodes", "mets", "ssf2" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_raa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_raa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_stage_qdy", "ssf13_seg", "summary_stage_raa", "ssf25_snt", "ajcc7_stage_unb", "ssf4_mbj", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpj", "histology", "ssf12_sef", "cs_input_version_original", "size_aaw", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc_tnm6_stage_csv1_xie", "extension_bez", "ssf11_see", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "mets_eval_iad", "determine_correct_table_for_ajcc6_stg_ns15", "grade", "ajcc7_m_codes", "ssf20_sno", "ajcc7_inclusions_tpl", "ajcc_ndescriptor_cleanup", "extension_eval_cak", "ssf16_snk", "mets_hby", "ssf2_kpg", "nodes_eval_eai", "schema_selection_lymphoma_ocular_adnexa", "ssf7_saq", "ssf10_sat", "ssf3_lbc", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_dev", "ssf6_oat", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf9_sas", "ssf19_snn", "ajcc7_stage_codes", "primary_site", "ajcc6_year_validation", "ssf8_sar", "ajcc6_m_codes", "ssf5_nac", "cs_year_validation", "ssf24_sns" ],
- "last_modified" : "2020-06-30T19:47:20.568Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_buccal_mucosa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_buccal_mucosa.json
deleted file mode 100644
index 52e07176b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_buccal_mucosa.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_buccal_mucosa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaBuccalMucosa",
- "title" : "Malignant Melanoma of Buccal Mucosa",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC06.0 - Cheek mucosa\nC06.1 - Vestibule of mouth",
- "schema_num" : 26,
- "schema_selection_table" : "schema_selection_melanoma_buccal_mucosa",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_ben",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dei",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "26"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_ben",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dei",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "nodes_dei", "ajcc7_stage_upu", "ssf5_npa", "grade", "extension_ben", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "schema_selection_melanoma_buccal_mucosa", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:20.701Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_choroid.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_choroid.json
deleted file mode 100644
index 9e7cce687..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_choroid.json
+++ /dev/null
@@ -1,1156 +0,0 @@
-{
- "id" : "melanoma_choroid",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaChoroid",
- "title" : "Malignant Melanoma of Choroid",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF8, SSF14\n\nM-8720-8790\nC69.3 - Choroid\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 136,
- "schema_selection_table" : "schema_selection_melanoma_choroid",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_apb",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bda",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpg",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpq",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Measured Basal Diameter",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpj",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpj",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "Size of Largest Metastasis",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpe",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf5",
- "name" : "Chromosome 3 Status",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Chromosome 6p Status",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_opd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Chromosome 8q Status",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "Gene Expression Profile",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spx",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Mitotic Count",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sqm",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Mean Diameter Nucleoli (MLN)",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spz",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "Extravascular Matrix Patterns, Loops",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sqa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "Extravascular Matrix Patterns, Networks",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sqb",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf13",
- "name" : "Microvascular Density (MVD)",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sqq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf14",
- "name" : "PET Standardized Uptake Values (SUV)",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sqr",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "136"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bda",
- "inputs" : [ "extension", "ssf2", "ssf3" ],
- "outputs" : [ "t77", "t_category", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpg",
- "inputs" : [ "mets", "ssf4" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upv",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpx",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_size_category_ajcc7_xpm", "ssf13_sqq", "ssf12_sqb", "ssf25_snt", "ssf3_lpj", "ssf8_spx", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ajcc6_stage_qpx", "ssf6_opd", "nodes_dpa", "histology", "ssf1_jpq", "cs_input_version_original", "tumor_size_category_ajcc7_xpk", "ssf22_snq", "lvi", "mets_hpg", "ajcc_tdescriptor_cleanup", "schema_selection_melanoma_choroid", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ssf10_spz", "ssf5_npf", "ajcc_descriptor_codes", "ajcc7_stage_upv", "ssf11_sqa", "grade", "summary_stage_rpa", "ssf7_spw", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "tumor_size_pair_ajcc6_xpl", "nodes_exam_gpa", "size_apb", "ajcc6_n_codes", "behavior", "ssf2_kpj", "extension_size_pair_ajcc6_xpn", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "extension_bda", "ssf19_snn", "ajcc7_stage_codes", "size_metastasis_ajcc7_xpx", "ssf9_sqm", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ssf14_sqr", "ssf4_mpe", "cs_year_validation", "ssf24_sns" ],
- "last_modified" : "2020-06-30T19:47:20.868Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_ciliary_body.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_ciliary_body.json
deleted file mode 100644
index 9585fff04..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_ciliary_body.json
+++ /dev/null
@@ -1,1165 +0,0 @@
-{
- "id" : "melanoma_ciliary_body",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaCiliaryBody",
- "title" : "Malignant Melanoma of Ciliary Body (excluding Iris)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF8, SSF14\n\nM-8720-8790\nC69.4 - Ciliary body [excluding iris]\n\n**Note 1**: CS Site-Specific Factor 25 is used to discriminate between tumors arising in the ciliary body and the iris, both coded to C69.4.\n\n**Note 2**: Laterality must be coded for this site.",
- "schema_num" : 135,
- "schema_selection_table" : "schema_selection_melanoma_ciliary_body",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_apb",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfq",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpg",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpq",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Measured Basal Diameter",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpj",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpj",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "Size of Largest Metastasis",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpe",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf5",
- "name" : "Chromosome 3 Status",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Chromosome 6p Status",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_opd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Chromosome 8q Status",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "Gene Expression Profile",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spx",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Mitotic Count",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sqm",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Mean Diameter Nucleoli (MLN)",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spz",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "Extravascular Matrix Patterns, Loops",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sqa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "Extravascular Matrix Patterns, Networks",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sqb",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf13",
- "name" : "Microvascular density (MVD)",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sdg",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf14",
- "name" : "PET Standardized Uptake Values (SUV)",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sdh",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Melanoma Ciliary Body/Melanoma Iris",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "010",
- "table" : "ssf25_sqc",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "135"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfq",
- "inputs" : [ "extension", "ssf2", "ssf3" ],
- "outputs" : [ "t77", "t_category", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpg",
- "inputs" : [ "mets", "ssf4" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqc",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_upv",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqc",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpx",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_size_category_ajcc7_xpm", "ssf12_sqb", "ssf3_lpj", "ssf8_spx", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ajcc6_stage_qpx", "ssf6_opd", "nodes_dpa", "histology", "ssf1_jpq", "cs_input_version_original", "tumor_size_category_ajcc7_xpk", "ssf22_snq", "extension_bfq", "lvi", "mets_hpg", "ajcc_tdescriptor_cleanup", "ssf13_sdg", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ssf10_spz", "ssf5_npf", "ajcc_descriptor_codes", "ajcc7_stage_upv", "ssf11_sqa", "grade", "summary_stage_rpa", "ssf7_spw", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf25_sqc", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "tumor_size_pair_ajcc6_xpl", "schema_selection_melanoma_ciliary_body", "nodes_exam_gpa", "size_apb", "ajcc6_n_codes", "behavior", "ssf2_kpj", "extension_size_pair_ajcc6_xpn", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf14_sdh", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "size_metastasis_ajcc7_xpx", "ssf9_sqm", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ssf4_mpe", "cs_year_validation", "ssf24_sns" ],
- "last_modified" : "2020-06-30T19:47:20.985Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_conjunctiva.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_conjunctiva.json
deleted file mode 100644
index e83d6e902..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_conjunctiva.json
+++ /dev/null
@@ -1,1158 +0,0 @@
-{
- "id" : "melanoma_conjunctiva",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaConjunctiva",
- "title" : "Malignant Melanoma of Conjunctiva",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF3\n\nM-8720-8790\nC69.0 - Conjunctiva\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 132,
- "schema_selection_table" : "schema_selection_melanoma_conjunctiva",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcs",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jby",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Quadrants",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kbi",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Grade - Melanoma Origin",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_law",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "132"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcs",
- "inputs" : [ "extension", "ssf2", "extension_eval", "ssf1" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_unb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qnb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf25_snt", "ajcc7_stage_unb", "ssf15_snj", "ajcc7_t_codes", "ssf2_kbi", "ssf23_snr", "nodes_dpa", "histology", "cs_input_version_original", "mets_hpc", "pathologic_eval_extension_thickness_ajcc6_xbt", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qnb", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "pathologic_eval_extension_thickness_ajcc7_xcb", "grade", "summary_stage_rpa", "ajcc7_m_codes", "eval_extension_t3_ajcc7_xgh", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf3_law", "ssf7_snb", "ssf11_snf", "determine_correct_table_for_ajcc6_t_ns16", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "clinical_eval_extension_thickness_ajcc6_xbw", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "extension_bcs", "mets_eval_ipa", "clinical_eval_extension_quadrants_ajcc7_xca", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "schema_selection_melanoma_conjunctiva", "ssf1_jby", "ssf19_snn", "ajcc7_stage_codes", "determine_correct_table_for_ajcc7_t_ns17", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.124Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_epiglottis_anterior.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_epiglottis_anterior.json
deleted file mode 100644
index bf7f21417..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_epiglottis_anterior.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_epiglottis_anterior",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaEpiglottisAnterior",
- "title" : "Malignant Melanoma of Anterior Surface of Epiglottis",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC10.1 - Anterior surface of epiglottis",
- "schema_num" : 33,
- "schema_selection_table" : "schema_selection_melanoma_epiglottis_anterior",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bed",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddy",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "33"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bed",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddy",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "schema_selection_melanoma_epiglottis_anterior", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "extension_bed", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "nodes_ddy", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.234Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_eye_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_eye_other.json
deleted file mode 100644
index dbae6c111..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_eye_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "melanoma_eye_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaEyeOther",
- "title" : "Malignant Melanoma of Other Eye (excluding Conjunctiva, Choroid, Ciliary Body, and Iris)",
- "notes" : "M-8720-8790\nC69.1 - Cornea\nC69.2 - Retina\nC69.5 - Lacrimal gland\nC69.8 - Overlapping lesion of eye and adnexa\nC69.9 - Eye, NOS\n\n**Note 1**: Laterality must be coded for these sites\n\n**Note 2**: AJCC does not define TNM staging for these sites.\n\n**Note 3**: AJCC includes primary site C69.8 (overlapping lesions of eye and adnexa) in chapter 46, Sarcoma of the Orbit. This schema includes only melanomas of the sites listed above.",
- "schema_num" : 137,
- "schema_selection_table" : "schema_selection_melanoma_eye_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bpb",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cam",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eak",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_iaf",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "137"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bpb",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cam",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cam",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpb",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eak",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eak",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_iaf",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_iaf",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "nodes_dpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "mets_eval_iaf", "ajcc_descriptor_codes", "grade", "extension_eval_cam", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "nodes_eval_eak", "schema_selection_melanoma_eye_other", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "extension_bpb", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.336Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_floor_mouth.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_floor_mouth.json
deleted file mode 100644
index dd0ae7a25..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_floor_mouth.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_floor_mouth",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaFloorMouth",
- "title" : "Malignant Melanoma of Floor of Mouth",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC04.0 - Anterior floor of mouth\nC04.1 - Lateral floor of mouth\nC04.8 - Overlapping lesion of floor of mouth\nC04.9 - Floor of mouth, NOS",
- "schema_num" : 18,
- "schema_selection_table" : "schema_selection_melanoma_floor_mouth",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_beo",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dej",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "18"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_beo",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dej",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "nodes_dej", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "extension_beo", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "schema_selection_melanoma_floor_mouth", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.443Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_lower.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_lower.json
deleted file mode 100644
index 1b28f9d5e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_lower.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_gum_lower",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaGumLower",
- "title" : "Malignant Melanoma of Lower Gum and Retromolar Area",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC03.1 - Lower gum\nC06.2 - Retromolar area",
- "schema_num" : 14,
- "schema_selection_table" : "schema_selection_melanoma_gum_lower",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bep",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dek",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "14"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bep",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dek",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "nodes_dek", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "extension_bep", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "schema_selection_melanoma_gum_lower", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.548Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_other.json
deleted file mode 100644
index f275ea16d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_other.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_gum_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaGumOther",
- "title" : "Malignant Melanoma of Gum, NOS",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC03.9 - Gum, NOS",
- "schema_num" : 16,
- "schema_selection_table" : "schema_selection_melanoma_gum_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_beq",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_del",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "16"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_beq",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_del",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "schema_selection_melanoma_gum_other", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "nodes_del", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "extension_beq", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.647Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_upper.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_upper.json
deleted file mode 100644
index b6f0d1342..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_gum_upper.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_gum_upper",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaGumUpper",
- "title" : "Malignant Melanoma of Upper Gum",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC03.0 - Upper gum",
- "schema_num" : 12,
- "schema_selection_table" : "schema_selection_melanoma_gum_upper",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_ber",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dem",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "12"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_ber",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dem",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "nodes_dem", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "extension_ber", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "schema_selection_melanoma_gum_upper", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.760Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_hypopharynx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_hypopharynx.json
deleted file mode 100644
index e1a7c01fd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_hypopharynx.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_hypopharynx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaHypopharynx",
- "title" : "Malignant Melanoma of Pyriform Sinus, Hypopharynx, and Laryngopharynx",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC12.9 - Pyriform sinus\nC13.0 - Postcricoid region\nC13.1 - Hypopharyngeal aspect of aryepiglottic fold\nC13.2 - Posterior wall of hypopharynx\nC13.8 - Overlapping lesion of hypopharynx\nC13.9 - Hypopharynx, NOS (laryngopharynx)",
- "schema_num" : 38,
- "schema_selection_table" : "schema_selection_melanoma_hypopharynx",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bee",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddz",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "38"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bee",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddz",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "extension_bee", "ajcc7_stage_upu", "schema_selection_melanoma_hypopharynx", "ssf5_npa", "grade", "nodes_ddz", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:21.870Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_iris.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_iris.json
deleted file mode 100644
index 839133190..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_iris.json
+++ /dev/null
@@ -1,1164 +0,0 @@
-{
- "id" : "melanoma_iris",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaIris",
- "title" : "Malignant Melanoma of Iris (excluding Ciliary Body)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF8, SSF14\n\nM-8720-8790\nC69.4 - Iris\n\n**Note 1**: CS Site-Specific Factor 25 is used to discriminate between tumors arising in the ciliary body and the iris, both coded to C69.4.\n\n**Note 2**: Laterality must be coded for this site.",
- "schema_num" : 134,
- "schema_selection_table" : "schema_selection_melanoma_iris",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_apb",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfr",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpg",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpq",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Measured Basal Diameter",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kbm",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpr",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Size of Largest Metastasis",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpe",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf5",
- "name" : "Chromosome 3 Status",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Chromosome 6p Status",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_opd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Chromosome 8q Status",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "Gene Expression Profile",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spx",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Mitotic Count",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sqm",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Mean Diameter Nucleoli (MLN)",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spz",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "Extravascular Matrix Patterns, Loops",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sqa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "Extravascular Matrix Patterns, Networks",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sqb",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf13",
- "name" : "Microvascular Density (MVD)",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sqq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf14",
- "name" : "PET Standardized Uptake Values (SUV)",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sqr",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Melanoma Ciliary Body/Melanoma Iris",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "010",
- "table" : "ssf25_sqc",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "134"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfr",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpg",
- "inputs" : [ "mets", "ssf4" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqc",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_uad",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqc",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qea",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf3_lpr", "ssf13_sqq", "ssf12_sqb", "ssf8_spx", "ajcc6_stage_qea", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf6_opd", "nodes_dpa", "histology", "ssf1_jpq", "cs_input_version_original", "ajcc7_stage_uad", "schema_selection_melanoma_iris", "extension_bfr", "ssf22_snq", "lvi", "mets_hpg", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf2_kbm", "ssf17_snl", "ssf10_spz", "ssf5_npf", "ajcc_descriptor_codes", "ssf11_sqa", "grade", "summary_stage_rpa", "ssf7_spw", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf25_sqc", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apb", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "size_metastasis_ajcc7_xpx", "ssf9_sqm", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ssf14_sqr", "ssf4_mpe", "cs_year_validation", "ssf24_sns" ],
- "last_modified" : "2020-06-30T19:47:21.980Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_glottic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_glottic.json
deleted file mode 100644
index bc0952e1b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_glottic.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_larynx_glottic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaLarynxGlottic",
- "title" : "Malignant Melanoma of Glottic Larynx",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC32.0 - Glottis",
- "schema_num" : 83,
- "schema_selection_table" : "schema_selection_melanoma_larynx_glottic",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdv",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddq",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "83"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdv",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddq",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "schema_selection_melanoma_larynx_glottic", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "nodes_ddq", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "extension_bdv", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.075Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_other.json
deleted file mode 100644
index bc7797d98..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_other.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_larynx_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaLarynxOther",
- "title" : "Malignant Melanoma of Other Larynx",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC32.3 - Laryngeal cartilage\nC32.8 - Overlapping lesion of larynx\nC32.9 - Larynx, NOS",
- "schema_num" : 89,
- "schema_selection_table" : "schema_selection_melanoma_larynx_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdw",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddr",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "89"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdw",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddr",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "nodes_ddr", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "extension_bdw", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "schema_selection_melanoma_larynx_other", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.186Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_subglottic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_subglottic.json
deleted file mode 100644
index dba6a3da4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_subglottic.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_larynx_subglottic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaLarynxSubglottic",
- "title" : "Malignant Melanoma of Subglottic Larynx",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC32.2 - Subglottis",
- "schema_num" : 87,
- "schema_selection_table" : "schema_selection_melanoma_larynx_subglottic",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdx",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dds",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "87"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdx",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dds",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "nodes_dds", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "extension_bdx", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "schema_selection_melanoma_larynx_subglottic", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.299Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_supraglottic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_supraglottic.json
deleted file mode 100644
index 906ae8125..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_larynx_supraglottic.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_larynx_supraglottic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaLarynxSupraglottic",
- "title" : "Malignant Melanoma of Supraglottic Larynx",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC32.1 - Supraglottis",
- "schema_num" : 85,
- "schema_selection_table" : "schema_selection_melanoma_larynx_supraglottic",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdy",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddt",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "85"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdy",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddt",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "nodes_ddt", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "extension_bdy", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "schema_selection_melanoma_larynx_supraglottic", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.424Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_lower.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_lower.json
deleted file mode 100644
index c90c4e12e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_lower.json
+++ /dev/null
@@ -1,1156 +0,0 @@
-{
- "id" : "melanoma_lip_lower",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaLipLower",
- "title" : "Malignant Melanoma of Lower Lip",
- "subtitle" : "Lip (Vermilion or Labial Mucosa)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC00.1 - External lower lip\nC00.4 - Mucosa of lower lip\nC00.6 - Commissure of lip",
- "schema_num" : 4,
- "schema_selection_table" : "schema_selection_melanoma_lip_lower",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bes",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_den",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "4"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bes",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_den",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_bes", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "nodes_den", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_melanoma_lip_lower", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.534Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_other.json
deleted file mode 100644
index f46ad9c1b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_other.json
+++ /dev/null
@@ -1,1156 +0,0 @@
-{
- "id" : "melanoma_lip_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaLipOther",
- "title" : "Malignant Melanoma of Other Lip",
- "subtitle" : "Lip (Vermilion or Labial Mucosa)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC00.2 - External lip, NOS\nC00.5 - Mucosa of lip, NOS\nC00.8 - Overlapping lesion of lip\nC00.9 - Lip, NOS (excludes skin of lip C44.0)",
- "schema_num" : 6,
- "schema_selection_table" : "schema_selection_melanoma_lip_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bet",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_deo",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "6"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bet",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_deo",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "extension_bet", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_deo", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "schema_selection_melanoma_lip_other", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.701Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_upper.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_upper.json
deleted file mode 100644
index 4f916338c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_lip_upper.json
+++ /dev/null
@@ -1,1156 +0,0 @@
-{
- "id" : "melanoma_lip_upper",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaLipUpper",
- "title" : "Malignant Melanoma of Upper Lip",
- "subtitle" : "Lip (Vermilion or Labial Mucosa)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC00.0 - External upper lip\nC00.3 - Mucosa of upper lip",
- "schema_num" : 2,
- "schema_selection_table" : "schema_selection_melanoma_lip_upper",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdt",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddo",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "2"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdt",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddo",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "nodes_ddo", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "extension_bdt", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "schema_selection_melanoma_lip_upper", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.818Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_mouth_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_mouth_other.json
deleted file mode 100644
index 6bf337f6e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_mouth_other.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_mouth_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaMouthOther",
- "title" : "Malignant Melanoma of Other Mouth",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC05.8 - Overlapping lesion of palate\nC05.9 - Palate, NOS\nC06.8 - Overlapping lesion of other and unspecified parts of mouth\nC06.9 - Mouth, NOS",
- "schema_num" : 24,
- "schema_selection_table" : "schema_selection_melanoma_mouth_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bev",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_deq",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "24"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bev",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_deq",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "extension_bev", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "nodes_deq", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "schema_selection_melanoma_mouth_other", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:22.950Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_nasal_cavity.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_nasal_cavity.json
deleted file mode 100644
index e17ee9c82..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_nasal_cavity.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_nasal_cavity",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaNasalCavity",
- "title" : "Malignant Melanoma of Nasal Cavity",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC30.0 - Nasal cavity (excludes nose, NOS C76.0)\n\n**Note**: Laterality must be coded for this site, except subsites nasal cartilage and nasal septum, for which laterality is coded 0.",
- "schema_num" : 74,
- "schema_selection_table" : "schema_selection_melanoma_nasal_cavity",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bei",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ded",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "74"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bei",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ded",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "nodes_ded", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "extension_bei", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng", "schema_selection_melanoma_nasal_cavity" ],
- "last_modified" : "2020-06-30T19:47:23.089Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_nasopharynx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_nasopharynx.json
deleted file mode 100644
index ab0d6978e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_nasopharynx.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_nasopharynx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaNasopharynx",
- "title" : "Malignant Melanoma of Nasopharynx (including Pharyngeal Tonsil)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC11.0 - Superior wall of nasopharynx\nC11.1 - Posterior wall of nasopharynx (including pharyngeal tonsil)\nC11.2 - Lateral wall of nasopharynx\nC11.3 - Anterior wall of nasopharynx\nC11.8 - Overlapping lesion of nasopharynx\nC11.9 - Nasopharynx, NOS",
- "schema_num" : 35,
- "schema_selection_table" : "schema_selection_melanoma_nasopharynx",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bej",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dee",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "35"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bej",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dee",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "schema_selection_melanoma_nasopharynx", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "nodes_dee", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "extension_bej", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:23.211Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_oropharynx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_oropharynx.json
deleted file mode 100644
index 7c4af7f90..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_oropharynx.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_oropharynx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaOropharynx",
- "title" : "Malignant Melanoma of Tonsil and Oropharynx",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC09.0 - Tonsillar fossa\nC09.1 - Tonsillar pillar\nC09.8 - Overlapping lesion of tonsil\nC09.9 - Tonsil, NOS (excluding lingual tonsil C02.4)\nC10.0 - Vallecula\nC10.2 - Lateral wall of oropharynx\nC10.3 - Posterior wall of oropharynx\nC10.4 - Branchial cleft (site of neoplasm)\nC10.8 - Overlapping lesion of oropharynx\nC10.9 - Oropharynx, NOS\n\n**Note**: Laterality must be coded for C09.0, C09.1, C09.8, and C09.9",
- "schema_num" : 31,
- "schema_selection_table" : "schema_selection_melanoma_oropharynx",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bek",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_def",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "31"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bek",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_def",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "nodes_def", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "extension_bek", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_melanoma_oropharynx", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:23.380Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_palate_hard.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_palate_hard.json
deleted file mode 100644
index 9ac2f433a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_palate_hard.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_palate_hard",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaPalateHard",
- "title" : "Malignant Melanoma of Hard Palate",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC05.0 - Hard palate",
- "schema_num" : 20,
- "schema_selection_table" : "schema_selection_melanoma_palate_hard",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bew",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_der",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "20"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bew",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_der",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "schema_selection_melanoma_palate_hard", "ajcc6_stage_qna", "extension_bew", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "nodes_der", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:23.530Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_palate_soft.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_palate_soft.json
deleted file mode 100644
index 74ef7f3c6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_palate_soft.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_palate_soft",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaPalateSoft",
- "title" : "Malignant Melanoma of Soft Palate and Uvula",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC05.1 - Soft palate, NOS\nC05.2 - Uvula\n\n**Note**: Soft palate excludes nasopharyngeal (superior) surface of soft palate (C11.3)",
- "schema_num" : 22,
- "schema_selection_table" : "schema_selection_melanoma_palate_soft",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bel",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_deg",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "22"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bel",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_deg",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "nodes_deg", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "extension_bel", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "schema_selection_melanoma_palate_soft", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:23.672Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_pharynx_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_pharynx_other.json
deleted file mode 100644
index a54aa1dd4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_pharynx_other.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_pharynx_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaPharynxOther",
- "title" : "Malignant Melanoma of Pharynx, NOS and Overlapping Lesions of Lip, Oral Cavity, and Pharynx",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC14.0 - Pharynx, NOS\nC14.2 - Waldeyer ring\nC14.8 - Overlapping lesion of lip, oral cavity, and pharynx",
- "schema_num" : 40,
- "schema_selection_table" : "schema_selection_melanoma_pharynx_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bem",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dft",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "40"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bem",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dft",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "schema_selection_melanoma_pharynx_other", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "extension_bem", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "nodes_dft", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:23.854Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_ethmoid.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_ethmoid.json
deleted file mode 100644
index 16248b395..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_ethmoid.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_sinus_ethmoid",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaSinusEthmoid",
- "title" : "Malignant Melanoma of Ethmoid Sinus",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC31.1 - Ethmoid sinus",
- "schema_num" : 79,
- "schema_selection_table" : "schema_selection_melanoma_sinus_ethmoid",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_beg",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_deb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "79"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_beg",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_deb",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "nodes_deb", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "schema_selection_melanoma_sinus_ethmoid", "ajcc7_stage_upu", "ssf5_npa", "extension_beg", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:24.061Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_maxillary.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_maxillary.json
deleted file mode 100644
index c8192ccbc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_maxillary.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_sinus_maxillary",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaSinusMaxillary",
- "title" : "Malignant Melanoma of Maxillary Sinus",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC31.0 - Maxillary sinus\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 77,
- "schema_selection_table" : "schema_selection_melanoma_sinus_maxillary",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_beh",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_deu",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "77"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_beh",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_deu",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "extension_beh", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_deu", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng", "schema_selection_melanoma_sinus_maxillary" ],
- "last_modified" : "2020-06-30T19:47:24.202Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_other.json
deleted file mode 100644
index 225077a33..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_sinus_other.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_sinus_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaSinusOther",
- "title" : "Malignant Melanoma of Accessory (Paranasal) Sinuses",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC31.2 - Frontal sinus\nC31.3 - Sphenoid sinus\nC31.8 - Overlapping lesion of accessory sinuses\nC31.9 - Accessory sinus, NOS\n\n**Note 1**: Laterality must be coded for frontal sinus (C31.2).\n\n**Note 2**: AJCC does not define TNM staging for these sites and histologies.",
- "schema_num" : 81,
- "schema_selection_table" : "schema_selection_melanoma_sinus_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_beb",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddw",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcx",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "81"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_beb",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddw",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcx",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_una",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ajcc7_stage_una", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "ssf22_snq", "mets_hcx", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "extension_eval_cna", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "nodes_ddw", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "extension_beb", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "schema_selection_melanoma_sinus_other", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:24.392Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_skin.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_skin.json
deleted file mode 100644
index 84c75dca1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_skin.json
+++ /dev/null
@@ -1,1157 +0,0 @@
-{
- "id" : "melanoma_skin",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaSkin",
- "title" : " Malignant Melanoma of Skin, Vulva, Penis, Scrotum",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF8, SSF9\n\nM-8720-8790\nC44.0 - Skin of lip, NOS\nC44.1 - Eyelid\nC44.2 - External ear\nC44.3 - Skin of other and unspecified parts of face\nC44.4 - Skin of scalp and neck\nC44.5 - Skin of trunk\nC44.6 - Skin of upper limb and shoulder\nC44.7 - Skin of lower limb and hip\nC44.8 - Overlapping lesion of skin\nC44.9 - Skin, NOS\nC51.0 - Labium majus\nC51.1 - Labium minus\nC51.2 - Clitoris\nC51.8 - Overlapping lesion of vulva\nC51.9 - Vulva, NOS\nC60.0 - Prepuce\nC60.1 - Glans penis\nC60.2 - Body of penis\nC60.8 - Overlapping lesion of penis\nC60.9 - Penis\nC63.2 - Scrotum, NOS\n\n**Note 1**: Laterality must be coded for C44.1-C44.3, and C44.5-C44.7. For codes C44.3 and C44.5, if the tumor is midline (e.g., chin), use code 5 (midline) in the laterality field. \n\n**Note 2**: For melanoma of sites other than those above, use the appropriate site-specific schema.",
- "schema_num" : 99,
- "schema_selection_table" : "schema_selection_melanoma_skin",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_ban",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dam",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eba",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fah",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gaf",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_had",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth), Breslow Measurement",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpl",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Ulceration",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kaa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Clinical Status of Lymph Node Mets",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_laa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "Serum Lactate Dehydrogenase (LDH)",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_maa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf5",
- "name" : "Serum Lactate Dehydrogenase (LDH) Lab Value",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nba",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf6",
- "name" : "LDH Upper Limits of Normal",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oax",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf7",
- "name" : "Primary Tumor Mitotic Count/Rate",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "999",
- "table" : "ssf7_seb",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf8",
- "name" : "Primary Tumor Regression",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sec",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Vertical Growth Phase (VGP)",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sed",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "99"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_ban",
- "inputs" : [ "extension", "ssf7", "ssf2", "ssf1" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dam",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf3" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_had",
- "inputs" : [ "mets", "ssf4" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubv",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "nodes_eval", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbq",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "nodes_eval", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rac",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rac",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "nodes_pos_fah", "schema_selection_melanoma_skin", "determine_correct_table_for_ajcc7_n_ns40", "ssf25_snt", "summary_stage_rac", "ssf15_snj", "determine_correct_table_for_ajcc6_n_ns41", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpl", "histology", "cs_input_version_original", "extension_thickness_ulceration_tcategory_ajcc6_xkj", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "metsat_dxand_ldh_xbs", "ssf3_laa", "ajcc7_year_validation", "extension_thickness_ulceration_tcategory_ajcc7_xkk", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "lymph_nodeand_nodal_status_eval_blank_ajcc6_xlm", "thickness_ulceration_ajcc6_xbn", "nodes_eval_eba", "grade", "ajcc7_m_codes", "extension_ban", "ssf20_sno", "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlj", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "mets_had", "lymph_nodeand_nodal_status_pathologic_eval_ajcc6_xll", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ssf6_oax", "ss_codes", "ssf7_seb", "size_apa", "nodes_dam", "ssf4_maa", "lymph_nodeand_nodal_status_pathologic_eval_ajcc7_xli", "lymph_nodeand_nodal_status_clinical_eval_ajcc6_xlk", "ajcc6_n_codes", "ajcc6_stage_qbq", "behavior", "ssf10_sne", "ssf8_sec", "ssf18_snm", "mets_eval_ipa", "ssf5_nba", "extension_eval_cpa", "ajcc7_n_codes", "thickness_ulceration_ajcc7_xhu", "ajcc6_stage_codes", "lymph_nodeand_nodal_status_clinical_eval_ajcc7_xlh", "nodes_exam_gaf", "ajcc7_stage_ubv", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_ulceration_t1_ajcc6_xbo", "ssf9_sed", "ssf2_kaa", "ajcc6_m_codes", "cs_year_validation", "mitotic_rate_ulceration_t1_ajcc7_xgo", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:25.463Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_tongue_anterior.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_tongue_anterior.json
deleted file mode 100644
index 610b4168c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_tongue_anterior.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_tongue_anterior",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaTongueAnterior",
- "title" : "Malignant Melanoma of Anterior Tongue",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC02.0 - Dorsal surface of tongue, NOS\nC02.1 - Border of tongue\nC02.2 - Ventral surface of tongue, NOS\nC02.3 - Anterior 2/3 of tongue, NOS\nC02.8 - Overlapping lesion of tongue\nC02.9 - Tongue, NOS",
- "schema_num" : 10,
- "schema_selection_table" : "schema_selection_melanoma_tongue_anterior",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bex",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_des",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "10"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bex",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_des",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_bex", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "nodes_des", "ss_codes", "size_apa", "schema_selection_melanoma_tongue_anterior", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:25.610Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_tongue_base.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_tongue_base.json
deleted file mode 100644
index a868da5dd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/melanoma_tongue_base.json
+++ /dev/null
@@ -1,1155 +0,0 @@
-{
- "id" : "melanoma_tongue_base",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MelanomaTongueBase",
- "title" : "Malignant Melanoma of Base of Tongue and Lingual Tonsil",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nM-8720-8790\nC01.9 - Base of tongue, NOS\nC02.4 - Lingual tonsil",
- "schema_num" : 8,
- "schema_selection_table" : "schema_selection_melanoma_tongue_base",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bef",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dea",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpd",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipc",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "8"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bef",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpb",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dea",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epc",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpd",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor", "staging_basis_6" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipc",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "staging_basis_6", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upu",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "schema_selection_melanoma_tongue_base", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "mets_hpd", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "nodes_dea", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpa", "ssf17_snl", "ajcc_descriptor_codes", "extension_bef", "ajcc7_stage_upu", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "mets_eval_ipc", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "extension_eval_cpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epc", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:25.759Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_penis.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_penis.json
deleted file mode 100644
index 6f4fd7fdb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_penis.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "merkel_cell_penis",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MerkelCellPenis",
- "title" : "Merkel Cell Carcinoma of the Penis",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF19, SSF20, SSF21\n\nM-8247\nC60.0 - Prepuce\nC60.1 - Glans penis\nC60.2 - Body of penis\nC60.8 - Overlapping lesion of penis\nC60.9 - Penis, NOS\n\n**Note 1**: This schema is used for Merkel cell carcinoma only.",
- "schema_num" : 120,
- "schema_selection_table" : "schema_selection_merkel_cell_penis",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apo",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfz",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfv",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eba",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fah",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hph",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "Clinical Status of Lymph Node Mets",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpq",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_sqw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf17",
- "name" : "Extracapsular Extension of Regional Lymph Nodes",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "999",
- "table" : "ssf17_sqx",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf18",
- "name" : "Isolated Tumor Cells (ITC) in Regional Lymph Node(s)",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "999",
- "table" : "ssf18_sqy",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf19",
- "name" : "Tumor Base Transection Status",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_sqz",
- "used_for_staging" : false
- }, {
- "key" : "ssf20",
- "name" : "Tumor Infiltrating Lymphocytes (TIL)",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sra",
- "used_for_staging" : false
- }, {
- "key" : "ssf21",
- "name" : "Growth Pattern of Primary Tumor",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_srb",
- "used_for_staging" : false
- }, {
- "key" : "ssf22",
- "name" : "Profound Immune Suppression",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "999",
- "table" : "ssf22_src",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "120"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfz",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfv",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf3" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hph",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqe",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "nodes_eval", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qps",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "nodes_pos_fah", "ssf2_kna", "extension_bfz", "ajcc6_exclusions_ppd", "ssf3_lpq", "ssf25_snt", "ajcc7_inclusions_tqb", "ssf22_src", "ssf15_snj", "ajcc7_t_codes", "mets_hph", "ssf23_snr", "histology", "ajcc6_stage_qps", "cs_input_version_original", "ssf1_jpt", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf20_sra", "ssf4_mna", "ssf16_sqw", "ajcc7_year_validation", "ajcc7_stage_uqe", "ajcc_descriptor_codes", "ssf17_sqx", "nodes_eval_eba", "grade", "lymph_nodeand_nodal_status_eval_blank_ajcc7_xln", "summary_stage_rpa", "ajcc7_m_codes", "ssf21_srb", "ajcc_ndescriptor_cleanup", "ssf19_sqz", "ajcc6_t_codes", "ssf18_sqy", "schema_selection_merkel_cell_penis", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "mets_eval_ipa", "size_apo", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dfv", "determine_correct_table_for_ajcc7_n_ns18", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "lymph_nodeand_nodal_status_eval_ajcc7_xlg", "extension_size_ajcc7_xik", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:26.033Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_scrotum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_scrotum.json
deleted file mode 100644
index 2549899bb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_scrotum.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "merkel_cell_scrotum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MerkelCellScrotum",
- "title" : "Merkel Cell Carcinoma of the Scrotum",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF19, SSF20, SSF21\n\nM-8247\nC63.2 - Scrotum, NOS\n\n**Note**: This schema is used for Merkel cell carcinoma only.",
- "schema_num" : 125,
- "schema_selection_table" : "schema_selection_merkel_cell_scrotum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apo",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bga",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfw",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eba",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fah",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hph",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "Clinical Status of Lymph Node Mets",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpq",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_sqw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf17",
- "name" : "Extracapsular Extension of Regional Lymph Nodes",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "999",
- "table" : "ssf17_sqx",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf18",
- "name" : "Isolated Tumor Cells (ITC) in Regional Lymph Node(s)",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "999",
- "table" : "ssf18_sqy",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf19",
- "name" : "Tumor Base Transection Status",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_sqz",
- "used_for_staging" : false
- }, {
- "key" : "ssf20",
- "name" : "Tumor Infiltrating Lymphocytes (TIL)",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sra",
- "used_for_staging" : false
- }, {
- "key" : "ssf21",
- "name" : "Growth Pattern of Primary Tumor",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_srb",
- "used_for_staging" : false
- }, {
- "key" : "ssf22",
- "name" : "Profound Immune Suppression",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "999",
- "table" : "ssf22_src",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "125"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bga",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfw",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf3" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hph",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqe",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "nodes_eval", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpt",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_size_ajcc6_xji", "nodes_pos_fah", "ssf2_kna", "ajcc6_exclusions_ppd", "ssf3_lpq", "ssf25_snt", "ajcc7_inclusions_tqb", "ssf22_src", "extension_bga", "ssf15_snj", "ajcc7_t_codes", "mets_hph", "ssf23_snr", "histology", "ajcc6_stage_qpt", "cs_input_version_original", "ssf1_jpt", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf20_sra", "ssf4_mna", "ssf16_sqw", "ajcc7_year_validation", "ajcc7_stage_uqe", "ajcc_descriptor_codes", "ssf17_sqx", "nodes_eval_eba", "grade", "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlo", "summary_stage_rpa", "ajcc7_m_codes", "ssf21_srb", "ajcc_ndescriptor_cleanup", "ssf19_sqz", "ajcc6_t_codes", "ssf18_sqy", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "schema_selection_merkel_cell_scrotum", "behavior", "ssf10_sne", "mets_eval_ipa", "size_apo", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "lymph_nodeand_nodal_status_eval_ajcc7_xlb", "ajcc6_year_validation", "nodes_dfw", "determine_correct_table_for_ajcc7_n_ns19", "ajcc6_m_codes", "extension_size_ajcc7_xim", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:26.200Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_skin.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_skin.json
deleted file mode 100644
index 88a0a7231..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_skin.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "merkel_cell_skin",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MerkelCellSkin",
- "title" : "Merkel Cell Carcinoma of the Skin (excluding Merkel Cell Carcinoma of Penis, Scrotum, and Vulva)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF19, SSF20, SSF21\n\nM-8247\nC44.0 - Skin of lip, NOS\nC44.2 - External ear\nC44.3 - Skin of ear and unspecified parts of face\nC44.4 - Skin of scalp and neck\nC44.5 - Skin of trunk\nC44.6 - Skin of upper limb and shoulder\nC44.7 - Skin of lower limb and hip\nC44.8 - Overlapping lesion of skin\nC44.9 - Skin, NOS\n\n**Note 1**: This schema is NOT used for Merkel cell carcinoma of the vulva, penis, or scrotum. Each of these has a separate schema.\n\n**Note 2**: Laterality must be coded for C44.2-C44.3 and C44.5-C44.7. For codes C44.3 and C44.5, if the tumor is midline (e.g., chin), code 5 (midline) in the laterality field.\n\n**Note 3**: Merkel cell carcinoma presenting in nodal or visceral site with primary site unknown is coded to C44.9, Skin, NOS.",
- "schema_num" : 98,
- "schema_selection_table" : "schema_selection_merkel_cell_skin",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apo",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bds",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddn",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eba",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fah",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hph",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "Clinical Status of Lymph Node Mets",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpq",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_sqw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf17",
- "name" : "Extracapsular Extension of Regional Lymph Nodes",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "999",
- "table" : "ssf17_sqx",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf18",
- "name" : "Isolated Tumor Cells (ITC) in Regional Lymph Node(s)",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "999",
- "table" : "ssf18_sqy",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf19",
- "name" : "Tumor Base Transection Status",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_sqz",
- "used_for_staging" : false
- }, {
- "key" : "ssf20",
- "name" : "Tumor Infiltrating Lymphocytes (TIL)",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sra",
- "used_for_staging" : false
- }, {
- "key" : "ssf21",
- "name" : "Growth Pattern of Primary Tumor",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_srb",
- "used_for_staging" : false
- }, {
- "key" : "ssf22",
- "name" : "Profound Immune Suppression",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "999",
- "table" : "ssf22_src",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "98"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bds",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddn",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf3" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hph",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqe",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "nodes_eval", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qdx",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "nodes_pos_fah", "ssf2_kna", "ajcc6_exclusions_ppd", "ajcc6_stage_qdx", "ssf3_lpq", "ssf25_snt", "ajcc7_inclusions_tqb", "ssf22_src", "schema_selection_merkel_cell_skin", "ssf15_snj", "ajcc7_t_codes", "mets_hph", "ssf23_snr", "histology", "cs_input_version_original", "ssf1_jpt", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf20_sra", "ssf4_mna", "ssf16_sqw", "ajcc7_year_validation", "ajcc7_stage_uqe", "ajcc_descriptor_codes", "nodes_ddn", "ssf17_sqx", "nodes_eval_eba", "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlp", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf21_srb", "ajcc_ndescriptor_cleanup", "extension_bds", "extension_size_xdb", "ssf19_sqz", "ajcc6_t_codes", "ssf18_sqy", "ajcc_mdescriptor_cleanup", "determine_correct_table_for_ajcc7_n_ns20", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "mets_eval_ipa", "size_apo", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "lymph_nodeand_nodal_status_eval_ajcc7_xle", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:26.369Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_vulva.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_vulva.json
deleted file mode 100644
index 1e5939a68..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/merkel_cell_vulva.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "merkel_cell_vulva",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MerkelCellVulva",
- "title" : "Merkel Cell Carcinoma of the Vulva",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF19, SSF20, SSF21\n\nM-8247\nC51.0 - Labium majus\nC51.1 - Labium minus\nC51.2 - Clitoris\nC51.8 - Overlapping lesion of vulva\nC51.9 - Vulva, NOS\n\n**Note 1**: This schema is used for Merkel cell carcinoma only.\n\n**Note 2**: The AJCC 7th edition stages cancer of the perineum with vulva. Cancer of the perineum can be coded to several different primary site codes each of which includes sites other than perineum. Involvement of the vulva and perineum should be assigned to vulva as the primary site in the absence of a statement that the tumor extended from the perineum to the vulva. Collaborative Stage only includes C51.0-C51.9 (vulva) and does not include primaries of the perineum in this schema. In addition, basal and squamous cell carcinomas of the skin of the perineum would be coded to C44.5 and would not be reportable.",
- "schema_num" : 108,
- "schema_selection_table" : "schema_selection_merkel_cell_vulva",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apo",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bgb",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfx",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eba",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fah",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcy",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "Clinical Status of Lymph Node Mets",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpq",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Regional Lymph Node - Laterality",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_srd",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_sqw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf17",
- "name" : "Extracapsular Extension of Regional Lymph Nodes",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "999",
- "table" : "ssf17_sqx",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf18",
- "name" : "Isolated Tumor Cells (ITC) in Regional Lymph Node(s)",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "999",
- "table" : "ssf18_sqy",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf19",
- "name" : "Tumor Base Transection Status",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_sqz",
- "used_for_staging" : false
- }, {
- "key" : "ssf20",
- "name" : "Tumor Infiltrating Lymphocytes (TIL)",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sra",
- "used_for_staging" : false
- }, {
- "key" : "ssf21",
- "name" : "Growth Pattern of Primary Tumor",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_srb",
- "used_for_staging" : false
- }, {
- "key" : "ssf22",
- "name" : "Profound Immune Suppression",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "999",
- "table" : "ssf22_src",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "108"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bgb",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfx",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf3", "ssf11" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eba",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcy",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqe",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "nodes_eval", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpu",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "nodes_pos_fah", "ssf2_kna", "ajcc6_exclusions_ppd", "ssf3_lpq", "ssf25_snt", "lymph_nodes_metsat_dxajcc6_xlf", "ajcc7_inclusions_tqb", "ssf22_src", "extension_bgb", "extension_size_ajcc6_xjj", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ajcc6_stage_qpu", "cs_input_version_original", "ssf1_jpt", "lvi", "mets_hcy", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf20_sra", "ssf4_mna", "ssf16_sqw", "ajcc7_year_validation", "ajcc7_stage_uqe", "ajcc_descriptor_codes", "ssf17_sqx", "nodes_eval_eba", "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlq", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf21_srb", "ajcc_ndescriptor_cleanup", "ssf19_sqz", "ajcc6_t_codes", "ssf18_sqy", "ajcc_mdescriptor_cleanup", "determine_correct_table_for_ajcc7_n_ns21", "ssf7_snb", "ss_codes", "ssf11_srd", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "schema_selection_merkel_cell_vulva", "mets_eval_ipa", "size_apo", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "lymph_nodesand_ssf11_ajcc6_xiq", "lymph_nodeand_nodal_status_eval_ajcc7_xld", "ajcc6_m_codes", "cs_year_validation", "extension_size_ajcc7_xio", "nodes_dfx", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:26.559Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/middle_ear.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/middle_ear.json
deleted file mode 100644
index 14cc7dfb7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/middle_ear.json
+++ /dev/null
@@ -1,1167 +0,0 @@
-{
- "id" : "middle_ear",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MiddleEar",
- "title" : "Middle Ear",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC30.1 - Middle ear\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: AJCC does not define TNM staging for this site.",
- "schema_num" : 75,
- "schema_selection_table" : "schema_selection_middle_ear",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcr",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcf",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpf",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "75"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcr",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcf",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpf",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "ssf22_snq", "lvi", "mets_hpf", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "extension_eval_cna", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "schema_selection_middle_ear", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "extension_bcr", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "nodes_dcf", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:26.674Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/mouth_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/mouth_other.json
deleted file mode 100644
index 3db984837..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/mouth_other.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "mouth_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MouthOther",
- "title" : "Other Mouth (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC05.8 - Overlapping lesion of palate\nC05.9 - Palate, NOS\nC06.8 - Overlapping lesion of other and unspecified parts of mouth\nC06.9 - Mouth, NOS",
- "schema_num" : 23,
- "schema_selection_table" : "schema_selection_mouth_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_baf",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpd",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "23"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_baf",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpd",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "schema_selection_mouth_other", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "nodes_dpd", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_size_xad", "ssf9_spc", "lymph_nodes_size_xpd", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "extension_baf", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:26.797Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/mycosis_fungoides.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/mycosis_fungoides.json
deleted file mode 100644
index cd6c295ad..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/mycosis_fungoides.json
+++ /dev/null
@@ -1,1217 +0,0 @@
-{
- "id" : "mycosis_fungoides",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MycosisFungoides",
- "title" : "Mycosis Fungoides and Sezary Disease of Skin, Vulva, Penis, Scrotum",
- "notes" : "M-9700-9701\nC44.0 - Skin of lip, NOS\nC44.1 - Eyelid\nC44.2 - External ear\nC44.3 - Skin of other and unspecified parts of face\nC44.4 - Skin of scalp and neck\nC44.5 - Skin of trunk\nC44.6 - Skin of upper limb and shoulder\nC44.7 - Skin of lower limb and hip\nC44.8 - Overlapping lesion of skin\nC44.9 - Skin, NOS\nC51.0 - Labium majus\nC51.1 - Labium minus\nC51.2 - Clitoris\nC51.8 - Overlapping lesion of vulva\nC51.9 - Vulva, NOS\nC60.0 - Prepuce\nC60.1 - Glans penis\nC60.2 - Body of penis\nC60.8 - Overlapping lesion of penis\nC60.9 - Penis\nC63.2 - Scrotum, NOS\n\n**Note**: Laterality must be coded for C44.1-C44.3 and C44.5-C44.7. For codes C44.3 and C44.5, if the tumor is midline (e.g., chin), code 5 (midline) in the laterality field.",
- "schema_num" : 100,
- "schema_selection_table" : "schema_selection_mycosis_fungoides",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aba",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcp",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dce",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_haz",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Peripheral Blood Involvement",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jaj",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "100"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcp",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dce",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_haz",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpw",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf1_jaj",
- "inputs" : [ "ssf1" ],
- "outputs" : [ "b_map" ]
- }, {
- "id" : "ajcc7_stage_ubx",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "b_map",
- "to" : "peripheral_blood_involvement"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t", "b_map" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpw",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pak",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pak",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc7_inclusions_tpw", "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "size_aba", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ajcc6_stage_qbb", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ssf1_jaj", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc6_exclusions_pak", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "mets_haz", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc7_stage_ubx", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "nodes_dce", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "extension_bcp", "ssf24_sns", "ssf8_snc", "ssf12_sng", "schema_selection_mycosis_fungoides" ],
- "last_modified" : "2020-06-30T19:47:27.343Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/myeloma_plasma_cell_disorder.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/myeloma_plasma_cell_disorder.json
deleted file mode 100644
index 52ffb2c37..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/myeloma_plasma_cell_disorder.json
+++ /dev/null
@@ -1,1116 +0,0 @@
-{
- "id" : "myeloma_plasma_cell_disorder",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "MyelomaPlasmaCellDisorder",
- "title" : "Plasma Cell Disorders including Myeloma",
- "notes" : "9731 - Plasmacytoma, NOS (except C441, C690, C695-C696)\n9732 - Multiple myeloma (except C441, C690, C695-C696)\n9734 - Plasmacytoma, extramedullary (except C441, C690, C695-C696)\n\n**Note 1**: This schema was added in V0203. Originally these histologies were part of the HemeRetic schema.\n\n**Note 2**: AJCC does not define TNM staging for this site.",
- "schema_num" : 152,
- "schema_selection_table" : "schema_selection_myeloma_plasma_cell_disorder",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "988",
- "table" : "size_ana",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bgc",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "table" : "nodes_dfy",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fae",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gac",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "98",
- "table" : "mets_hna",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Janus Kinase 2 (JAK2) (also known as JAK2 Exon 12)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jch",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Durie-Salmon Staging System",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "table" : "ssf2_kbx",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "Multiple Myeloma Terminology",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "table" : "ssf3_lbb",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "152"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bgc",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfy",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hna",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "nodes_pos_fae", "ssf25_snt", "extension_bgc", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "size_ana", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ssf2_kbx", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "schema_selection_myeloma_plasma_cell_disorder", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf3_lbb", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "ajcc6_n_codes", "mets_hna", "behavior", "ssf10_sne", "ssf18_snm", "nodes_exam_gac", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "ssf1_jch", "cs_year_validation", "ssf24_sns", "nodes_dfy", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:27.491Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/nasal_cavity.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/nasal_cavity.json
deleted file mode 100644
index 5cb3d2f7c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/nasal_cavity.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "nasal_cavity",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "NasalCavity",
- "title" : "Nasal Cavity (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC30.0 - Nasal cavity (excluding nose, NOS C76.0)\n\n**Note**: Laterality must be coded for this site, except subsites nasal cartilage and nasal septum, for which laterality is coded 0.",
- "schema_num" : 73,
- "schema_selection_table" : "schema_selection_nasal_cavity",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcq",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcx",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "73"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcq",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcx",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "schema_selection_nasal_cavity", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "nodes_dcx", "ajcc_tdescriptor_cleanup", "ssf9_spc", "lymph_nodes_size_xpd", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_bcq", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:27.625Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/nasopharynx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/nasopharynx.json
deleted file mode 100644
index 709b62ca4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/nasopharynx.json
+++ /dev/null
@@ -1,1216 +0,0 @@
-{
- "id" : "nasopharynx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Nasopharynx",
- "title" : "Nasopharynx (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC11.0 - Superior wall of nasopharynx\nC11.1 - Posterior wall of nasopharynx (excluding pharyngeal tonsil)\nC11.2 - Lateral wall of nasopharynx\nC11.3 - Anterior wall of nasopharynx\nC11.8 - Overlapping lesion of nasopharynx\nC11.9 - Nasopharynx, NOS",
- "schema_num" : 34,
- "schema_selection_table" : "schema_selection_nasopharynx",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bas",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcn",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_spd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Nasopharynx/PharyngealTonsil",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "981",
- "table" : "ssf25_spj",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "34"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bas",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcn",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spj",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_uae",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spj",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qak",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "lymph_nodes_size_table_csv2_xcp", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "nodes_dcn", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ajcc7_stage_uae", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_bas", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "lymph_nodes_size_ajcc6_table_csv1_xex", "schema_selection_nasopharynx", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf25_spj", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_stage_qak", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:27.807Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_ampulla.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_ampulla.json
deleted file mode 100644
index 6cba4f30b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_ampulla.json
+++ /dev/null
@@ -1,1209 +0,0 @@
-{
- "id" : "net_ampulla",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "NETAmpulla",
- "title" : "Neuroendocrine Tumors of Ampulla of Vater",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF4\n\nM-8153, 8240-8242, 8246, 8249\nC24.1 - Ampulla of Vater\n\n**Note 1**: For this schema, AJCC only stages well-differentiated neuroendocrine tumors. Note that the \"concept\" of well-differentiated is reflected in the histology code. The grade code is not needed in order to select the correct schema, but does need to be coded.\n\n**Note 2**: This schema is also used for carcinoid tumors and malignant gastrinomas.",
- "schema_num" : 67,
- "schema_selection_table" : "schema_selection_net_ampulla",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aar",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfo",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfk",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hco",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "Mitotic Count",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mas",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nap",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf6",
- "name" : "Urinary 5-HIAA Lab Value",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oam",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "67"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfo",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfk",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hco",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqa",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpp",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppe",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "mets_hco", "ajcc6_exclusions_ppe", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "size_aar", "extension_bfo", "cs_input_version_original", "extension_size_ajcc7_xfe", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mas", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_uqa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ajcc7_inclusions_tpm", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "ssf6_oam", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "nodes_dfk", "ssf3_lna", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "schema_selection_net_ampulla", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ajcc6_stage_qpp", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ssf5_nap", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:27.962Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_colon.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_colon.json
deleted file mode 100644
index 517ab7192..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_colon.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "net_colon",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "NETColon",
- "title" : "Neuroendocrine Tumors of Colon (excluding Appendix)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF11\n\nM-8153, 8240-8242, 8246, 8249\nC18.0 - Cecum\nC18.2 - Ascending colon\nC18.3 - Hepatic flexure of colon\nC18.4 - Transverse colon\nC18.5 - Splenic flexure of colon\nC18.6 - Descending colon\nC18.7 - Sigmoid colon\nC18.8 - Overlapping lesion of colon\nC18.9 - Colon, NOS\n\n**Note 1**: For this schema, AJCC only stages well-differentiated neuroendocrine tumors. Note that the \"concept\" of well-differentiated is reflected in the histology code. The grade code is not needed in order to select the correct schema, but does need to be coded.\n\n**Note 2**: This schema is also used for carcinoid tumors and malignant gastrinomas.",
- "schema_num" : 55,
- "schema_selection_table" : "schema_selection_net_colon",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apk",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfi",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfe",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hci",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpv",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpi",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Mitotic Count",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sps",
- "used_for_staging" : false
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_spt",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf17",
- "name" : "Urinary 5-Hydroxyindoleacetic Acid (5-HIAA) Lab Value",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "999",
- "table" : "ssf17_spu",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "55"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfi",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfe",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hci",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upx",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpf",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf11_sps", "ajcc6_exclusions_ppd", "ssf25_snt", "mets_hci", "ssf15_snj", "ajcc7_t_codes", "schema_selection_net_colon", "ssf23_snr", "histology", "extension_bfi", "cs_input_version_original", "ssf22_snq", "ssf1_jpv", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ajcc_descriptor_codes", "extension_size_ajcc7_xkg", "lymph_nodes_clinical_evaluation6th_xqf", "grade", "ajcc7_stage_upx", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ajcc7_inclusions_tpm", "ssf16_spt", "nodes_dfe", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "determine_correct_table_for_ajcc6_n_ns22", "ssf6_ona", "nodes_exam_gpa", "ssf17_spu", "ajcc6_n_codes", "behavior", "ssf2_kpi", "size_apk", "ssf10_sne", "ssf18_snm", "lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg", "mets_eval_ipa", "ajcc6_stage_qpf", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_pos_fpc", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:28.138Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_rectum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_rectum.json
deleted file mode 100644
index c7cb465f1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_rectum.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "net_rectum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "NETRectum",
- "title" : "Neuroendocrine Tumors of Rectum and Rectosigmoid Junction",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF11\n\nM-8153, 8240-8242, 8246, 8249\nC19.9 - Rectosigmoid junction\nC20.9 - Rectum, NOS\n\n**Note 1**: For this schema, AJCC only stages well-differentiated neuroendocrine tumors. Note that the \"concept\" of well-differentiated is reflected in the histology code. The grade code is not needed in order to select the correct schema, but does need to be coded.\n\n**Note 2**: This schema is also used for carcinoid tumors and malignant gastrinomas.",
- "schema_num" : 58,
- "schema_selection_table" : "schema_selection_net_rectum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apk",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfj",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dff",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcj",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpv",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpi",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Mitotic Count",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sps",
- "used_for_staging" : false
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_spt",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf17",
- "name" : "Urinary 5-Hydroxyindoleacetic Acid (5-HIAA) Lab Value",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "999",
- "table" : "ssf17_spu",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "58"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfj",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dff",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcj",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upx",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpf",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf11_sps", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "mets_hcj", "ajcc7_t_codes", "ssf23_snr", "histology", "extension_bfj", "schema_selection_net_rectum", "cs_input_version_original", "ssf22_snq", "ssf1_jpv", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ajcc_descriptor_codes", "lymph_nodes_clinical_evaluation6th_xqf", "extension_size_ajcc7_xkh", "grade", "ajcc7_stage_upx", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ajcc7_inclusions_tpm", "ssf16_spt", "nodes_dff", "ajcc6_t_codes", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "determine_correct_table_for_ajcc6_n_ns22", "ssf6_ona", "nodes_exam_gpa", "ssf17_spu", "ajcc6_n_codes", "behavior", "ssf2_kpi", "size_apk", "ssf10_sne", "ssf18_snm", "lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg", "mets_eval_ipa", "ajcc6_stage_qpf", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_pos_fpc", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:28.314Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_small_intestine.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_small_intestine.json
deleted file mode 100644
index e13526083..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_small_intestine.json
+++ /dev/null
@@ -1,1209 +0,0 @@
-{
- "id" : "net_small_intestine",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "NETSmallIntestine",
- "title" : "Neuroendocrine Tumors of Small Intestine",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF6\n\nM-8153, 8240-8242, 8246, 8249\nC17.0 - Duodenum\nC17.1 - Jejunum\nC17.2 - Ileum (excludes ileocecal valve C18.0)\nC17.3 - Meckel diverticulum (site of neoplasm)\nC17.8 - Overlapping lesion of small intestine\nC17.9 - Small intestine, NOS\n\n**Note 1**: For this schema, AJCC only stages well-differentiated neuroendocrine tumors. Note that the \"concept\" of well-differentiated is reflected in the histology code. The grade code is not needed in order to select the correct schema, but does need to be coded.\n\n**Note 2**: This schema is also used for carcinoid tumors and malignant gastrinomas.",
- "schema_num" : 49,
- "schema_selection_table" : "schema_selection_net_small_intestine",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aas",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfp",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfl",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcp",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "Mitotic Count",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_opi",
- "used_for_staging" : false
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sri",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf12",
- "name" : "Urinary 5-HIAA Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_srj",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "49"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfp",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfl",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcp",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqa",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpn",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "mets_hcp", "ajcc6_exclusions_ppd", "schema_selection_net_small_intestine", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "size_aas", "cs_input_version_original", "extension_size_ajcc7_xff", "ssf22_snq", "ssf6_opi", "lvi", "extension_bfp", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_stage_uqa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ajcc7_inclusions_tpm", "ssf16_snk", "ssf1_jna", "nodes_dfl", "ajcc6_t_codes", "nodes_pos_fpa", "ssf11_sri", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ajcc6_stage_qpn", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ssf12_srj", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:28.503Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_stomach.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_stomach.json
deleted file mode 100644
index f775523ee..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/net_stomach.json
+++ /dev/null
@@ -1,1209 +0,0 @@
-{
- "id" : "net_stomach",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "NETStomach",
- "title" : "Neuroendocrine Tumors of Stomach",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF6\n\nM-8153, 8240-8242, 8246, 8249\nC16.0 - Cardia of stomach\nC16.1 - Fundus of stomach\nC16.2 - Body of stomach\nC16.3 - Gastric antrum\nC16.4 - Pylorus\nC16.5 - Lesser curvature of stomach, NOS\nC16.6 - Greater curvature of stomach, NOS\nC16.8 - Overlapping lesion of stomach\nC16.9 - Stomach, NOS\n\n**Note 1**: For this schema, AJCC only stages well-differentiated neuroendocrine tumors. Note that the \"concept\" of well-differentiated is reflected in the histology code. The grade code is not needed in order to select the correct schema, but does need to be coded.\n\n**Note 2**: This schema is also used for carcinoid tumors and malignant gastrinomas.",
- "schema_num" : 46,
- "schema_selection_table" : "schema_selection_net_stomach",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aap",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfk",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfg",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hck",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jbg",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "Mitotic Count",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_opi",
- "used_for_staging" : false
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sri",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf12",
- "name" : "Urinary 5-HIAA Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_srj",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "46"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfk",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfg",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hck",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uao",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpm",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpl",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "mets_hck", "ssf2_kna", "ajcc6_exclusions_ppd", "ssf25_snt", "ajcc7_stage_uao", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "size_aap", "extension_bfk", "histology", "cs_input_version_original", "lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp", "ssf22_snq", "ssf6_opi", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ajcc7_inclusions_tpm", "ssf16_snk", "nodes_dfg", "ajcc6_t_codes", "lymph_nodes_clinical_evaluation_ajcc6_xpo", "ssf11_sri", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "determine_correct_table_for_ajcc6_n_ns23", "nodes_exam_gpa", "ajcc6_n_codes", "ssf1_jbg", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "schema_selection_net_stomach", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "extension_size_ajcc7_xey", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpl", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_pos_fpc", "ajcc6_m_codes", "nodes_eval_epa", "ssf12_srj", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:28.666Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/orbit.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/orbit.json
deleted file mode 100644
index bee853be4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/orbit.json
+++ /dev/null
@@ -1,1210 +0,0 @@
-{
- "id" : "orbit",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Orbit",
- "title" : "Orbit (excluding Lymphoma)",
- "notes" : "C69.6 - Orbit, NOS\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: AJCC uses this scheme only for sarcomas of the orbit.",
- "schema_num" : 140,
- "schema_selection_table" : "schema_selection_orbit",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aaj",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bag",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "140"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bag",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpa",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epb",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epb",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpp",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_unb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpp",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qnb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppc", "ssf2_kna", "ssf25_snt", "ajcc7_stage_unb", "size_aaj", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "nodes_dpa", "histology", "cs_input_version_original", "mets_hpc", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_size_xaf", "ssf4_mna", "ajcc6_stage_qnb", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "ajcc7_inclusions_tpp", "summary_stage_rpa", "ajcc7_m_codes", "schema_selection_orbit", "extension_bag", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "nodes_eval_epb", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:28.798Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/oropharynx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/oropharynx.json
deleted file mode 100644
index a05fb8138..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/oropharynx.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "oropharynx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Oropharynx",
- "title" : "Tonsil and Oropharynx (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC09.0 - Tonsillar fossa\nC09.1 - Tonsillar pillar\nC09.8 - Overlapping lesion of tonsil\nC09.9 - Tonsil, NOS (excluding lingual tonsil C02.4)\nC10.0 - Vallecula\nC10.2 - Lateral wall of oropharynx\nC10.3 - Posterior wall of oropharynx\nC10.4 - Branchial cleft (site of neoplasm)\nC10.8 - Overlapping lesion of oropharynx\nC10.9 - Oropharynx, NOS\n\n**Note 1**: Laterality must be coded for C09.0, C09.1, C09.8, and C09.9.\n\n**Note 2**: AJCC includes base of tongue (C01.9) with oropharynx (C09._, C10._).",
- "schema_num" : 30,
- "schema_selection_table" : "schema_selection_oropharynx",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aph",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bap",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcu",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_spd",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "30"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bap",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcu",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "schema_selection_oropharynx", "ajcc6_exclusions_ppd", "ssf1_jpa", "extension_size_ajcc6_xaz", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "nodes_dcu", "ssf22_snq", "lvi", "ssf14_sni", "extension_bap", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "extension_size_ajcc7_xdw", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "size_aph", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:28.934Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ovary.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ovary.json
deleted file mode 100644
index 17cc9f6d4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/ovary.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "ovary",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Ovary",
- "title" : "Ovary",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF4, SSF5\n\nC56.9 - Ovary\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 114,
- "schema_selection_table" : "schema_selection_ovary",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbg",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_day",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hah",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carbohydrate Antigen 125 (CA-125)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jae",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "FIGO Stage",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kbu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "Residual Tumor Status and Size After Primary Cytoreduction Surgery",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Tumor Location after Primary Cytoreduction (Debulking) Surgery",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpr",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Malignant Ascites",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npl",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "114"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbg",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_day",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hah",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpx",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubf",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpx",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pad",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbi",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pad",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc7_inclusions_tpx", "ssf3_lpt", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "extension_bbg", "histology", "schema_selection_ovary", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf5_npl", "ssf2_kbu", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf1_jae", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "mets_hah", "ssf11_snf", "ss_codes", "ajcc6_exclusions_pad", "ajcc6_stage_qbi", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "nodes_day", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ssf4_mpr", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ajcc7_stage_ubf", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:29.250Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/palate_hard.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/palate_hard.json
deleted file mode 100644
index 5e0429a9b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/palate_hard.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "palate_hard",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PalateHard",
- "title" : "Hard Palate (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC05.0 - Hard palate",
- "schema_num" : 19,
- "schema_selection_table" : "schema_selection_palate_hard",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bah",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "19"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bah",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpc",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "nodes_dpc", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_size_xae", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "extension_bah", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_palate_hard", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:29.408Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/palate_soft.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/palate_soft.json
deleted file mode 100644
index 405a75c2b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/palate_soft.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "palate_soft",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PalateSoft",
- "title" : "Soft Palate and Uvula (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC05.1 - Soft palate, NOS\nC05.2 - Uvula\n\n**Note 1**: AJCC includes inferior surface of the soft palate (C05.1) and uvula (C05.2) with oropharynx (C09._, C10._).\n\n**Note 2**: Soft palate excludes nasopharyngeal (superior) surface of soft palate (C11.3).",
- "schema_num" : 21,
- "schema_selection_table" : "schema_selection_palate_soft",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aph",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_baq",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dao",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_spd",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "21"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_baq",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dao",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "schema_selection_palate_soft", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "extension_size_ajcc7_xfc", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "extension_baq", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "nodes_dao", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "size_aph", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "extension_size_ajcc6_xav", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:29.575Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_body_tail.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_body_tail.json
deleted file mode 100644
index be071eb32..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_body_tail.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "pancreas_body_tail",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PancreasBodyTail",
- "title" : "Body and Tail of Pancreas",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1, SSF2, SSF3\n\nC25.1 - Body of pancreas\nC25.2 - Tail of pancreas\n\n**Note**: For tumors of the islet cells, determine which subsite of the pancreas is involved and use that primary site code and corresponding Collaborative Stage schema. If the subsite cannot be determined, use the general code for Islets of Langerhans, C25.4, and use the Collaborative Stage schema for Pancreas, Other and Unspecified.",
- "schema_num" : 70,
- "schema_selection_table" : "schema_selection_pancreas_body_tail",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apg",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdf",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbm",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hap",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpe",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpd",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Mitotic Count",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpd",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "70"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdf",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbm",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hap",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ups",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qas",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppb", "ssf25_snt", "ssf1_jpe", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf3_lpd", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qas", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_ups", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpd", "mets_hap", "lymph_nodes_metsat_dxajcc6_xje", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "extension_size_xpe", "ssf6_ona", "nodes_exam_gpa", "extension_bdf", "ajcc6_n_codes", "size_apg", "schema_selection_pancreas_body_tail", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc7_inclusions_tae", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dbm", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:29.932Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_head.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_head.json
deleted file mode 100644
index d659db531..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_head.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "pancreas_head",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PancreasHead",
- "title" : "Head of Pancreas",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1, SSF2, SSF3\n\nC25.0 - Head of pancreas\n\n**Note**: For tumors of the islet cells, determine which subsite of the pancreas is involved and use that primary site code and the corresponding Collaborative Stage schema. If the subsite cannot be determined, use the general code for Islets of Langerhans, C25.4, and use the Collaborative Stage schema for Pancreas, Other and Unspecified.",
- "schema_num" : 69,
- "schema_selection_table" : "schema_selection_pancreas_head",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apg",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbv",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbn",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_haq",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpe",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpd",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Mitotic Count",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpd",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "69"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbv",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbn",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_haq",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ups",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qat",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppb", "extension_bbv", "ssf25_snt", "ssf1_jpe", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf3_lpd", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qat", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "schema_selection_pancreas_head", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_ups", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpd", "ajcc6_t_codes", "nodes_pos_fpa", "lymph_nodes_metsat_dxajcc6_xjf", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "extension_size_xpe", "ssf6_ona", "nodes_exam_gpa", "mets_haq", "ajcc6_n_codes", "size_apg", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc7_inclusions_tae", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dbn", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:30.284Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_other.json
deleted file mode 100644
index 3dd3a0c04..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pancreas_other.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "pancreas_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PancreasOther",
- "title" : "Other and Unspecified Pancreas",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1, SSF2, SSF3\n\nC25.3 - Pancreatic duct\nC25.4 - Islets of Langerhans\nC25.7 - Other specified parts of pancreas\nC25.8 - Overlapping lesion of pancreas\nC25.9 - Pancreas, NOS\n\n**Note**: For tumors of the islet cells, determine which subsite of the pancreas is involved and use that primary site code and the corresponding Collaborative Stage schema. If the subsite cannot be determined, use the general code for Islets of Langerhans, C25.4, and use the Collaborative Stage schema for Pancreas, Other and Unspecified.",
- "schema_num" : 71,
- "schema_selection_table" : "schema_selection_pancreas_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apg",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbu",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbl",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hao",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpe",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Serum Chromogranin A (CgA) Lab Value",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpd",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Mitotic Count",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpd",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "71"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbu",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbl",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hao",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ups",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tae",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qar",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "schema_selection_pancreas_other", "ajcc6_exclusions_ppb", "extension_bbu", "ssf25_snt", "ssf1_jpe", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf3_lpd", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "ajcc6_stage_qar", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_ups", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpd", "mets_hao", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "extension_size_xpe", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "size_apg", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc7_inclusions_tae", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dbl", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:30.408Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/parotid_gland.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/parotid_gland.json
deleted file mode 100644
index 716d6c906..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/parotid_gland.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "parotid_gland",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "ParotidGland",
- "title" : "Parotid Gland",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC07.9 - Parotid gland\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 27,
- "schema_selection_table" : "schema_selection_parotid_gland",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aph",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcv",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcv",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "27"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcv",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcv",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqn",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqc",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqn",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpr",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "ajcc6_stage_qpr", "cs_input_version_original", "mets_hpb", "ssf22_snq", "nodes_dcv", "lvi", "ajcc7_inclusions_tqn", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_stage_uqc", "schema_selection_parotid_gland", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "extension_size_xpf", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_exam_gpa", "ajcc6_n_codes", "size_aph", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "extension_bcv", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:30.565Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/penis.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/penis.json
deleted file mode 100644
index 9707cf79e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/penis.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "penis",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Penis",
- "title" : "Penis (excludes Malignant Melanoma, Merkel Cell Carcinoma, Kaposi Sarcoma, Mycosis Fungoides, Sezary Disease and Other Lymphomas)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF11, SSF12, SSF16\n\nC60.0 - Prepuce\nC60.1 - Glans penis\nC60.2 - Body of penis\nC60.8 - Overlapping lesion of penis\nC60.9 - Penis, NOS\n\n**Note 1**: This schema is NOT used for Malignant Melanoma, Merkel Cell Carcinoma of Penis, Kaposi Sarcoma, Mycosis Fungoides, Sezary Disease, or other Lymphomas. Each of these diseases has a separate schema.\n\n**Note 2**: Primary carcinoma of the urethra is to be coded C68.0 and assigned Collaborative Stage codes according to the Urethra schema.",
- "schema_num" : 119,
- "schema_selection_table" : "schema_selection_penis",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "9",
- "table" : "lvi",
- "used_for_staging" : true
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbs",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbj",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpe",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "Involvement of Corpus Spongiosum/Corpus Cavernosum",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_seq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "Poorly Differentiated Tumor Percentage",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_ser",
- "used_for_staging" : false
- }, {
- "key" : "ssf12",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_ses",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_sqv",
- "used_for_staging" : false
- }, {
- "key" : "ssf17",
- "name" : "Extranodal Extension of Regional Lymph Nodes",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "999",
- "table" : "ssf17_seu",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "119"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbs",
- "inputs" : [ "extension", "grade", "lvi" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbj",
- "inputs" : [ "nodes", "ssf17" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpe",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uav",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qps",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bbs", "ssf2_kna", "ajcc7_stage_uav", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ajcc6_stage_qps", "cs_input_version_original", "ssf22_snq", "mets_hpe", "lvi", "ssf14_sni", "ssf17_seu", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ssf16_sqv", "ajcc7_year_validation", "ssf21_snp", "extension_grade_lvi_xdm", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_inclusions_tpq", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf1_jna", "ajcc6_t_codes", "ssf10_seq", "nodes_dbj", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "ssf11_ser", "behavior", "lymph_node_extranodal_extension_xdn", "ssf18_snm", "mets_eval_ipa", "ssf12_ses", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "schema_selection_penis", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:30.689Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/peritoneum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/peritoneum.json
deleted file mode 100644
index 4f8bdbc21..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/peritoneum.json
+++ /dev/null
@@ -1,1220 +0,0 @@
-{
- "id" : "peritoneum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Peritoneum",
- "title" : "Peritoneum (excluding Gastrointestinal Stromal Tumors and Peritoneum Female Genital M-8000-8576, 8590-8671, 8930-8934, 8940-9110 for females)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF4\n\nM-8000-8934,8940-9136,9141-9582,9700-9701 for males\nM-8580-8589,8680-8921,9120-9136,9141-9582,9700-9701 for females\nC48.1 - Specified parts of peritoneum (including omentum and mesentery)\nC48.2 - Peritoneum, NOS\nC48.8 - Overlapping lesion of retroperitoneum and peritoneum\n\n**Note**: AJCC includes these sites with soft tissue sarcomas (C47.0-C48.9)",
- "schema_num" : 102,
- "schema_selection_table" : "schema_selection_peritoneum",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apu",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbr",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbi",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Grade for Sarcomas",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpm",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Neurovascular Invasion",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpk",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Bone Invasion",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpk",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Pathologic M1: Source of Pathologic Metastatic Specimen",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpf",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Peritoneum/PeritoneumFemaleGen",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "009",
- "table" : "ssf25_sqp",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "102"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbr",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbi",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpz",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqp",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ssf1_jpm",
- "inputs" : [ "ssf1" ],
- "outputs" : [ "grade_ssf1" ]
- }, {
- "id" : "ajcc7_stage_upm",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "grade_ssf1", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpz",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqp",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpi",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bbr", "ajcc6_exclusions_ppc", "ajcc7_inclusions_tpz", "ssf3_lpk", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpm", "histology", "cs_input_version_original", "mets_hpc", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_size_xqj", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upm", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_peritoneum", "ajcc6_t_codes", "nodes_dbi", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ssf25_sqp", "ajcc6_n_codes", "ssf2_kpk", "behavior", "ssf10_sne", "ssf18_snm", "ajcc6_stage_qpi", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "size_apu", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ssf4_mpf", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:30.828Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/peritoneum_female_gen.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/peritoneum_female_gen.json
deleted file mode 100644
index 573f1dbb5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/peritoneum_female_gen.json
+++ /dev/null
@@ -1,1217 +0,0 @@
-{
- "id" : "peritoneum_female_gen",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PeritoneumFemaleGen",
- "title" : "Peritoneum for Females Only",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF4, SSF5\n\nM-8000-8576, 8590-8671, 8930-8934, 8940-9110\nC48.1 - Specified parts of peritoneum (including omentum and mesentery)\nC48.2 - Peritoneum, NOS\nC48.8 - Overlapping lesion of retroperitoneum and peritoneum\n\n**Note 1**: AJCC only stages the carcinomas.\n\n**Note 2**: Information for female primary peritoneal carcinomas was collected using codes appropriate for staging sarcoma of the peritoneum in CS Version 1. AJCC 6 stage was assigned to some but not all of the histologies that are assigned AJCC 7 stage using this schema, PeritoneumFemaleGen, in CS Version 2. AJCC 6 stage continues to be assigned as sarcoma of the peritoneum for the histologies that were so assigned in CS Version 1.\n\n**Note 3**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 105,
- "schema_selection_table" : "schema_selection_peritoneum_female_gen",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_app",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfx",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfs",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcw",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carbohydrate Antigen 125 (CA-125)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpr",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "FIGO Stage",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpn",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "Residual Tumor Status and Size After Primary Cytoreduction Surgery",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Tumor Location after Primary Cytoreduction (Debulking) Surgery",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpr",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Malignant Ascites",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npl",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Peritoneum/PeritoneumFemaleGen",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "009",
- "table" : "ssf25_sqp",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "105"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfx",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfs",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcw",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqp",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_uby",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqa",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_sqp",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpi",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppc", "ssf3_lpt", "extension_bfx", "ajcc7_inclusions_tqa", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "ssf1_jpr", "mets_hcw", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf5_npl", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ssf25_sqp", "ajcc6_n_codes", "ssf2_kpn", "extension_size_xgn", "behavior", "ssf10_sne", "ssf18_snm", "ajcc6_stage_qpi", "mets_eval_ipa", "size_app", "extension_eval_cpa", "ajcc7_n_codes", "ajcc7_stage_uby", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "schema_selection_peritoneum_female_gen", "ssf4_mpr", "nodes_dfs", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:30.995Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pharyngeal_tonsil.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pharyngeal_tonsil.json
deleted file mode 100644
index 7066b43e6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pharyngeal_tonsil.json
+++ /dev/null
@@ -1,1216 +0,0 @@
-{
- "id" : "pharyngeal_tonsil",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PharyngealTonsil",
- "title" : "PharyngealTonsil (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC11.1 - Pharyngeal tonsil \n\n**Note**: CS Site-Specific Factor 25 is used to discriminate between posterior wall of nasopharynx, staged with nasopharynx, and pharyngeal tonsil, staged with oropharynx. Both sites are coded to ICD-O-3 code C11.1.",
- "schema_num" : 36,
- "schema_selection_table" : "schema_selection_pharyngeal_tonsil",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aph",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bey",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_det",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_spd",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: Nasopharynx/PharyngealTonsil",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "981",
- "table" : "ssf25_spj",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "36"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bey",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_det",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spj",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spj",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "lymph_nodes_size_csv1_xix", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_bey", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf25_spj", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_pharyngeal_tonsil", "extension_size_ajcc7_xdl", "ssf2_kpa", "ajcc6_t_codes", "extension_size_ajcc6_xdk", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_det", "nodes_exam_gpa", "ajcc6_n_codes", "size_aph", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ajcc6_stage_qpb", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "lymph_nodes_size_csv2_xiw", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:31.210Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pharynx_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pharynx_other.json
deleted file mode 100644
index dc0c2ab40..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pharynx_other.json
+++ /dev/null
@@ -1,1168 +0,0 @@
-{
- "id" : "pharynx_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "PharynxOther",
- "title" : "Pharynx, NOS, and Overlapping Lesion of Lip, Oral Cavity, and Pharynx (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC14.0 - Pharynx, NOS\nC14.2 - Waldeyer ring\nC14.8 - Overlapping lesion of lip, oral cavity\n\n**Note**: AJCC does not define TNM staging for these sites.",
- "schema_num" : 39,
- "schema_selection_table" : "schema_selection_pharynx_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apd",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdd",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcy",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpf",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_spd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "39"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdd",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcy",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpf",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "nodes_dcy", "cs_input_version_original", "ssf1_jpu", "ssf22_snq", "lvi", "mets_hpf", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "extension_eval_cna", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "schema_selection_pharynx_other", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "extension_bdd", "nodes_exam_gpa", "size_apd", "ajcc6_n_codes", "behavior", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:31.347Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/placenta.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/placenta.json
deleted file mode 100644
index be6ebc2f6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/placenta.json
+++ /dev/null
@@ -1,1210 +0,0 @@
-{
- "id" : "placenta",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Placenta",
- "title" : "Placenta",
- "notes" : "C58.9 - Placenta\n\n**Note 1**: This schema correlates to the AJCC's Gestational Trophoblastic Tumors scheme. In most cases, gestational trophoblastic tumors (ICD-O-3 morphology codes 9100-9105) are coded to placenta, C58.9.\n\n**Note 2**: If a trophoblastic tumor is not associated with a pregnancy and arises in another site, such as ovary, use the primary site code and Collaborative Staging schema for that site.\n\n**Note 3**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 118,
- "schema_selection_table" : "schema_selection_placenta",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbm",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "988",
- "table" : "nodes_dfm",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_eaa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fna",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gna",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hak",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Prognostic Scoring Index",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jaq",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "FIGO Stage",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kaw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "118"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbm",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfm",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_eaa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_eaa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hak",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpi",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uax",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_m", "ajcc7_t", "ssf1" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpi",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_paf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qau",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_t", "ssf1" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_paf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kaw", "ajcc7_stage_uax", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "nodes_exam_gna", "ssf22_snq", "extension_bbm", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qau", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ajcc7_inclusions_tpi", "nodes_pos_fna", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "mets_hak", "ssf1_jaq", "ajcc6_t_codes", "nodes_eval_eaa", "nodes_dfm", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "schema_selection_placenta", "ssf6_ona", "size_apa", "ajcc6_exclusions_paf", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:31.829Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pleura.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pleura.json
deleted file mode 100644
index a9671a1cc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/pleura.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "pleura",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Pleura",
- "title" : "Pleura (Including pleural mesothelioma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF3, SSF4, SSF5\n\nM-8000-9136,9141-9582,9700-9701 \nC38.4 - Pleura, NOS",
- "schema_num" : 93,
- "schema_selection_table" : "schema_selection_pleura",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbx",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbq",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hat",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Pleural Effusion",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jam",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- }, {
- "key" : "ssf2",
- "name" : "Histologic Subtype",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kbf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "History of Asbestos Exposure",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lat",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Presence of Chest Pain",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_maz",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Positron Emission Tomography (PET) Standardized Uptake Values (SUV)",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_naw",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "93"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbx",
- "inputs" : [ "extension", "ssf1" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbq",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hat",
- "inputs" : [ "nodes", "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uaq",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpf",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pam",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qam",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pam",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf25_snt", "extension_bbx", "ssf15_snj", "ajcc7_t_codes", "ajcc7_stage_uaq", "schema_selection_pleura", "ssf23_snr", "ssf2_kbf", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "pleural_effusion_extension_xbz", "lymph_nodes_metsat_dxajcc6_xki", "grade", "ajcc7_inclusions_tpf", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc6_stage_qam", "ssf4_maz", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jam", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ajcc6_exclusions_pam", "ssf7_snb", "ssf11_snf", "ssf3_lat", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "mets_hat", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf5_naw", "ssf9_snd", "ssf13_snh", "primary_site", "nodes_dbq", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:32.283Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/prostate.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/prostate.json
deleted file mode 100644
index a591dcb56..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/prostate.json
+++ /dev/null
@@ -1,1190 +0,0 @@
-{
- "id" : "prostate",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Prostate",
- "title" : "Prostate",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF14, SSF15\n\nC61.9 - Prostate gland\n\n**Note 1**: Transitional cell (urothelial) carcinoma of the prostatic urethra is to be coded to primary site C68.0, Urethra, and assigned Collaborative Stage codes according to the Urethra schema.\n\n**Note 2**: The 7th Edition AJCC stage group is derived not only from the T, N, and M categories but also from CS Site-Specific Factor 1 (PSA Lab Value) and CS Site-Specific Factor 8 or CS Site-Specific Factor 10 (Gleason's Score). The specific Gleason's Score used is dependent upon the values of CS Extension - Clinical Extension, CS Site-Specific Factor 3 (CS Extension - Pathologic Extension) and CS Tumor Size/Ext Eval as shown in the Special Calculation Table for TNM 7 Invasive/Unknown Pathologic Extension Eval and Special Calculation Table for TNM 7 Non-Invasive Pathologic Extension.",
- "schema_num" : 121,
- "schema_selection_table" : "schema_selection_prostate",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbo",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cab",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbf",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hal",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipb",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Prostatic Specific Antigen (PSA) Lab Value",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jav",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Prostatic Specific Antigen (PSA) Interpretation",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kab",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Extension - Pathologic Extension",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "960",
- "table" : "ssf3_lab",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- }, {
- "key" : "ssf4",
- "name" : "Prostate Apex Involvement (OBSOLETE: Prostatic Acid Phosphatase (PAP))",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_maf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "SEER_REQUIRED_PRE_2010", "COC_REQUIRED_PRE_2010" ]
- }, {
- "key" : "ssf5",
- "name" : "OBSOLETE - Gleason's Primary Pattern and Secondary Pattern Value",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nae",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "OBSOLETE - Gleason's Score",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oad",
- "used_for_staging" : false
- }, {
- "key" : "ssf7",
- "name" : "Gleason's Primary Pattern and Secondary Pattern Values on Needle Core Biopsy/Transurethral Resection of Prostate (TURP)",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "999",
- "table" : "ssf7_saw",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "Gleason's Score on Needle Core Biopsy/Transurethral Resection of Prostate (TURP)",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "999",
- "table" : "ssf8_sax",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf9",
- "name" : "Gleason's Primary Pattern and Secondary Pattern Values on Prostatectomy/Autopsy",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_say",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Gleason's Score on Prostatectomy/Autopsy",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_saz",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf11",
- "name" : "Gleason's Tertiary Pattern Value on Prostatectomy/Autopsy",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sba",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "Number of Cores Positive",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "999",
- "table" : "ssf12_sbb",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf13",
- "name" : "Number of Cores Examined",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "999",
- "table" : "ssf13_sbc",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf14",
- "name" : "Needle Core Biopsy Findings",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sbd",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Clinical Staging Procedures Performed",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_sbe",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "121"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "determine_correct_table_for_t_ns28",
- "inputs" : [ "extension", "ssf8", "ssf3", "extension_eval", "ssf10" ],
- "outputs" : [ "temp_summ_t", "temp_ajcc_t", "t77", "ajcc6_tdescriptor", "ajcc7_tdescriptor", "t2000", "gleason", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbf",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hal",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpv",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubp",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "gleason", "ajcc7_t", "ssf1" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpv",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pag",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qaj",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pag",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc7_inclusions_tpv", "ssf25_snt", "ajcc7_t_codes", "ssf23_snr", "extension_eval_6_cab", "schema_selection_prostate", "histology", "special_calculation_non_invasive_pathologic_extension_xdr_xdt_xdq", "ssf14_sbd", "cs_input_version_original", "extension_sstg_bbo", "extension_bbo", "ssf22_snq", "lvi", "ssf3_sstg_lab", "ajcc_tdescriptor_cleanup", "ssf3_lab", "ajcc7_year_validation", "ssf21_snp", "ssf4_maf", "ssf17_snl", "ajcc_descriptor_codes", "special_calculation_invasive_unknown_pathologic_extension_xds_xdu_xdq", "ajcc6_stage_qaj", "extension_eval_cab", "ssf15_sbe", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_stage_qaj_grade", "mets_hal", "ssf6_oad", "ssf11_sba", "ajcc6_t_codes", "ssf1_jav", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_saw", "nodes_dbf", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_exclusions_pag", "ajcc6_n_codes", "behavior", "ssf10_saz", "mets_eval_ipb", "ssf18_snm", "ssf13_sbc", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_say", "ajcc7_stage_ubp", "ssf12_sbb", "primary_site", "ajcc6_year_validation", "ssf2_kab", "determine_correct_table_for_t_ns28", "ajcc6_m_codes", "nodes_eval_epa", "ssf8_sax", "cs_year_validation", "ssf5_nae", "ssf24_sns" ],
- "last_modified" : "2020-06-30T19:47:33.004Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/rectum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/rectum.json
deleted file mode 100644
index e81c13a0e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/rectum.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "rectum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Rectum",
- "title" : "Rectosigmoid, Rectum (excluding Gastrointestinal Stromal Tumor and Neuroendocrine Tumor)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF5, SSF7, SSF10\n\nM-8000-8152,8154-8231,8243-8245,8247,8248,8250-8934,8940-9136,9141-9582,9700-9701 \nC19.9 - Rectosigmoid junction\nC20.9 - Rectum, NOS",
- "schema_num" : 56,
- "schema_selection_table" : "schema_selection_rectum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aae",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbf",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dax",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hag",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipb",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kpp",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpe",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf4",
- "name" : "Tumor Deposits",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpb",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Tumor Regression Grade",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npb",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Circumferential Resection Margin (CRM)",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opb",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Microsatellite Instability (MSI)",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spf",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Perineural Invasion",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "999",
- "table" : "ssf8_spg",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf9",
- "name" : "KRAS",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_sph",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "18q Loss of Heterozygosity (LOH)",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spi",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "56"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbf",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dax",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "cs_input_version_original", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hag",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upw",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpf",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppd", "size_aae", "ssf25_snt", "ssf7_spf", "ssf1_jpf", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf3_lpe", "histology", "extension_bbf", "ssf6_opb", "cs_input_version_original", "ssf22_snq", "ssf10_spi", "lvi", "ssf14_sni", "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi", "ajcc_tdescriptor_cleanup", "schema_selection_rectum", "ajcc7_year_validation", "ssf21_snp", "ssf5_npb", "ssf17_snl", "ssf9_sph", "ajcc_descriptor_codes", "lymph_nodes_clinical_evaluation_ajcc6_xbi", "ajcc7_inclusions_tpc", "ajcc7_stage_upw", "grade", "ssf8_spg", "summary_stage_rpa", "ajcc7_m_codes", "lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpb", "ajcc_mdescriptor_cleanup", "mets_hag", "ssf11_snf", "determine_correct_table_for_ajcc6_n_ns24", "ss_codes", "determine_correct_table_for_ajcc7_n_ns25", "nodes_exam_gpa", "ssf2_kpp", "ajcc6_n_codes", "nodes_dax", "behavior", "mets_eval_ipb", "ssf18_snm", "ajcc6_stage_qpf", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpb", "ajcc6_stage_codes", "ssf19_snn", "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "lymph_nodes_clinical_eval_v0205_ajcc7_xch", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:33.166Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/respiratory_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/respiratory_other.json
deleted file mode 100644
index 2d235642c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/respiratory_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "respiratory_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "RespiratoryOther",
- "title" : "Other and Ill-Defined Respiratory Sites and Intrathoracic Organs",
- "notes" : "C39.0 - Upper respiratory tract, NOS\nC39.8 - Overlapping lesion of respiratory system and intrathoracic organs\nC39.9 - Ill-defined sites within respiratory system\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 94,
- "schema_selection_table" : "schema_selection_respiratory_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bce",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbv",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "94"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bce",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbv",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_bce", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "nodes_dbv", "schema_selection_respiratory_other", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:33.295Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/retinoblastoma.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/retinoblastoma.json
deleted file mode 100644
index e87a6147b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/retinoblastoma.json
+++ /dev/null
@@ -1,1142 +0,0 @@
-{
- "id" : "retinoblastoma",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Retinoblastoma",
- "title" : "Retinoblastoma",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF4, SSF5, SSF6\n\nM-9510-9514\nC69.0 - Conjunctiva\nC69.1 - Cornea, NOS\nC69.2 - Retina\nC69.3 - Choroid\nC69.4 - Ciliary Body\nC69.5 - Lacrimal Gland\nC69.6 - Orbit, NOS\nC69.8 - Overlapping lesion of eye and adnexa\nC69.9 - Eye, NOS\n\n**Note 1**: Laterality must be coded for this site.\n\n**Note 2**: Code all retinoblastomas using this schema, including retinoblastomas described in other parts of eye. AJCC TNM categories will be derived for retinoblastomas with a primary site code of C69.2 only.",
- "schema_num" : 141,
- "schema_selection_table" : "schema_selection_retinoblastoma",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcu",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cac",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcj",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbn",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Extension Evaluated at Enucleation",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "960",
- "table" : "ssf1_jat",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_VERSION_0202_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Retinoblastoma (RB) Gene Mutation",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kbb",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Family History of Retinoblastoma",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lao",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Primary Globe-Sparing Treatment Failure",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mat",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Linear Choroidal Invasion",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_naq",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Clinical Extension for Second Eye",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oao",
- "used_for_staging" : false
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "141"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "special_calculation_tablefor_ajcct_xiu",
- "inputs" : [ "extension", "extension_eval", "ssf1" ],
- "outputs" : [ "temp_ajcc_t", "ajcc6_tdescriptor", "ajcc7_tdescriptor", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "special_calculation_tablefor_seersummary_stage_xiv",
- "inputs" : [ "extension", "ssf1" ],
- "outputs" : [ "temp_summ_t", "t77", "t2000" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcj",
- "inputs" : [ "mets_eval", "nodes", "mets", "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor", "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "determine_correct_table_for_ajcc6_neval_ns31",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes", "mets", "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbn",
- "inputs" : [ "mets_eval", "nodes", "mets", "nodes_eval" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000", "ajcc6_mdescriptor" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "determine_correct_table_for_ajcc6_meval_ns30",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval", "nodes", "mets" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpk",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_unb",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpk",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qnb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "metsat_dxmets_eval_ajcc7_xfg", "determine_correct_table_for_ajcc6_meval_ns30", "ssf25_snt", "ajcc7_stage_unb", "ssf15_snj", "ajcc7_t_codes", "extension_eval_6_cac", "ssf23_snr", "histology", "ssf2_kbb", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ssf1_sstg_jat", "lymph_nodes_metsat_dxajcc6_xfh_n", "ajcc_tdescriptor_cleanup", "lymph_nodes_metsat_dxajcc6_xfh_m", "ssf4_mat", "mets_hbn", "ajcc6_stage_qnb", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "extension_sstg_bcu", "extension_eval_cac", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_inclusions_tpk", "schema_selection_retinoblastoma", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jat", "ajcc6_t_codes", "ssf6_oao", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "determine_correct_table_for_ajcc6_neval_ns31", "size_apa", "nodes_exam_gpa", "ssf3_lao", "special_calculation_tablefor_ajcct_xiu", "ajcc6_n_codes", "behavior", "metsat_dxmets_eval_ajcc6_xck", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "ajcc7_n_codes", "ajcc6_stage_codes", "extension_bcu", "nodes_dcj", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "determine_correct_table_for_ajcc6_m_ns29", "ssf5_naq", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "special_calculation_tablefor_seersummary_stage_xiv", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:33.797Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/retroperitoneum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/retroperitoneum.json
deleted file mode 100644
index 2aed94d27..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/retroperitoneum.json
+++ /dev/null
@@ -1,1211 +0,0 @@
-{
- "id" : "retroperitoneum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Retroperitoneum",
- "title" : "Retroperitoneum",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF3, SSF4\n\nC48.0 - Retroperitioneum",
- "schema_num" : 103,
- "schema_selection_table" : "schema_selection_retroperitoneum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apu",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bfv",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dfq",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Grade for Sarcomas",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpm",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Neurovascular Invasion",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpk",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Bone Invasion",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpk",
- "used_for_staging" : false
- }, {
- "key" : "ssf4",
- "name" : "Pathologic M1: Source of Pathologic Metastatic Specimen",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpf",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "103"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bfv",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dfq",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tab",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf1_jpm",
- "inputs" : [ "ssf1" ],
- "outputs" : [ "grade_ssf1" ]
- }, {
- "id" : "ajcc7_stage_upm",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "grade_ssf1", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tab",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpi",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "extension_bfv", "ajcc6_exclusions_ppc", "ssf3_lpk", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpm", "histology", "cs_input_version_original", "ajcc7_inclusions_tab", "mets_hpc", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_size_xqj", "ajcc7_year_validation", "ssf21_snp", "schema_selection_retroperitoneum", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upm", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "ssf2_kpk", "behavior", "ssf10_sne", "ssf18_snm", "ajcc6_stage_qpi", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "size_apu", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dfq", "ajcc6_m_codes", "nodes_eval_epa", "ssf4_mpf", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:33.945Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/salivary_gland_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/salivary_gland_other.json
deleted file mode 100644
index a65251693..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/salivary_gland_other.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "salivary_gland_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SalivaryGlandOther",
- "title" : "Other and Unspecified Major Salivary Glands",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC08.1 - Sublingual gland\nC08.8 - Overlapping lesion of major salivary glands\nC08.9 - Major salivary gland, NOS\n\n**Note**: Laterality must be coded for C08.1.",
- "schema_num" : 29,
- "schema_selection_table" : "schema_selection_salivary_gland_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aph",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bba",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_das",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "29"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bba",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_das",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqn",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqc",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqn",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpr",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "extension_bba", "histology", "ssf6_opa", "ssf3_lpa", "ajcc6_stage_qpr", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ajcc7_inclusions_tqn", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "lymph_nodes_size_xpd", "ajcc7_year_validation", "ssf21_snp", "ajcc7_stage_uqc", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "extension_size_xpf", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_exam_gpa", "schema_selection_salivary_gland_other", "ajcc6_n_codes", "size_aph", "behavior", "nodes_das", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:34.076Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/scrotum.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/scrotum.json
deleted file mode 100644
index b5afb28b1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/scrotum.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "scrotum",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Scrotum",
- "title" : "Scrotum (excluding Malignant Melanoma, Merkel Cell Carcinoma, Kaposi Sarcoma, Mycosis Fungoides, Sezary Disease, and Other Lymphomas)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF10, SSF11\n\nC63.2 - Scrotum, NOS\n\n**Note**: Melanoma (M-8720-8790) of scrotum is included in the Melanoma schema. Merkel cell carcinoma (M-8247) of the scrotum is included in the MerkelCellScrotum schema. Mycosis Fungoides (M-9700) or Sezary disease (M-9701) of scrotum is included in the MycosisFungoides schema. Kaposi sarcoma (M-9140) of the scrotum is included in the KaposiSarcoma schema. Lymphoma of the scrotum is included in the Lymphoma schema.",
- "schema_num" : 124,
- "schema_selection_table" : "schema_selection_scrotum",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apl",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdo",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddj",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpe",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpp",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "Clark Level",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sqs",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Perineural Invasion",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sqt",
- "used_for_staging" : false
- }, {
- "key" : "ssf12",
- "name" : "High Risk Features",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "999",
- "table" : "ssf12_sev",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_squ",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "124"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdo",
- "inputs" : [ "extension", "size", "ssf12" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddj",
- "inputs" : [ "ssf16", "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpe",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uay",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpt",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "ajcc7_stage_uay", "nodes_ddj", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ajcc6_stage_qpt", "ssf1_jpp", "cs_input_version_original", "ssf22_snq", "mets_hpe", "lvi", "ssf14_sni", "ssf16_squ", "ssf11_sqt", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf10_sqs", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_inclusions_tpq", "ssf20_sno", "schema_selection_scrotum", "ajcc_ndescriptor_cleanup", "ajcc6_t_codes", "lymph_nodes_size_ajcc7_xfb", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "extension_size_high_risk_xfa", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "extension_bdo", "extension_size_ajcc6_xqb", "size_apl", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf12_sev", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:34.283Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_ethmoid.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_ethmoid.json
deleted file mode 100644
index 49f0b20c6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_ethmoid.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "sinus_ethmoid",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SinusEthmoid",
- "title" : "Ethmoid Sinus (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC31.1 - Ethmoid sinus",
- "schema_num" : 78,
- "schema_selection_table" : "schema_selection_sinus_ethmoid",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bay",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcm",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "78"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bay",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcm",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "nodes_dcm", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "lymph_nodes_size_xpd", "ajcc7_year_validation", "extension_bay", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "schema_selection_sinus_ethmoid", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:34.438Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_maxillary.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_maxillary.json
deleted file mode 100644
index 6a3a9e226..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_maxillary.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "sinus_maxillary",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SinusMaxillary",
- "title" : "Maxillary Sinus (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC31.0 - Maxillary sinus\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 76,
- "schema_selection_table" : "schema_selection_sinus_maxillary",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bax",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcw",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "76"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bax",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcw",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "schema_selection_sinus_maxillary", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "nodes_dcw", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "lymph_nodes_size_xpd", "ajcc7_year_validation", "ssf21_snp", "extension_bax", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:34.574Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_other.json
deleted file mode 100644
index dae06d534..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/sinus_other.json
+++ /dev/null
@@ -1,1116 +0,0 @@
-{
- "id" : "sinus_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SinusOther",
- "title" : "Accessory (Paranasal) Sinuses (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC31.2 - Frontal sinus\nC31.3 - Sphenoid sinus\nC31.8 - Overlapping lesion of accessory sinuses\nC31.9 - Accessory sinus, NOS\n\n**Note 1**: Laterality must be coded for frontal sinus, C31.2\n\n**Note 2**: AJCC does not define TNM staging for these sites.",
- "schema_num" : 80,
- "schema_selection_table" : "schema_selection_sinus_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdk",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_daq",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpf",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "80"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdk",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_daq",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpf",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "ssf1_jpu", "ssf22_snq", "lvi", "mets_hpf", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "extension_eval_cna", "ajcc6_stage_qna", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_daq", "size_apa", "nodes_exam_gpa", "schema_selection_sinus_other", "ajcc6_n_codes", "extension_bdk", "behavior", "ssf18_snm", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:34.723Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/skin.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/skin.json
deleted file mode 100644
index d7d9a379e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/skin.json
+++ /dev/null
@@ -1,1209 +0,0 @@
-{
- "id" : "skin",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Skin",
- "title" : "Skin (excluding Skin of Eyelid and Malignant Melanoma, Merkel Cell Carcinoma, Kaposi Sarcoma, Mycosis Fungoides, Sezary Disease, and Other Lymphomas)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF10\n\nC44.0 - Skin of lip, NOS\nC44.2 - External ear\nC44.3 - Skin of other and unspecified parts of face\nC44.4 - Skin of scalp and neck\nC44.5 - Skin of trunk\nC44.6 - Skin of upper limb and shoulder\nC44.7 - Skin of lower limb and hip\nC44.8 - Overlapping lesion of skin\nC44.9 - Skin, NOS\n\n**Note**: Laterality must be coded for C44.2-C44.3 and C44.5-C44.7. For codes C44.3 and C44.5, code 5 (midline) in the laterality field if the tumor is midline (e.g., chin).",
- "schema_num" : 96,
- "schema_selection_table" : "schema_selection_skin",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apl",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bca",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbt",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpe",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jpp",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "Clark Level",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sqs",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Perineural Invasion",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sqt",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "High Risk Features",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "999",
- "table" : "ssf12_sew",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_squ",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "96"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bca",
- "inputs" : [ "extension", "size", "ssf12" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbt",
- "inputs" : [ "ssf16", "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpe",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubg",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qav",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf1_jpp", "cs_input_version_original", "ssf22_snq", "mets_hpe", "lvi", "extension_size_ajcc6_xfw", "ssf14_sni", "ssf16_squ", "ssf11_sqt", "lymph_nodes_size_ajcc7_xfz", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc6_stage_qav", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf10_sqs", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_inclusions_tpq", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ajcc6_t_codes", "extension_size_high_risk_xfy", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "size_apl", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf12_sew", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_bca", "ajcc7_stage_ubg", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "schema_selection_skin", "nodes_dbt", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:34.907Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/skin_eyelid.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/skin_eyelid.json
deleted file mode 100644
index 3a8a705d4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/skin_eyelid.json
+++ /dev/null
@@ -1,1198 +0,0 @@
-{
- "id" : "skin_eyelid",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SkinEyelid",
- "title" : "Skin of Eyelid",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF1, SSF2, SSF4, SSF5, SSF7, SSF9, SSF11, SSF12, SSF13, SSF14, SSF15, SSF16\n\nC44.1 - Eyelid\n\n**Note**: Laterality must be coded for this site.",
- "schema_num" : 97,
- "schema_selection_table" : "schema_selection_skin_eyelid",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_app",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdg",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dde",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hcu",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Measured Thickness (Depth) for Squamous Cell Carcinoma",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbl",
- "used_for_staging" : false
- }, {
- "key" : "ssf2",
- "name" : "Clark Level",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kaz",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Clinical Status of Lymph Nodes",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lap",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mbg",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Sentinel Lymph Node Biopsy",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nar",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "Perineural Invasion",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_oak",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf7",
- "name" : "Tumor Necrosis",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_scq",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Pagetoid Spread",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sdd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf9",
- "name" : "Mohs Layers",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_sdi",
- "used_for_staging" : false
- }, {
- "key" : "ssf10",
- "name" : "Prior Radiation",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_scm",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf11",
- "name" : "Human Immunodeficiency Virus (HIV) Status",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_scj",
- "used_for_staging" : false
- }, {
- "key" : "ssf12",
- "name" : "Solid Organ Transplant",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sck",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "Leukemia",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_scl",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "Multiple Carcinomas",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_scn",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Muir-Torre Syndrome",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_sco",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "Xeroderma Pigmentosa",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_scp",
- "used_for_staging" : false
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "97"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdg",
- "inputs" : [ "year_dx", "extension", "size", "ssf6", "cs_input_version_original" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dde",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epb",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epb",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hcu",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uaf",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pab",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qnb",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_pab",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf8_sdd", "nodes_dde", "ssf7_scq", "ssf25_snt", "ssf4_mbg", "extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm", "extension_size_ajcc6_table_csv1_xjb", "ssf10_scm", "determine_correct_table_for_ajcc6_t_ns39", "ajcc7_t_codes", "ssf23_snr", "histology", "ajcc7_stage_uaf", "extension_size_perineural_invasion888988_ajcc7_xic", "cs_input_version_original", "mets_hcu", "ssf11_scj", "ssf22_snq", "ssf9_sdi", "ssf2_kaz", "lvi", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qnb", "ssf12_sck", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "determine_correct_table_for_ajcc7_t_ns38", "extension_size_perineural_invasion888988_ajcc6_table_csv2_xij", "grade", "extension_size_perineural_invasion_positive_ajcc7_xgk", "summary_stage_rpa", "ajcc7_m_codes", "ssf13_scl", "ssf20_sno", "ajcc_ndescriptor_cleanup", "extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf6_oak", "ssf14_scn", "ajcc6_exclusions_pab", "ss_codes", "ssf3_lap", "nodes_exam_gpa", "extension_bdg", "ajcc6_n_codes", "behavior", "schema_selection_skin_eyelid", "extension_size_perineural_invasion_negativeor_unknown_ajcc7_xgj", "ssf15_sco", "ssf18_snm", "ssf1_jbl", "mets_eval_ipa", "size_app", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf16_scp", "primary_site", "ajcc6_year_validation", "ssf5_nar", "ajcc6_m_codes", "cs_year_validation", "nodes_eval_epb", "ssf24_sns" ],
- "last_modified" : "2020-06-30T19:47:35.280Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/small_intestine.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/small_intestine.json
deleted file mode 100644
index 076dc7579..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/small_intestine.json
+++ /dev/null
@@ -1,1208 +0,0 @@
-{
- "id" : "small_intestine",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SmallIntestine",
- "title" : "Small Intestine (excluding Gastrointestinal Stromal Tumor and Neuroendocrine Tumor)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF4, SSF5\n\nM-8000-8152,8154-8231,8243-8245,8247,8248,8250-8934,8940-9136,9141-9582,9700-9701 \nC17.0 - Duodenum\nC17.1 - Jejunum\nC17.2 - Ileum (excluding ileocecal valve C18.0)\nC17.3 - Meckel diverticulum (site of neoplasm)\nC17.8 - Overlapping lesion of small intestine\nC17.9 - Small intestine, NOS",
- "schema_num" : 47,
- "schema_selection_table" : "schema_selection_small_intestine",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbe",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_daw",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbo",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jcg",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "999",
- "table" : "ssf2_kbw",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf3",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpe",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf4",
- "name" : "Crohn Disease",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mbi",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "Microsatellite Instability",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nbb",
- "used_for_staging" : false
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "47"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbe",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_daw",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "cs_input_version_original", "ssf2" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbo",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqk",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ual",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqk",
- "inputs" : [ "site", "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpn",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "lymph_nodes_clinical_eval_v0205_ajcc7_xao", "ajcc6_exclusions_ppd", "ssf4_mbi", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf3_lpe", "ajcc7_stage_ual", "ajcc7_inclusions_tqk", "histology", "schema_selection_small_intestine", "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg", "extension_bbe", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ssf2_kbw", "ajcc_tdescriptor_cleanup", "mets_hbo", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xdg", "determine_correct_table_for_ajcc7_n_ns5", "ajcc6_t_codes", "nodes_pos_fpb", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "nodes_daw", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nbb", "ajcc6_stage_qpn", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf1_jcg", "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdf", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:35.501Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/soft_tissue.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/soft_tissue.json
deleted file mode 100644
index 93e4acd32..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/soft_tissue.json
+++ /dev/null
@@ -1,1212 +0,0 @@
-{
- "id" : "soft_tissue",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SoftTissue",
- "title" : "Peripheral Nerves and Autonomic Nervous System; Connective, Subcutaneous, and Other Soft Tissues",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF4\n\nM-8000-9136,9141-9582,9700-9701\nC47.0 - Peripheral nerves and autonomic nervous system of head, face and neck\nC47.1 - Peripheral nerves and autonomic nervous system of upper limb and shoulder\nC47.2 - Peripheral nerves and autonomic nervous system of lower limb and hip\nC47.3 - Peripheral nerves and autonomic nervous system of thorax\nC47.4 - Peripheral nerves and autonomic nervous system of abdomen\nC47.5 - Peripheral nerves and autonomic nervous system of pelvis\nC47.6 - Peripheral nerves and autonomic nervous system of trunk, NOS\nC47.8 - Overlapping lesion of peripheral nerves and autonomic nervous system\nC47.9 - Autonomic nervous system, NOS\nC49.0 - Connective, subcutaneous and other soft tissues of head, face, and neck\nC49.1 - Connective, subcutaneous and other soft tissues of upper limb and shoulder\nC49.2 - Connective, subcutaneous and other soft tissues of lower limb and hip\nC49.3 - Connective, subcutaneous and other soft tissues of thorax\nC49.4 - Connective, subcutaneous and other soft tissues of abdomen\nC49.5 - Connective, subcutaneous and other soft tissues of pelvis\nC49.6 - Connective, subcutaneous and other soft tissues of trunk\nC49.9 - Connective, subcutaneous and other soft tissues, NOS\nC49.8 - Overlapping lesion of connective, subcutaneous and other soft tissues\n\n**Note 1**: Laterality must be coded for C47.1-C47.2 and C49.1-C49.2.\n\n**Note 2**: Soft tissue sarcomas of the heart and mediastinum (C38.0-C38.3 and C38.9) use the Heart, Mediastinum schema.",
- "schema_num" : 101,
- "schema_selection_table" : "schema_selection_soft_tissue",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aat",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbz",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbs",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpc",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Grade for Sarcomas",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpm",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Neurovascular Invasion",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpk",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Bone Invasion",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpk",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Pathologic M1: Source of Pathologic Metastatic Specimen",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mpf",
- "used_for_staging" : false
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "101"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbz",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbs",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpc",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tps",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf1_jpm",
- "inputs" : [ "ssf1" ],
- "outputs" : [ "grade_ssf1" ]
- }, {
- "id" : "ajcc7_stage_ubj",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "grade_ssf1", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tps",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbv",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppc",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc6_exclusions_ppc", "ajcc7_inclusions_tps", "ssf3_lpk", "extension_bbz", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf1_jpm", "histology", "size_aat", "cs_input_version_original", "mets_hpc", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_stage_qbv", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ss_codes", "schema_selection_soft_tissue", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "ssf2_kpk", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dbs", "ajcc6_m_codes", "ajcc7_stage_ubj", "nodes_eval_epa", "extension_size_xfn", "ssf4_mpf", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:35.665Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/stomach.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/stomach.json
deleted file mode 100644
index 6fa79462c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/stomach.json
+++ /dev/null
@@ -1,1215 +0,0 @@
-{
- "id" : "stomach",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Stomach",
- "title" : "Stomach (excluding Gastrointestinal Stromal Tumor and Neuroendocrine Tumor)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF2, SSF13, SSF14, SSF15\n\nC16.1 - Fundus of stomach\nC16.2 - Body of stomach\nC16.3 - Gastric antrum\nC16.4 - Pylorus\nC16.5 - Lesser curvature of stomach, NOS\nC16.6 - Greater curvature of stomach, NOS\nC16.8 - Overlapping lesion of stomach\nC16.9 - Stomach, NOS",
- "schema_num" : 44,
- "schema_selection_table" : "schema_selection_stomach",
- "schema_discriminators" : [ "ssf25" ],
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aah",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bal",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dak",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hac",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Clinical Assessment of Regional Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jax",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "Specific Location of Tumor",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kal",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "Carcinoembryonic Antigen (CEA)",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sdr",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "Carcinoembryonic Antigen (CEA) Lab Value",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sds",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Carbohydrate Antigen 19-9 (CA 19-9) Lab Value",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_sdt",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "Schema Discriminator: EsophagusGEJunction (EGJ)/Stomach",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "999",
- "table" : "ssf25_spv",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION", "NPCR_REQUIRED_2004_FORWARD" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "44"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bal",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dak",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "cs_input_version_original", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hac",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqj",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spv",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc7_stage_uam",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqj",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ssf25_spv",
- "inputs" : [ "ssf25" ],
- "outputs" : [ "schema" ]
- }, {
- "id" : "ajcc6_stage_qpl",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "lymph_nodes_clinical_eval_v0205_ajcc7_xam", "ajcc6_exclusions_ppd", "size_aah", "ssf2_kal", "lymph_nodes_clinical_evaluation_ajcc6_xbe", "ajcc7_t_codes", "ssf23_snr", "ajcc7_inclusions_tqj", "ssf13_sdr", "ajcc7_stage_uam", "histology", "cs_input_version_original", "lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp", "ssf22_snq", "lvi", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "extension_bal", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "ssf25_spv", "nodes_pos_fpb", "mets_hac", "ssf1_jax", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_dak", "nodes_exam_gpa", "determine_correct_table_for_ajcc6_n_ns26", "determine_correct_table_for_ajcc7_n_ns27", "ajcc6_n_codes", "behavior", "schema_selection_stomach", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf14_sds", "ssf19_snn", "ajcc7_stage_codes", "ajcc6_stage_qpl", "ssf9_snd", "primary_site", "ajcc6_year_validation", "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi", "ajcc6_m_codes", "nodes_eval_epa", "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdh", "cs_year_validation", "ssf15_sdt", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:35.864Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/submandibular_gland.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/submandibular_gland.json
deleted file mode 100644
index ccb4a1918..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/submandibular_gland.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "submandibular_gland",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "SubmandibularGland",
- "title" : "Submandibular Gland",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC08.0 - Submandibular gland\n\n**Note**: Laterality must be coded for C08.0.",
- "schema_num" : 28,
- "schema_selection_table" : "schema_selection_submandibular_gland",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aph",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_baz",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dar",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "28"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_baz",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dar",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqn",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uqc",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tqn",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpr",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "schema_selection_submandibular_gland", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "ajcc6_stage_qpr", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ajcc7_inclusions_tqn", "ssf14_sni", "ajcc_tdescriptor_cleanup", "extension_baz", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_stage_uqc", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "extension_size_xpf", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_dar", "nodes_exam_gpa", "ajcc6_n_codes", "size_aph", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:36.019Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/testis.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/testis.json
deleted file mode 100644
index e064a6fb8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/testis.json
+++ /dev/null
@@ -1,1228 +0,0 @@
-{
- "id" : "testis",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Testis",
- "title" : "Testis",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF12, SSF14\n\nC62.0 - Undescended testis\nC62.1 - Descended testis\nC62.9 - Testis, NOS\n\n**Note 1**: Instructions for coding pre- or post-orchiectomy tumor marker values were ambiguous for CS version 1 and there was variation in data collection by registrars. Furthermore, AJCC 7th Edition clarified that S value stage group IS is to be calculated based on the persistence of elevated serum tumor markers after surgery. As a consequence, there is uncertainly about the reliability of the data for the S parameter in data collected with CS version 1. The data elements and codes have been modified in CS version 2 to calculate the S value correctly. Any analysis of testis staging over time relying on the tumor marker data collected in CS version 1 might require review of medical records to verify the appropriate preoperative tumor marker values and the presence of persistent tumor markers post-orchiectomy.\n\n**Note 2**: CS version 2 corrects some version 1 errors in the calculation of the N category. For this reason, analysis of data originally collected in version 1 may show a different distribution of N categories and stage groups once the version 2 algorithm is run to re-derive AJCC 6th edition staging.\n\n**Note 3**: For cases collected in CSv1, the T category is derived using the Extension Orchiectomy LVI AJCC 6 Table CSv1, the S value is derived using the Serum Tumor Marker S Value Table Based on CS SSF 1, 2, 3, and the AJCC 6th Edition stage is derived using the AJCC TNM 6 Stage CSv1 table.\n\n**Note 4**: For cases collected in CSv2, the T category is derived using the Extension Orchiectomy LVI AJCC 6 Table CSv2 or the Extension Orchiectomy LVI AJCC 7 Table, the S value is derived using the Post-orchiectomy Serum Marker S Value Table Based on SSF 13, 15, 16, and the AJCC 6th and 7th Edition stages are derived using the AJCC TNM 6 Stage table and AJCC TNM 7 Stage table.\n\n**Note 5**: Laterality must be coded for this site.",
- "schema_num" : 122,
- "schema_selection_table" : "schema_selection_testis",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "9",
- "table" : "lvi",
- "used_for_staging" : true
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdh",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_ddf",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpc",
- "used_for_staging" : true
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipb",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "OBSOLETE - Alpha Fetoprotein (AFP)",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jal",
- "used_for_staging" : true
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Human Chorionic Gonadotropin (hCG)",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kad",
- "used_for_staging" : true
- }, {
- "key" : "ssf3",
- "name" : "OBSOLETE - Lactate Dehydrogenase (LDH)",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lad",
- "used_for_staging" : true
- }, {
- "key" : "ssf4",
- "name" : "Radical Orchiectomy Performed",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mac",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf5",
- "name" : "Size of Metastasis in Lymph Nodes",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_nab",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf6",
- "name" : "Pre-Orchiectomy Alpha Fetoprotein (AFP) Lab Value",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oay",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf7",
- "name" : "Pre-Orchiectomy Alpha Fetoprotein (AFP) Range",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "999",
- "table" : "ssf7_seh",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "Pre-Orchiectomy Human Chorionic Gonadotropin (hCG) Lab Value",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_sei",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART" ]
- }, {
- "key" : "ssf9",
- "name" : "Pre-Orchiectomy Human Chorionic Gonadotropin (hCG) Range",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_sej",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Pre-Orchiectomy Lactate Dehydrogenase (LDH) Range",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_sek",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_IVB_COLLECT_IF_IN_CLINICAL_CHART", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "OBSOLETE - Persistence of Elevated Serum Tumor Markers",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_sel",
- "used_for_staging" : false
- }, {
- "key" : "ssf12",
- "name" : "Post-Orchiectomy Alpha Fetoprotein (AFP) Lab Value",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sfd",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "Post-Orchiectomy Alpha Fetoprotein (AFP) Range",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "999",
- "table" : "ssf13_sfe",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf14",
- "name" : "Post-Orchiectomy Human Chorionic Gonadotropin (hCG) Lab Value",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sff",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Post-Orchiectomy Human Chorionic Gonadotropin (hCG) Range",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "999",
- "table" : "ssf15_sfg",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf16",
- "name" : "Post-Orchiectomy Lactate Dehydrogenase (LDH) Range",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "999",
- "table" : "ssf16_sfh",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "122"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdh",
- "inputs" : [ "year_dx", "extension", "ssf4", "cs_input_version_original", "lvi" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_ddf",
- "inputs" : [ "nodes_pos", "nodes", "nodes_eval", "ssf5" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipb",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpj",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "postorchiectomy_serum_tumor_marker_svalue_table_basedon_ssf131516_xgr",
- "inputs" : [ "ssf15", "ssf16", "ssf13" ],
- "outputs" : [ "s_131516" ]
- }, {
- "id" : "serum_tumor_marker_svalue_table_basedon_csssf123_xcj",
- "inputs" : [ "ssf2", "ssf3", "ssf1" ],
- "outputs" : [ "s_123" ]
- }, {
- "id" : "determine_correct_table_for_s_ns36",
- "inputs" : [ "year_dx", "s_123", "cs_input_version_original", "s_131516" ],
- "outputs" : [ "s" ]
- }, {
- "id" : "ajcc7_stage_uqd",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "s", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpj",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_paj",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "postorchiectomy_serum_tumor_marker_svalue_table_basedon_ssf131516_xgr",
- "inputs" : [ "ssf15", "ssf16", "ssf13" ],
- "outputs" : [ "s_131516" ]
- }, {
- "id" : "serum_tumor_marker_svalue_table_basedon_csssf123_xcj",
- "inputs" : [ "ssf2", "ssf3", "ssf1" ],
- "outputs" : [ "s_123" ]
- }, {
- "id" : "determine_correct_table_for_s_ns36",
- "inputs" : [ "year_dx", "s_123", "cs_input_version_original", "s_131516" ],
- "outputs" : [ "s" ]
- }, {
- "id" : "determine_correct_table_for_ajcc6_stg_ns37",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "year_dx", "ajcc6_n", "s", "ajcc6_m", "cs_input_version_original", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_paj",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf16_sfh", "extension_orchiectomy_lviajcc6_table_csv2_xis", "ssf5_nab", "ssf25_snt", "ssf15_sfg", "nodes_ddf", "ajcc7_t_codes", "ssf23_snr", "determine_correct_table_for_ajcc6_t_ns34", "histology", "schema_selection_testis", "cs_input_version_original", "ssf14_sff", "ssf22_snq", "lvi", "ssf3_lad", "ajcc_tdescriptor_cleanup", "mets_hbb", "lymph_nodes_pathologic_eval_xgu", "determine_correct_table_for_s_ns36", "combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_less_than2010_xiz", "ajcc7_year_validation", "ssf21_snp", "ajcc7_stage_uqd", "ssf17_snl", "determine_correct_table_for_n_ns35", "ajcc_descriptor_codes", "ssf10_sek", "ajcc7_inclusions_tpj", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf1_jal", "extension_orchiectomy_lviajcc7_xgs", "ajcc6_t_codes", "ajcc6_exclusions_paj", "extension_orchiectomy_lviajcc6_table_csv1_xbv", "ajcc_mdescriptor_cleanup", "ss_codes", "size_apa", "nodes_exam_gpa", "extension_bdh", "ssf4_mac", "ajcc6_n_codes", "combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy", "behavior", "ssf11_sel", "ssf7_seh", "mets_eval_ipb", "ssf6_oay", "ssf18_snm", "lymph_nodes_clinical_eval_xgt", "ssf13_sfe", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ajcc6_stage_qpq", "serum_tumor_marker_svalue_table_basedon_csssf123_xcj", "ssf19_snn", "ajcc7_stage_codes", "ssf8_sei", "determine_correct_table_for_ajcc6_stg_ns37", "primary_site", "ajcc6_year_validation", "ssf12_sfd", "ssf2_kad", "nodes_pos_fpc", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "lymph_nodes_positive_eval_blank_xgv", "ajcctnm6_stage_csv1_xpz", "ssf24_sns", "ssf9_sej", "postorchiectomy_serum_tumor_marker_svalue_table_basedon_ssf131516_xgr" ],
- "last_modified" : "2020-06-30T19:47:36.844Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/thyroid.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/thyroid.json
deleted file mode 100644
index e837850f5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/thyroid.json
+++ /dev/null
@@ -1,1202 +0,0 @@
-{
- "id" : "thyroid",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Thyroid",
- "title" : "Thyroid Gland",
- "notes" : "C73.9 - Thyroid gland\n\n**Note**: The determination of AJCC stage group from T, N, and M for thyroid depends on histologic type, grade, and age. The Histologies, Grade, Stage table shows the selection of the AJCC Stage table based on histology and grade. For papillary and follicular carcinomas, age is also needed for the selection; if age at diagnosis is unknown, AJCC stage will be derived as unknown for these histologies.",
- "schema_num" : 146,
- "schema_selection_table" : "schema_selection_thyroid",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : true
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : true
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apj",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bby",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbr",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hbf",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Solitary vs Multifocal Tumor",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jap",
- "used_for_staging" : true,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "146"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bby",
- "inputs" : [ "extension", "hist", "size", "grade", "ssf1" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbr",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hbf",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "histologies_grade_stage_xce",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "inputs" : [ "hist", "ajcc7_n", "ajcc7_m", "age_dx", "grade", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "histologies_grade_stage_xce_6",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "inputs" : [ "hist", "ajcc6_n", "age_dx", "ajcc6_m", "grade", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ajcc6_exclusions_ppd", "histology_grade_extension_ajcc6_xkw", "ssf25_snt", "extension_bby", "ajcctnm7_stage_thyroid_papillaryand_follicular_age45and_older_xdx", "extension_size_ajcc6_xbc", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ajcctnm6_stage_thyroid_anaplastic_xcg", "histology", "determine_correct_table_for_ajcc6_t_ns33", "ajcc7_stage_uag", "cs_input_version_original", "histologies_grade_stage_xce", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qax", "ssf4_mna", "ajcctnm7_stage_thyroid_medullary_xdy", "determine_correct_table_for_ajcc7_t_ns32", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "mets_hbf", "ssf17_snl", "ajcc_descriptor_codes", "determine_validity_for_ajcc7_ns42", "histologies_grade_stage_xce_6", "extension_size_ssf1_ajcc7_xgb", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcctnm6_stage_thyroid_papillaryand_follicular_age45and_older_xco", "ssf1_jap", "ajcc6_t_codes", "ajcctnm6_stage_thyroid_medullary_xcf", "ajcctnm7_stage_thyroid_anaplastic_xdz", "schema_selection_thyroid", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "size_apj", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "histology_grade_extension_summary_stage_xgx", "histology_grade_extension_ssf1_ajcc7_xkv", "extension_eval_cpa", "ajcc7_n_codes", "determine_validity_for_ajcc6_ns50", "ajcc6_stage_codes", "ssf5_nna", "extension_t4_ssf1_ajcc7_xgw", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "nodes_dbr", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:37.158Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/tongue_anterior.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/tongue_anterior.json
deleted file mode 100644
index 8a3cf640e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/tongue_anterior.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "tongue_anterior",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "TongueAnterior",
- "title" : "Anterior 2/3 of Tongue, Tip, Border, and Tongue, NOS (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8, SSF10\n\nC02.0 - Dorsal surface of tongue, NOS\nC02.1 - Border of tongue (Tip)\nC02.2 - Ventral surface of tongue, NOS\nC02.3 - Anterior 2/3 of tongue, NOS\nC02.8 - Overlapping lesion of tongue\nC02.9 - Tongue, NOS",
- "schema_num" : 9,
- "schema_selection_table" : "schema_selection_tongue_anterior",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apc",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bac",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dpd",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_spd",
- "used_for_staging" : false
- }, {
- "key" : "ssf11",
- "name" : "Measured Thickness (Depth)",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_spe",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "9"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bac",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dpd",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "ssf11_spe", "histology", "ssf6_opa", "ssf3_lpa", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "nodes_dpd", "ssf14_sni", "extension_size_xab", "ajcc_tdescriptor_cleanup", "ssf9_spc", "lymph_nodes_size_xpd", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "ssf5_npa", "extension_bac", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ss_codes", "nodes_exam_gpa", "size_apc", "ajcc6_n_codes", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "schema_selection_tongue_anterior", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:37.332Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/tongue_base.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/tongue_base.json
deleted file mode 100644
index 4adfb86d3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/tongue_base.json
+++ /dev/null
@@ -1,1207 +0,0 @@
-{
- "id" : "tongue_base",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "TongueBase",
- "title" : "Base of Tongue and Lingual Tonsil (excluding Malignant Melanoma)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF7, SSF8\n\nC01.9 - Base of tongue, NOS\nC02.4 - Lingual tonsil\n\n**Note**: AJCC includes base of tongue (C01.9) with oropharynx (C10._).",
- "schema_num" : 7,
- "schema_selection_table" : "schema_selection_tongue_base",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_aph",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bam",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dal",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpb",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "Size of Lymph Nodes",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpa",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf2",
- "name" : "OBSOLETE - Extracapsular Extension, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpa",
- "used_for_staging" : false
- }, {
- "key" : "ssf3",
- "name" : "Levels I-III, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "999",
- "table" : "ssf3_lpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf4",
- "name" : "Levels IV-V and Retropharyngeal Lymph Nodes for Head and Neck",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "999",
- "table" : "ssf4_mpa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf5",
- "name" : "Levels VI-VII and Facial Lymph Nodes for Head and Neck",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "999",
- "table" : "ssf5_npa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf6",
- "name" : "Parapharyngeal, Parotid, and Suboccipital/Retroauricular Lymph Nodes for Head and Neck",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "999",
- "table" : "ssf6_opa",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_III_COLLECTED_IN_CSV1", "COC_ALREADY_COLLECTED", "SEER_ALREADY_COLLECTED" ]
- }, {
- "key" : "ssf7",
- "name" : "Upper and Lower Cervical Node Levels",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_spa",
- "used_for_staging" : false
- }, {
- "key" : "ssf8",
- "name" : "Extracapsular Extension Clinically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_spb",
- "used_for_staging" : false
- }, {
- "key" : "ssf9",
- "name" : "Extracapsular Extension Pathologically, Lymph Nodes for Head and Neck",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "999",
- "table" : "ssf9_spc",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf10",
- "name" : "Human Papilloma Virus (HPV) Status",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "999",
- "table" : "ssf10_spd",
- "used_for_staging" : false,
- "metadata" : [ "COC_CLINICALLY_SIGNIFICANT", "CCCR_II_ESSENTIAL_FOR_CLINICAL_DECISION", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "7"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bam",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dal",
- "inputs" : [ "nodes", "ssf1" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpb",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_upt",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpk",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf7_spa", "ssf10_spd", "ajcc6_exclusions_ppd", "ssf1_jpa", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "ssf6_opa", "ssf3_lpa", "schema_selection_tongue_base", "cs_input_version_original", "mets_hpb", "ssf22_snq", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ssf9_spc", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "lymph_nodes_size_xpg", "ajcc_descriptor_codes", "ssf5_npa", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_stage_upt", "ssf8_spb", "extension_bam", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf2_kpa", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "nodes_exam_gpa", "nodes_dal", "ajcc6_n_codes", "size_aph", "behavior", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ssf4_mpa", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "extension_size_ajcc7_xeu", "ajcc6_stage_qpk", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_size_ajcc6_xai", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:37.480Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/trachea.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/trachea.json
deleted file mode 100644
index b943c9c07..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/trachea.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "trachea",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Trachea",
- "title" : "Trachea",
- "notes" : "C33.9 - Trachea\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 90,
- "schema_selection_table" : "schema_selection_trachea",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcf",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbw",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "90"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcf",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbw",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "schema_selection_trachea", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "extension_bcf", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng", "nodes_dbw" ],
- "last_modified" : "2020-06-30T19:47:37.617Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/urethra.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/urethra.json
deleted file mode 100644
index cb341e1a1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/urethra.json
+++ /dev/null
@@ -1,1210 +0,0 @@
-{
- "id" : "urethra",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Urethra",
- "title" : "Urethra",
- "notes" : "C68.0 - Urethra\n\n**Note**: Transitional cell carcinoma of the prostatic ducts and prostatic urethra are to be coded to urethra (C68.0) according to this schema.",
- "schema_num" : 129,
- "schema_selection_table" : "schema_selection_urethra",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bdi",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbu",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpe",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "WHO/ISUP Grade",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "999",
- "table" : "ssf1_jpd",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT", "SEER_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "129"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bdi",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbu",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpe",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_uaz",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpb",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qaw",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ajcc7_stage_uaz", "ssf2_kna", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf1_jpd", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "ssf22_snq", "mets_hpe", "lvi", "ssf14_sni", "ajcc_tdescriptor_cleanup", "ajcc6_stage_qaw", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ajcc7_inclusions_tpb", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "extension_bdi", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "schema_selection_urethra", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "cs_year_validation", "ssf24_sns", "nodes_dbu", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:37.749Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/urinary_other.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/urinary_other.json
deleted file mode 100644
index d0fcb6bbf..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/urinary_other.json
+++ /dev/null
@@ -1,1120 +0,0 @@
-{
- "id" : "urinary_other",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "UrinaryOther",
- "title" : "Paraurethral Gland, Overlapping Lesion of Urinary Organs, and Unspecified Urinary Organs",
- "notes" : "C68.1 - Paraurethral gland\nC68.8 - Overlapping lesion of urinary organs\nC68.9 - Urinary system, NOS\n\n**Note**: AJCC does not define TNM staging for this site.",
- "schema_num" : 130,
- "schema_selection_table" : "schema_selection_urinary_other",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bcy",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cna",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dcz",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_ena",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hpa",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ina",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "130"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bcy",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cna",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dcz",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_ena",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hpa",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ina",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qna",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf2_kna", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "mets_hpa", "nodes_dcz", "ssf22_snq", "lvi", "ssf14_sni", "mets_eval_ina", "ajcc_tdescriptor_cleanup", "ssf4_mna", "extension_eval_cna", "ajcc6_stage_qna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "nodes_eval_ena", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf11_snf", "ssf3_lna", "ss_codes", "ssf6_ona", "size_apa", "nodes_exam_gpa", "ajcc6_n_codes", "schema_selection_urinary_other", "behavior", "ssf10_sne", "ssf18_snm", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "extension_bcy", "ssf19_snn", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:37.861Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/vagina.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/vagina.json
deleted file mode 100644
index f77416d76..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/vagina.json
+++ /dev/null
@@ -1,1210 +0,0 @@
-{
- "id" : "vagina",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Vagina",
- "title" : "Vagina",
- "notes" : "C52.9 - Vagina, NOS\n\n**Note**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 109,
- "schema_selection_table" : "schema_selection_vagina",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_apa",
- "used_for_staging" : false
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bad",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dba",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_haj",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "FIGO Stage",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jbq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf2",
- "name" : "Pelvic Nodal Status",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kpr",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf3",
- "name" : "Assessment Method of Pelvic Nodal Status",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lpu",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf4",
- "name" : "Para-Aortic Nodal Status",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mps",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf5",
- "name" : "Assessment Method of Para-Aortic Nodal Status",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_npm",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf6",
- "name" : "Distant (Mediastinal, Scalene) Nodal Status",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_oaq",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf7",
- "name" : "Assessment Method of Distant (Mediastinal, Scalene) Nodal Status",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_sdf",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "CS Site-Specific Factor 10",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sne",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf11",
- "name" : "CS Site-Specific Factor 11",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "988",
- "table" : "ssf11_snf",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf12",
- "name" : "CS Site-Specific Factor 12",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sng",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf13",
- "name" : "CS Site-Specific Factor 13",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_snh",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf14",
- "name" : "CS Site-Specific Factor 14",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sni",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf15",
- "name" : "CS Site-Specific Factor 15",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_snj",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "109"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bad",
- "inputs" : [ "extension" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dba",
- "inputs" : [ "nodes" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_haj",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tph",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubc",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tph",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qbr",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "ssf3_lpu", "ajcc6_exclusions_ppd", "ssf25_snt", "ssf15_snj", "ajcc7_t_codes", "ssf23_snr", "histology", "cs_input_version_original", "ssf22_snq", "lvi", "ssf14_sni", "ssf5_npm", "ajcc_tdescriptor_cleanup", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "ssf7_sdf", "ajcc7_inclusions_tph", "extension_bad", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "mets_haj", "nodes_dba", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf11_snf", "ss_codes", "size_apa", "nodes_exam_gpa", "ssf2_kpr", "ssf6_oaq", "schema_selection_vagina", "ajcc6_n_codes", "ajcc6_stage_qbr", "behavior", "ssf10_sne", "ssf18_snm", "mets_eval_ipa", "extension_eval_cpa", "ssf1_jbq", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf19_snn", "ajcc7_stage_codes", "ssf9_snd", "ssf13_snh", "primary_site", "ajcc6_year_validation", "ssf4_mps", "ajcc6_m_codes", "nodes_eval_epa", "ajcc7_stage_ubc", "cs_year_validation", "ssf24_sns", "ssf8_snc", "ssf12_sng" ],
- "last_modified" : "2020-06-30T19:47:37.998Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/vulva.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/vulva.json
deleted file mode 100644
index 822c82824..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/schemas/vulva.json
+++ /dev/null
@@ -1,1206 +0,0 @@
-{
- "id" : "vulva",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Vulva",
- "title" : "Vulva (including Skin of Vulva) (excluding Malignant Melanoma, Merkel Cell Carcinoma, Kaposi Sarcoma, Mycosis Fungoides, Sezary Disease, and Other Lymphomas)",
- "notes" : "DISCONTINUED SITE-SPECIFIC FACTORS: SSF12, SSF13, SSF14, SSF15\n\nC51.0 - Labium majus\nC51.1 - Labium minus\nC51.2 - Clitoris\nC51.8 - Overlapping lesion of vulva\nC51.9 - Vulva, NOS\n\n**Note 1**: This schema includes skin of Vulva but is NOT used for Malignant Melanoma, Merkel Cell Carcinoma, Kaposi Sarcoma, Mycosis Fungoides, Sezary Disease, or Other Lymphomas. Each of these diseases has a separate schema.\n\n**Note 2**: Involvement of the vulva and perineum should be assigned to vulva as the primary site in the absence of a statement that the tumor extended from the perineum to the vulva. Collaborative Stage only includes C51.0-C51.9 (vulva) and does not include primaries of the perineum in this schema. Basal and squamous cell carcinomas of the skin of the vulva are coded to C51.9 and are reportable; basal and squamous carcinomas of the skin of the perineum would be coded to C44.5 and would not be reportable.\n\n**Note 3**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologic et d'Obstetrique (FIGO). Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values.",
- "schema_num" : 107,
- "schema_selection_table" : "schema_selection_vulva",
- "inputs" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "description" : "Code for the primary site of the tumor being reported using either ICD-O-2 or ICD-O-3.",
- "naaccr_item" : 400,
- "naaccr_xml_id" : "primarySite",
- "table" : "primary_site",
- "used_for_staging" : true
- }, {
- "key" : "hist",
- "name" : "Histology",
- "description" : "Codes for the histologic type of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 522,
- "naaccr_xml_id" : "histologicTypeIcdO3",
- "table" : "histology",
- "used_for_staging" : true
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "description" : "Date of initial diagnosis by a recognized medical practitioner for the tumor being reported whether clinically or microscopically confirmed.",
- "naaccr_item" : 390,
- "naaccr_xml_id" : "dateOfDiagnosis",
- "table" : "cs_year_validation",
- "used_for_staging" : true
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "description" : "Collaborative Staging (CS) version number initially used to code CS fields.",
- "naaccr_item" : 2935,
- "naaccr_xml_id" : "csVersionInputOriginal",
- "table" : "cs_input_version_original",
- "used_for_staging" : true
- }, {
- "key" : "behavior",
- "name" : "Behavior ICD-O-3",
- "description" : "Code for the behavior of the tumor being reported using ICD-O-3.",
- "naaccr_item" : 523,
- "naaccr_xml_id" : "behaviorCodeIcdO3",
- "table" : "behavior",
- "used_for_staging" : false
- }, {
- "key" : "grade",
- "name" : "Grade",
- "description" : "Code for the grade or degree of differentiation of the reportable tumor.",
- "naaccr_item" : 440,
- "naaccr_xml_id" : "grade",
- "table" : "grade",
- "used_for_staging" : false
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "description" : "Age of the patient at diagnosis in complete years.",
- "naaccr_item" : 230,
- "naaccr_xml_id" : "ageAtDiagnosis",
- "used_for_staging" : false
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "description" : "Indicates whether lymphatic duct or blood vessel (LVI) is identified in the pathology report.",
- "naaccr_item" : 1182,
- "naaccr_xml_id" : "lymphVascularInvasion",
- "default" : "8",
- "table" : "lvi",
- "used_for_staging" : false
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "description" : "Records the largest dimension or diameter of the primary tumor in millimeters.",
- "naaccr_item" : 2800,
- "naaccr_xml_id" : "csTumorSize",
- "default" : "999",
- "table" : "size_app",
- "used_for_staging" : true
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "description" : "Identifies contiguous growth (extension) of the primary tumor within the organ of origin or its direct extension into neighboring organs. For certain sites such as ovary, discontinuous metastasis is coded in CS Extension.",
- "naaccr_item" : 2810,
- "naaccr_xml_id" : "csExtension",
- "default" : "999",
- "table" : "extension_bbi",
- "used_for_staging" : true
- }, {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "description" : "Records how the codes for the two items CS Tumor Size and CS Extension were determined, based on the diagnostic methods employed.",
- "naaccr_item" : 2820,
- "naaccr_xml_id" : "csTumorSizeExtEval",
- "default" : "9",
- "table" : "extension_eval_cpa",
- "used_for_staging" : true
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "description" : "Identifies the regional lymph nodes involved with cancer at the time of diagnosis.",
- "naaccr_item" : 2830,
- "naaccr_xml_id" : "csLymphNodes",
- "default" : "999",
- "table" : "nodes_dbb",
- "used_for_staging" : true
- }, {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "description" : "Records how the code for CS Lymph Nodes was determined, based on the diagnosticmethods employed.",
- "naaccr_item" : 2840,
- "naaccr_xml_id" : "csLymphNodesEval",
- "default" : "9",
- "table" : "nodes_eval_epa",
- "used_for_staging" : true
- }, {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "description" : "Records the exact number of regional nodes examined by the pathologist and found to contain metastases. ",
- "naaccr_item" : 820,
- "naaccr_xml_id" : "regionalNodesPositive",
- "default" : "99",
- "table" : "nodes_pos_fpa",
- "used_for_staging" : false
- }, {
- "key" : "nodes_exam",
- "name" : "Regional Nodes Examined",
- "description" : "Records the total number of regional lymph nodes that were removed and examined by the pathologist. ",
- "naaccr_item" : 830,
- "naaccr_xml_id" : "regionalNodesExamined",
- "default" : "99",
- "table" : "nodes_exam_gpa",
- "used_for_staging" : false
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "description" : "Identifies the distant site(s) of metastatic involvement at time of diagnosis.",
- "naaccr_item" : 2850,
- "naaccr_xml_id" : "csMetsAtDx",
- "default" : "99",
- "table" : "mets_hba",
- "used_for_staging" : true
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "description" : "Records how the code for CS Mets at Dx was determined based on the diagnostic methods employed.",
- "naaccr_item" : 2860,
- "naaccr_xml_id" : "csMetsEval",
- "default" : "9",
- "table" : "mets_eval_ipa",
- "used_for_staging" : true
- }, {
- "key" : "ssf1",
- "name" : "CS Site-Specific Factor 1",
- "naaccr_item" : 2880,
- "naaccr_xml_id" : "csSiteSpecificFactor1",
- "default" : "988",
- "table" : "ssf1_jna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf2",
- "name" : "CS Site-Specific Factor 2",
- "naaccr_item" : 2890,
- "naaccr_xml_id" : "csSiteSpecificFactor2",
- "default" : "988",
- "table" : "ssf2_kna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf3",
- "name" : "CS Site-Specific Factor 3",
- "naaccr_item" : 2900,
- "naaccr_xml_id" : "csSiteSpecificFactor3",
- "default" : "988",
- "table" : "ssf3_lna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf4",
- "name" : "CS Site-Specific Factor 4",
- "naaccr_item" : 2910,
- "naaccr_xml_id" : "csSiteSpecificFactor4",
- "default" : "988",
- "table" : "ssf4_mna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf5",
- "name" : "CS Site-Specific Factor 5",
- "naaccr_item" : 2920,
- "naaccr_xml_id" : "csSiteSpecificFactor5",
- "default" : "988",
- "table" : "ssf5_nna",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf6",
- "name" : "CS Site-Specific Factor 6",
- "naaccr_item" : 2930,
- "naaccr_xml_id" : "csSiteSpecificFactor6",
- "default" : "988",
- "table" : "ssf6_ona",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf7",
- "name" : "CS Site-Specific Factor 7",
- "naaccr_item" : 2861,
- "naaccr_xml_id" : "csSiteSpecificFactor7",
- "default" : "988",
- "table" : "ssf7_snb",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf8",
- "name" : "CS Site-Specific Factor 8",
- "naaccr_item" : 2862,
- "naaccr_xml_id" : "csSiteSpecificFactor8",
- "default" : "988",
- "table" : "ssf8_snc",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf9",
- "name" : "CS Site-Specific Factor 9",
- "naaccr_item" : 2863,
- "naaccr_xml_id" : "csSiteSpecificFactor9",
- "default" : "988",
- "table" : "ssf9_snd",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf10",
- "name" : "FIGO Stage",
- "naaccr_item" : 2864,
- "naaccr_xml_id" : "csSiteSpecificFactor10",
- "default" : "988",
- "table" : "ssf10_sex",
- "used_for_staging" : false,
- "metadata" : [ "CCCR_IVA_COLLECT_IF_AVAILABLE_IN_PATH_REPORT", "COC_CLINICALLY_SIGNIFICANT" ]
- }, {
- "key" : "ssf11",
- "name" : "Regional Lymph Node - Laterality",
- "naaccr_item" : 2865,
- "naaccr_xml_id" : "csSiteSpecificFactor11",
- "default" : "999",
- "table" : "ssf11_srd",
- "used_for_staging" : true,
- "metadata" : [ "NPCR_REQUIRED_WHEN_AVAILABLE_2011_FORWARD", "CCCR_ESSENTIAL_FOR_TNM_CLASSIFICATION" ]
- }, {
- "key" : "ssf12",
- "name" : "Pelvic Nodal Status",
- "naaccr_item" : 2866,
- "naaccr_xml_id" : "csSiteSpecificFactor12",
- "default" : "988",
- "table" : "ssf12_sez",
- "used_for_staging" : false
- }, {
- "key" : "ssf13",
- "name" : "Assessment Method of Pelvic Nodal Status",
- "naaccr_item" : 2867,
- "naaccr_xml_id" : "csSiteSpecificFactor13",
- "default" : "988",
- "table" : "ssf13_sfa",
- "used_for_staging" : false
- }, {
- "key" : "ssf14",
- "name" : "Femoral Inguinal Nodal Status",
- "naaccr_item" : 2868,
- "naaccr_xml_id" : "csSiteSpecificFactor14",
- "default" : "988",
- "table" : "ssf14_sfb",
- "used_for_staging" : false
- }, {
- "key" : "ssf15",
- "name" : "Assessment Method of Femoral Inguinal Nodal Status",
- "naaccr_item" : 2869,
- "naaccr_xml_id" : "csSiteSpecificFactor15",
- "default" : "988",
- "table" : "ssf15_sfc",
- "used_for_staging" : false
- }, {
- "key" : "ssf16",
- "name" : "CS Site-Specific Factor 16",
- "naaccr_item" : 2870,
- "naaccr_xml_id" : "csSiteSpecificFactor16",
- "default" : "988",
- "table" : "ssf16_snk",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf17",
- "name" : "CS Site-Specific Factor 17",
- "naaccr_item" : 2871,
- "naaccr_xml_id" : "csSiteSpecificFactor17",
- "default" : "988",
- "table" : "ssf17_snl",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf18",
- "name" : "CS Site-Specific Factor 18",
- "naaccr_item" : 2872,
- "naaccr_xml_id" : "csSiteSpecificFactor18",
- "default" : "988",
- "table" : "ssf18_snm",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf19",
- "name" : "CS Site-Specific Factor 19",
- "naaccr_item" : 2873,
- "naaccr_xml_id" : "csSiteSpecificFactor19",
- "default" : "988",
- "table" : "ssf19_snn",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf20",
- "name" : "CS Site-Specific Factor 20",
- "naaccr_item" : 2874,
- "naaccr_xml_id" : "csSiteSpecificFactor20",
- "default" : "988",
- "table" : "ssf20_sno",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf21",
- "name" : "CS Site-Specific Factor 21",
- "naaccr_item" : 2875,
- "naaccr_xml_id" : "csSiteSpecificFactor21",
- "default" : "988",
- "table" : "ssf21_snp",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf22",
- "name" : "CS Site-Specific Factor 22",
- "naaccr_item" : 2876,
- "naaccr_xml_id" : "csSiteSpecificFactor22",
- "default" : "988",
- "table" : "ssf22_snq",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf23",
- "name" : "CS Site-Specific Factor 23",
- "naaccr_item" : 2877,
- "naaccr_xml_id" : "csSiteSpecificFactor23",
- "default" : "988",
- "table" : "ssf23_snr",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf24",
- "name" : "CS Site-Specific Factor 24",
- "naaccr_item" : 2878,
- "naaccr_xml_id" : "csSiteSpecificFactor24",
- "default" : "988",
- "table" : "ssf24_sns",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- }, {
- "key" : "ssf25",
- "name" : "CS Site-Specific Factor 25",
- "naaccr_item" : 2879,
- "naaccr_xml_id" : "csSiteSpecificFactor25",
- "default" : "988",
- "table" : "ssf25_snt",
- "used_for_staging" : false,
- "metadata" : [ "UNDEFINED_SSF" ]
- } ],
- "outputs" : [ {
- "key" : "schema_number",
- "name" : "Schema Number",
- "description" : "CS assigned schema number.",
- "default" : "107"
- }, {
- "key" : "csver_derived",
- "name" : "CS Version Derived",
- "description" : "Collaborative Staging (CS) version used to derive the CS output fields.",
- "naaccr_item" : 2936,
- "naaccr_xml_id" : "csVersionDerived",
- "default" : "020550"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC6 T"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC6 N"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC6 M"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor"
- }, {
- "key" : "ajcc6_stage",
- "name" : "AJCC6 Stage Group"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC7 T"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC7 N"
- }, {
- "key" : "ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC7 M"
- }, {
- "key" : "ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor"
- }, {
- "key" : "ajcc7_stage",
- "name" : "AJCC7 Stage Group"
- }, {
- "key" : "t77",
- "name" : "Summary Stage T 1977"
- }, {
- "key" : "n77",
- "name" : "Summary Stage N 1977"
- }, {
- "key" : "m77",
- "name" : "Summary Stage M 1977"
- }, {
- "key" : "ss77",
- "name" : "Summary Stage Group 1977"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage T 2000"
- }, {
- "key" : "n2000",
- "name" : "Summary Stage N 2000"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage M 2000"
- }, {
- "key" : "ss2000",
- "name" : "Summary Stage Group 2000"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 T (Storage)",
- "naaccr_item" : 2940,
- "naaccr_xml_id" : "derivedAjcc6T"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "name" : "AJCC6 T Descriptor (Storage)",
- "naaccr_item" : 2950,
- "naaccr_xml_id" : "derivedAjcc6TDescript"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 N (Storage)",
- "naaccr_item" : 2960,
- "naaccr_xml_id" : "derivedAjcc6N"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "name" : "AJCC6 N Descriptor (Storage)",
- "naaccr_item" : 2970,
- "naaccr_xml_id" : "derivedAjcc6NDescript"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 M (Storage)",
- "naaccr_item" : 2980,
- "naaccr_xml_id" : "derivedAjcc6M"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "name" : "AJCC6 M Descriptor (Storage)",
- "naaccr_item" : 2990,
- "naaccr_xml_id" : "derivedAjcc6MDescript"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Stage Group (Storage)",
- "naaccr_item" : 3000,
- "naaccr_xml_id" : "derivedAjcc6StageGrp"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 T (Storage)",
- "naaccr_item" : 3400,
- "naaccr_xml_id" : "derivedAjcc7T"
- }, {
- "key" : "stor_ajcc7_tdescriptor",
- "name" : "AJCC7 T Descriptor (Storage)",
- "naaccr_item" : 3402,
- "naaccr_xml_id" : "derivedAjcc7TDescript"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 N (Storage)",
- "naaccr_item" : 3410,
- "naaccr_xml_id" : "derivedAjcc7N"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "name" : "AJCC7 N Descriptor (Storage)",
- "naaccr_item" : 3412,
- "naaccr_xml_id" : "derivedAjcc7NDescript"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 M (Storage)",
- "naaccr_item" : 3420,
- "naaccr_xml_id" : "derivedAjcc7M"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "name" : "AJCC7 M Descriptor (Storage)",
- "naaccr_item" : 3422,
- "naaccr_xml_id" : "derivedAjcc7MDescript"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Stage Group (Storage)",
- "naaccr_item" : 3430,
- "naaccr_xml_id" : "derivedAjcc7StageGrp"
- }, {
- "key" : "stor_ss77",
- "name" : "Summary Stage Group 1977 (Storage)",
- "naaccr_item" : 3010,
- "naaccr_xml_id" : "derivedSs1977"
- }, {
- "key" : "stor_ss2000",
- "name" : "Summary Stage Group 2000 (Storage)",
- "naaccr_item" : 3020,
- "naaccr_xml_id" : "derivedSs2000"
- } ],
- "mappings" : [ {
- "id" : "mapping_t",
- "name" : "T",
- "initial_context" : [ {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc6_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "t2000"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "t77"
- }, {
- "key" : "ajcc7_tdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "ajcc7_t"
- } ],
- "tables" : [ {
- "id" : "extension_bbi",
- "inputs" : [ "extension", "size" ],
- "outputs" : [ "t77", "t2000", "ajcc7_t", "ajcc6_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor" ],
- "outputs" : [ "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc7_tdescriptor"
- }, {
- "from" : "tdescriptor",
- "to" : "ajcc7_tdescriptor"
- } ],
- "inputs" : [ "ajcc7_tdescriptor", "ajcc7_t" ],
- "outputs" : [ "ajcc7_tdescriptor", "stor_ajcc7_tdescriptor" ]
- }, {
- "id" : "ajcc7_t_codes",
- "inputs" : [ "ajcc7_t" ],
- "outputs" : [ "stor_ajcc7_t" ]
- }, {
- "id" : "extension_eval_cpa",
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- } ],
- "inputs" : [ "extension_eval" ],
- "outputs" : [ "ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_tdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor" ],
- "outputs" : [ "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc_tdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_tdescriptor",
- "to" : "tdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "tdescriptor",
- "to" : "ajcc6_tdescriptor"
- }, {
- "from" : "stor_tdescriptor",
- "to" : "stor_ajcc6_tdescriptor"
- } ],
- "inputs" : [ "ajcc6_tdescriptor", "ajcc6_t" ],
- "outputs" : [ "ajcc6_tdescriptor", "stor_ajcc6_tdescriptor" ]
- }, {
- "id" : "ajcc6_t_codes",
- "inputs" : [ "ajcc6_t" ],
- "outputs" : [ "stor_ajcc6_t" ]
- } ]
- }, {
- "id" : "mapping_n",
- "name" : "N",
- "initial_context" : [ {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "n2000"
- }, {
- "key" : "ajcc6_ndescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_ndescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "nodes_dbb",
- "inputs" : [ "nodes", "ssf11" ],
- "outputs" : [ "ajcc7_n", "ajcc6_n", "n2000", "n77" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_ndescriptor" ],
- "outputs" : [ "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc7_ndescriptor"
- }, {
- "from" : "ndescriptor",
- "to" : "ajcc7_ndescriptor"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_ndescriptor" ],
- "outputs" : [ "ajcc7_ndescriptor", "stor_ajcc7_ndescriptor" ]
- }, {
- "id" : "ajcc7_n_codes",
- "inputs" : [ "ajcc7_n" ],
- "outputs" : [ "stor_ajcc7_n" ]
- }, {
- "id" : "nodes_eval_epa",
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- } ],
- "inputs" : [ "nodes_eval" ],
- "outputs" : [ "ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_ndescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor" ],
- "outputs" : [ "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc_ndescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_ndescriptor",
- "to" : "ndescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "ndescriptor",
- "to" : "ajcc6_ndescriptor"
- }, {
- "from" : "stor_ndescriptor",
- "to" : "stor_ajcc6_ndescriptor"
- } ],
- "inputs" : [ "ajcc6_ndescriptor", "ajcc6_n" ],
- "outputs" : [ "ajcc6_ndescriptor", "stor_ajcc6_ndescriptor" ]
- }, {
- "id" : "ajcc6_n_codes",
- "inputs" : [ "ajcc6_n" ],
- "outputs" : [ "stor_ajcc6_n" ]
- } ]
- }, {
- "id" : "mapping_m",
- "name" : "M",
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_mdescriptor",
- "value" : "ERROR"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "ajcc7_mdescriptor",
- "value" : "ERROR"
- } ],
- "tables" : [ {
- "id" : "mets_hba",
- "inputs" : [ "mets" ],
- "outputs" : [ "ajcc7_m", "ajcc6_m", "m77", "m2000" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc7_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor" ],
- "outputs" : [ "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc7_m",
- "to" : "m"
- }, {
- "from" : "ajcc7_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc7_mdescriptor"
- }, {
- "from" : "mdescriptor",
- "to" : "ajcc7_mdescriptor"
- } ],
- "inputs" : [ "ajcc7_mdescriptor", "ajcc7_m" ],
- "outputs" : [ "ajcc7_mdescriptor", "stor_ajcc7_mdescriptor" ]
- }, {
- "id" : "ajcc7_m_codes",
- "inputs" : [ "ajcc7_m" ],
- "outputs" : [ "stor_ajcc7_m" ]
- }, {
- "id" : "mets_eval_ipa",
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- } ],
- "inputs" : [ "mets_eval" ],
- "outputs" : [ "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_descriptor_codes",
- "input_mapping" : [ {
- "from" : "ajcc6_mdescriptor",
- "to" : "descriptor"
- } ],
- "output_mapping" : [ {
- "from" : "stor_descriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc_mdescriptor_cleanup",
- "input_mapping" : [ {
- "from" : "ajcc6_m",
- "to" : "m"
- }, {
- "from" : "ajcc6_mdescriptor",
- "to" : "mdescriptor"
- } ],
- "output_mapping" : [ {
- "from" : "mdescriptor",
- "to" : "ajcc6_mdescriptor"
- }, {
- "from" : "stor_mdescriptor",
- "to" : "stor_ajcc6_mdescriptor"
- } ],
- "inputs" : [ "ajcc6_m", "ajcc6_mdescriptor" ],
- "outputs" : [ "stor_ajcc6_mdescriptor", "ajcc6_mdescriptor" ]
- }, {
- "id" : "ajcc6_m_codes",
- "inputs" : [ "ajcc6_m" ],
- "outputs" : [ "stor_ajcc6_m" ]
- } ]
- }, {
- "id" : "mapping_ajcc7",
- "name" : "AJCC 7",
- "inclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc7_stage_ubd",
- "input_mapping" : [ {
- "from" : "ajcc7_t",
- "to" : "t"
- }, {
- "from" : "ajcc7_n",
- "to" : "n"
- }, {
- "from" : "ajcc7_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc7_stage"
- } ],
- "inputs" : [ "ajcc7_n", "ajcc7_m", "ajcc7_t" ],
- "outputs" : [ "ajcc7_stage" ]
- }, {
- "id" : "ajcc7_stage_codes",
- "inputs" : [ "ajcc7_stage" ],
- "outputs" : [ "stor_ajcc7_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_excluded",
- "name" : "AJCC 7 Excluded",
- "exclusion_tables" : [ {
- "id" : "ajcc7_inclusions_tpq",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_tdescriptor",
- "value" : "N"
- }, {
- "key" : "stor_ajcc7_mdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_stage",
- "value" : "888"
- }, {
- "key" : "stor_ajcc7_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc7_t",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_t",
- "value" : "888"
- }, {
- "key" : "ajcc7_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc7_n",
- "value" : "888"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "stor_ajcc7_m",
- "value" : "888"
- }, {
- "key" : "ajcc7_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc7_m",
- "value" : "NA"
- } ]
- }, {
- "id" : "mapping_ajcc6",
- "name" : "AJCC 6",
- "exclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_stage"
- } ],
- "tables" : [ {
- "id" : "ajcc6_stage_qpu",
- "input_mapping" : [ {
- "from" : "ajcc6_t",
- "to" : "t"
- }, {
- "from" : "ajcc6_n",
- "to" : "n"
- }, {
- "from" : "ajcc6_m",
- "to" : "m"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ajcc6_stage"
- } ],
- "inputs" : [ "ajcc6_n", "ajcc6_m", "ajcc6_t" ],
- "outputs" : [ "ajcc6_stage" ]
- }, {
- "id" : "ajcc6_stage_codes",
- "inputs" : [ "ajcc6_stage" ],
- "outputs" : [ "stor_ajcc6_stage" ]
- } ]
- }, {
- "id" : "mapping_ajcc6_included",
- "name" : "AJCC 6 Included",
- "inclusion_tables" : [ {
- "id" : "ajcc6_exclusions_ppd",
- "inputs" : [ "hist" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_n",
- "value" : "88"
- }, {
- "key" : "stor_ajcc6_tdescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "stor_ajcc6_ndescriptor",
- "value" : "N"
- }, {
- "key" : "ajcc6_t",
- "value" : "NA"
- }, {
- "key" : "ajcc6_stage",
- "value" : "NA"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_stage",
- "value" : "88"
- }, {
- "key" : "ajcc6_m",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_t",
- "value" : "88"
- }, {
- "key" : "ajcc6_n",
- "value" : "NA"
- }, {
- "key" : "stor_ajcc6_mdescriptor",
- "value" : "N"
- } ]
- }, {
- "id" : "mapping_summary_stage",
- "name" : "Summary Stage",
- "tables" : [ {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "n77",
- "to" : "n"
- }, {
- "from" : "m77",
- "to" : "m"
- }, {
- "from" : "t77",
- "to" : "t"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss77"
- } ],
- "inputs" : [ "t77", "m77", "n77" ],
- "outputs" : [ "ss77" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss77",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss77"
- } ],
- "inputs" : [ "ss77" ],
- "outputs" : [ "stor_ss77" ]
- }, {
- "id" : "summary_stage_rpa",
- "input_mapping" : [ {
- "from" : "m2000",
- "to" : "m"
- }, {
- "from" : "t2000",
- "to" : "t"
- }, {
- "from" : "n2000",
- "to" : "n"
- } ],
- "output_mapping" : [ {
- "from" : "stage",
- "to" : "ss2000"
- } ],
- "inputs" : [ "t2000", "n2000", "m2000" ],
- "outputs" : [ "ss2000" ]
- }, {
- "id" : "ss_codes",
- "input_mapping" : [ {
- "from" : "ss2000",
- "to" : "ss"
- } ],
- "output_mapping" : [ {
- "from" : "stor_ss",
- "to" : "stor_ss2000"
- } ],
- "inputs" : [ "ss2000" ],
- "outputs" : [ "stor_ss2000" ]
- } ]
- }, {
- "id" : "mapping_ajcc7_invalid_year",
- "name" : "Validate AJCC7 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc7_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc7_m"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc7_m"
- }, {
- "key" : "ajcc7_n"
- }, {
- "key" : "ajcc7_mdescriptor"
- }, {
- "key" : "ajcc7_stage"
- }, {
- "key" : "stor_ajcc7_mdescriptor"
- }, {
- "key" : "stor_ajcc7_tdescriptor"
- }, {
- "key" : "ajcc7_tdescriptor"
- }, {
- "key" : "stor_ajcc7_t"
- }, {
- "key" : "ajcc7_ndescriptor"
- }, {
- "key" : "ajcc7_t"
- }, {
- "key" : "stor_ajcc7_n"
- }, {
- "key" : "stor_ajcc7_ndescriptor"
- } ]
- }, {
- "id" : "mapping_ajcc6_invalid_year",
- "name" : "Validate AJCC6 Year",
- "exclusion_tables" : [ {
- "id" : "ajcc6_year_validation",
- "inputs" : [ "year_dx", "cs_input_version_original" ]
- } ],
- "initial_context" : [ {
- "key" : "stor_ajcc6_m"
- }, {
- "key" : "stor_ajcc6_ndescriptor"
- }, {
- "key" : "n77"
- }, {
- "key" : "stor_ajcc7_stage"
- }, {
- "key" : "ajcc6_m"
- }, {
- "key" : "t2000"
- }, {
- "key" : "ss77"
- }, {
- "key" : "stor_ss77"
- }, {
- "key" : "ajcc6_tdescriptor"
- }, {
- "key" : "t77"
- }, {
- "key" : "stor_ajcc6_stage"
- }, {
- "key" : "n2000"
- }, {
- "key" : "stor_ajcc6_t"
- }, {
- "key" : "ajcc6_t"
- }, {
- "key" : "stor_ajcc6_n"
- }, {
- "key" : "m2000"
- }, {
- "key" : "ss2000"
- }, {
- "key" : "ajcc6_ndescriptor"
- }, {
- "key" : "ajcc6_n"
- }, {
- "key" : "m77"
- }, {
- "key" : "ajcc6_stage"
- }, {
- "key" : "stor_ajcc6_mdescriptor"
- }, {
- "key" : "stor_ajcc6_tdescriptor"
- }, {
- "key" : "ajcc6_mdescriptor"
- }, {
- "key" : "stor_ss2000"
- } ]
- } ],
- "involved_tables" : [ "schema_selection_vulva", "ssf2_kna", "ajcc6_exclusions_ppd", "extension_size_ajcc7_xbl", "ssf25_snt", "ssf15_sfc", "ajcc7_t_codes", "ssf23_snr", "histology", "ajcc6_stage_qpu", "cs_input_version_original", "extension_bbi", "ssf22_snq", "lvi", "ssf14_sfb", "ajcc_tdescriptor_cleanup", "ssf4_mna", "ajcc7_year_validation", "ssf21_snp", "ssf17_snl", "ajcc_descriptor_codes", "grade", "summary_stage_rpa", "ajcc7_m_codes", "ajcc7_inclusions_tpq", "ssf20_sno", "ajcc_ndescriptor_cleanup", "ssf16_snk", "nodes_dbb", "ssf10_sex", "ssf1_jna", "ajcc6_t_codes", "nodes_pos_fpa", "ajcc_mdescriptor_cleanup", "ssf7_snb", "ssf3_lna", "ss_codes", "ssf11_srd", "ssf6_ona", "nodes_exam_gpa", "mets_hba", "ajcc6_n_codes", "extension_size_ajcc6_xqc", "behavior", "ssf18_snm", "mets_eval_ipa", "size_app", "extension_eval_cpa", "ajcc7_n_codes", "ajcc6_stage_codes", "ssf5_nna", "ssf19_snn", "ajcc7_stage_codes", "ssf13_sfa", "ssf9_snd", "lymph_nodes_ssf11_ajcc6_xqd", "primary_site", "ajcc6_year_validation", "ajcc6_m_codes", "nodes_eval_epa", "ajcc7_stage_ubd", "cs_year_validation", "ssf12_sez", "ssf24_sns", "ssf8_snc" ],
- "last_modified" : "2020-06-30T19:47:38.161Z"
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paa.json
deleted file mode 100644
index eb161e517..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paa.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_paa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.272Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8248", "1", "Apudoma" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pab.json
deleted file mode 100644
index d57e6fd34..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pab.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.382Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8248", "1", "Apudoma" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pac.json
deleted file mode 100644
index 212bc9de8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pac.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.455Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pad.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pad.json
deleted file mode 100644
index aca99b5f1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pad.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pad",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.541Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pae.json
deleted file mode 100644
index 39b68dd51..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pae.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.623Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paf.json
deleted file mode 100644
index 7ce44d983..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paf.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_paf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.714Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8000", "0", "Neoplasm, benign" ], [ "8000", "1", "Neoplasm, uncertain whether benign or malignant" ], [ "8000", "3", "Neoplasm, malignant" ], [ "8000", "6", "Neoplasm, metastatic" ], [ "8000", "9", "Neoplasm, malignant, uncertain whether primary or metastatic" ], [ "8001", "0", "Tumor cells, benign" ], [ "8001", "1", "Tumor cells, uncertain whether benign or malignant" ], [ "8001", "3", "Tumor cells, malignant" ], [ "8002", "3", "Malignant tumor, small cell type" ], [ "8003", "3", "Malignant tumor, giant cell type" ], [ "8004", "3", "Malignant tumor, spindle cell type" ], [ "8005", "0", "Clear cell tumor, NOS" ], [ "8005", "3", "Malignant tumor, clear cell type" ], [ "8010", "0", "Epithelial tumor, benign" ], [ "8010", "2", "Carcinoma in situ, NOS" ], [ "8010", "3", "Carcinoma, NOS" ], [ "8010", "6", "Carcinoma, metastatic, NOS" ], [ "8010", "9", "Carcinomatosis" ], [ "8011", "0", "Epithelioma, benign" ], [ "8011", "3", "Epithelioma, malignant" ], [ "8012", "3", "Large cell carcinoma, NOS" ], [ "8013", "3", "Large cell neuroendocrine carcinoma" ], [ "8014", "3", "Large cell carcinoma with rhabdoid phenotype" ], [ "8015", "3", "Glassy cell carcinoma" ], [ "8020", "3", "Carcinoma, undifferentiated, NOS" ], [ "8021", "3", "Carcinoma, anaplastic, NOS" ], [ "8022", "3", "Pleomorphic carcinoma" ], [ "8030", "3", "Giant cell and spindle cell carcinoma" ], [ "8031", "3", "Giant cell carcinoma" ], [ "8032", "3", "Spindle cell carcinoma, NOS" ], [ "8033", "3", "Pseudosarcomatous carcinoma" ], [ "8034", "3", "Polygonal cell carcinoma" ], [ "8035", "3", "Carcinoma with osteoclast-like giant cells" ], [ "8040", "0", "Tumorlet, benign" ], [ "8040", "1", "Tumorlet, NOS" ], [ "8041", "3", "Small cell carcinoma, NOS" ], [ "8042", "3", "Oat cell carcinoma (C34._)" ], [ "8043", "3", "Small cell carcinoma, fusiform cell" ], [ "8044", "3", "Small cell carcinoma, intermediate cell" ], [ "8045", "3", "Combined small cell carcinoma" ], [ "8046", "3", "Non-small cell carcinoma (C34._)" ], [ "8050", "0", "Papilloma, NOS (except papilloma of bladder M-8120/1)" ], [ "8050", "2", "Papillary carcinoma in situ" ], [ "8050", "3", "Papillary carcinoma, NOS" ], [ "8051", "0", "Verrucous papilloma" ], [ "8051", "3", "Verrucous carcinoma, NOS" ], [ "8052", "0", "Squamous cell papilloma, NOS" ], [ "8052", "2", "Papillary squamous cell carcinoma, non-invasive" ], [ "8052", "3", "Papillary squamous cell carcinoma" ], [ "8053", "0", "Squamous cell papilloma, inverted" ], [ "8060", "0", "Squamous papillomatosis" ], [ "8070", "2", "Squamous cell carcinoma in situ, NOS" ], [ "8070", "3", "Squamous cell carcinoma, NOS" ], [ "8070", "6", "Squamous cell carcinoma, metastatic, NOS" ], [ "8071", "3", "Squamous cell carcinoma, keratinizing, NOS" ], [ "8072", "3", "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ], [ "8073", "3", "Squamous cell carcinoma, small cell, nonkeratinizing" ], [ "8074", "3", "Squamous cell carcinoma, spindle cell" ], [ "8075", "3", "Squamous cell carcinoma, adenoid" ], [ "8076", "2", "Squamous cell carcinoma in situ with questionable stromal invasion" ], [ "8076", "3", "Squamous cell carcinoma, microinvasive" ], [ "8077", "2", "Squamous intraepithelial neoplasia, grade III" ], [ "8078", "3", "Squamous cell carcinoma with horn formation" ], [ "8080", "2", "Queyrat erythroplasia (C60._)" ], [ "8081", "2", "Bowen disease (C44._)" ], [ "8082", "3", "Lymphoepithelial carcinoma" ], [ "8083", "3", "Basaloid squamous cell carcinoma" ], [ "8084", "3", "Squamous cell carcinoma, clear cell type" ], [ "8090", "1", "Basal cell tumor (C44._)" ], [ "8090", "3", "Basal cell carcinoma, NOS (C44._)" ], [ "8091", "3", "Multifocal superficial basal cell carcinoma (C44._)" ], [ "8092", "3", "Infiltrating basal cell carcinoma, NOS (C44._)" ], [ "8093", "3", "Basal cell carcinoma, fibroepithelial (C44._)" ], [ "8094", "3", "Basosquamous carcinoma (C44._)" ], [ "8095", "3", "Metatypical carcinoma (C44._)" ], [ "8096", "0", "Intraepidermal epithelioma of Jadassohn (C44._)" ], [ "8097", "3", "Basal cell carcinoma, nodular (C44._)" ], [ "8098", "3", "Adenoid basal carcinoma (C53._)" ], [ "8100", "0", "Trichoepithelioma (C44._)" ], [ "8101", "0", "Trichofolliculoma (C44._)" ], [ "8102", "0", "Trichilemmoma (C44._)" ], [ "8102", "3", "Trichilemmocarcinoma (C44._)" ], [ "8103", "0", "Pilar tumor (C44._)" ], [ "8110", "0", "Pilomatrixoma, NOS (C44._)" ], [ "8110", "3", "Pilomatrix carcinoma (C44._)" ], [ "8120", "0", "Transitional cell papilloma, benign" ], [ "8120", "1", "Urothelial papilloma, NOS" ], [ "8120", "2", "Transitional cell carcinoma in situ" ], [ "8120", "3", "Transitional cell carcinoma, NOS" ], [ "8121", "0", "Schneiderian papilloma, NOS (C30.0, C31._)" ], [ "8121", "1", "Transitional cell papilloma, inverted, NOS" ], [ "8121", "3", "Schneiderian carcinoma (C30.0, C31._)" ], [ "8122", "3", "Transitional cell carcinoma, spindle cell" ], [ "8123", "3", "Basaloid carcinoma" ], [ "8124", "3", "Cloacogenic carcinoma (C21.2)" ], [ "8130", "1", "Papillary transitional cell neoplasm of low malignant potential (C67._)" ], [ "8130", "2", "Papillary transitional cell carcinoma, non-invasive (C67._)" ], [ "8130", "3", "Papillary transitional cell carcinoma (C67._)" ], [ "8131", "3", "Transitional cell carcinoma, micropapillary (C67._)" ], [ "8140", "0", "Adenoma, NOS" ], [ "8140", "1", "Atypical adenoma" ], [ "8140", "2", "Adenocarcinoma in situ, NOS" ], [ "8140", "3", "Adenocarcinoma, NOS" ], [ "8140", "6", "Adenocarcinoma, metastatic, NOS" ], [ "8141", "3", "Scirrhous adenocarcinoma" ], [ "8142", "3", "Linitis plastica (C16._)" ], [ "8143", "3", "Superficial spreading adenocarcinoma" ], [ "8144", "3", "Adenocarcinoma, intestinal type (C16._)" ], [ "8145", "3", "Carcinoma, diffuse type (C16._)" ], [ "8146", "0", "Monomorphic adenoma" ], [ "8147", "0", "Basal cell adenoma" ], [ "8147", "3", "Basal cell adenocarcinoma" ], [ "8148", "2", "Glandular intraepithelial neoplasia, grade III" ], [ "8149", "0", "Canalicular adenoma" ], [ "8150", "0", "Islet cell adenoma (C25._)" ], [ "8150", "1", "Islet cell tumor, NOS (C25._)" ], [ "8150", "3", "Islet cell carcinoma (C25._)" ], [ "8151", "0", "Insulinoma, NOS (C25._)" ], [ "8151", "3", "Insulinoma, malignant (C25._)" ], [ "8152", "1", "Glucagonoma, NOS (C25._)" ], [ "8152", "3", "Glucagonoma, malignant (C25._)" ], [ "8153", "1", "Gastrinoma, NOS" ], [ "8153", "3", "Gastrinoma, malignant" ], [ "8154", "3", "Mixed islet cell and exocrine adenocarcinoma (C25._)" ], [ "8155", "1", "Vipoma, NOS" ], [ "8155", "3", "Vipoma, malignant" ], [ "8156", "1", "Somatostatinoma, NOS" ], [ "8156", "3", "Somatostatinoma, malignant" ], [ "8157", "1", "Enteroglucagonoma, NOS" ], [ "8157", "3", "Enteroglucagonoma, malignant" ], [ "8160", "0", "Bile duct adenoma (C22.1, C24.0)" ], [ "8160", "3", "Cholangiocarcinoma (C22.1, C24.0)" ], [ "8161", "0", "Bile duct cystadenoma (C22.1, C24.0)" ], [ "8161", "3", "Bile duct cystadenocarcinoma (C22.1, C24.0)" ], [ "8162", "3", "Klatskin tumor (C22.1, C24.0)" ], [ "8170", "0", "Liver cell adenoma (C22.0)" ], [ "8170", "3", "Hepatocellular carcinoma, NOS (C22.0)" ], [ "8171", "3", "Hepatocellular carcinoma, fibrolamellar (C22.0)" ], [ "8172", "3", "Hepatocellular carcinoma, scirrhous (C22.0)" ], [ "8173", "3", "Hepatocellular carcinoma, spindle cell variant (C22.0)" ], [ "8174", "3", "Hepatocellular carcinoma, clear cell type (C22.0)" ], [ "8175", "3", "Hepatocellular carcinoma, pleomorphic type (C22.0)" ], [ "8180", "3", "Combined hepatocellular carcinoma and cholangiocarcinoma (C22.0)" ], [ "8190", "0", "Trabecular adenoma" ], [ "8190", "3", "Trabecular adenocarcinoma" ], [ "8191", "0", "Embryonal adenoma" ], [ "8200", "0", "Eccrine dermal cylindroma (C44._)" ], [ "8200", "3", "Adenoid cystic carcinoma" ], [ "8201", "2", "Cribriform carcinoma in situ (C50._)" ], [ "8201", "3", "Cribriform carcinoma, NOS" ], [ "8202", "0", "Microcystic adenoma (C25._)" ], [ "8204", "0", "Lactating adenoma (C50._)" ], [ "8210", "0", "Adenomatous polyp, NOS" ], [ "8210", "2", "Adenocarcinoma in situ in adenomatous polyp" ], [ "8210", "3", "Adenocarcinoma in adenomatous polyp" ], [ "8211", "0", "Tubular adenoma, NOS" ], [ "8211", "3", "Tubular adenocarcinoma" ], [ "8212", "0", "Flat adenoma" ], [ "8213", "0", "Serrated adenoma (C18._)" ], [ "8214", "3", "Parietal cell carcinoma (C16._)" ], [ "8215", "3", "Adenocarcinoma of anal glands (C21.1)" ], [ "8220", "0", "Adenomatous polyposis coli (C18._)" ], [ "8220", "3", "Adenocarcinoma in adenomatous polyposis coli (C18._)" ], [ "8221", "0", "Multiple adenomatous polyps" ], [ "8221", "3", "Adenocarcinoma in multiple adenomatous polyps" ], [ "8230", "2", "Ductal carcinoma in situ, solid type (C50._)" ], [ "8230", "3", "Solid carcinoma, NOS" ], [ "8231", "3", "Carcinoma simplex" ], [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8250", "1", "Pulmonary adenomatosis (C34._)" ], [ "8250", "3", "Bronchiolo-alveolar adenocarcinoma, NOS (C34._)" ], [ "8251", "0", "Alveolar adenoma (C34._)" ], [ "8251", "3", "Alveolar adenocarcinoma (C34._)" ], [ "8252", "3", "Bronchiolo-alveolar carcinoma, non-mucinous (C34._)" ], [ "8253", "3", "Bronchiolo-alveolar carcinoma, mucinous (C34._)" ], [ "8254", "3", "Bronchiolo-alveolar carcinoma, mixed mucinous and non-mucinous (C34._)" ], [ "8255", "3", "Adenocarcinoma with mixed subtypes" ], [ "8260", "0", "Papillary adenoma, NOS" ], [ "8260", "3", "Papillary adenocarcinoma, NOS" ], [ "8261", "0", "Villous adenoma, NOS" ], [ "8261", "2", "Adenocarcinoma in situ in villous adenoma" ], [ "8261", "3", "Adenocarcinoma in villous adenoma" ], [ "8262", "3", "Villous adenocarcinoma" ], [ "8263", "0", "Tubulovillous adenoma, NOS" ], [ "8263", "2", "Adenocarcinoma in situ in tubulovillous adenoma" ], [ "8263", "3", "Adenocarcinoma in tubulovillous adenoma" ], [ "8264", "0", "Papillomatosis, glandular" ], [ "8270", "0", "Chromophobe adenoma (C75.1)" ], [ "8270", "3", "Chromophobe carcinoma (C75.1)" ], [ "8271", "0", "Prolactinoma (C75.1)" ], [ "8272", "0", "Pituitary adenoma, NOS (C75.1)" ], [ "8272", "3", "Pituitary carcinoma, NOS (C75.1)" ], [ "8280", "0", "Acidophil adenoma (C75.1)" ], [ "8280", "3", "Acidophil carcinoma (C75.1)" ], [ "8281", "0", "Mixed acidophil-basophil adenoma (C75.1)" ], [ "8281", "3", "Mixed acidophil-basophil carcinoma (C75.1)" ], [ "8290", "0", "Oxyphilic adenoma" ], [ "8290", "3", "Oxyphilic adenocarcinoma" ], [ "8300", "0", "Basophil adenoma (C75.1)" ], [ "8300", "3", "Basophil carcinoma (C75.1)" ], [ "8310", "0", "Clear cell adenoma" ], [ "8310", "3", "Clear cell adenocarcinoma, NOS" ], [ "8311", "1", "Hypernephroid tumor [obs]" ], [ "8312", "3", "Renal cell carcinoma, NOS (C64.9)" ], [ "8313", "0", "Clear cell adenofibroma (C56.9)" ], [ "8313", "1", "Clear cell adenofibroma of borderline malignancy (C56.9)" ], [ "8313", "3", "Clear cell adenocarcinofibroma (C56.9)" ], [ "8314", "3", "Lipid-rich carcinoma (C50._)" ], [ "8315", "3", "Glycogen-rich carcinoma" ], [ "8316", "3", "Cyst-associated renal cell carcinoma (C64.9)" ], [ "8317", "3", "Renal cell carcinoma, chromophobe type (C64.9)" ], [ "8318", "3", "Renal cell carcinoma, sarcomatoid (C64.9)" ], [ "8319", "3", "Collecting duct carcinoma (C64.9)" ], [ "8320", "3", "Granular cell carcinoma" ], [ "8321", "0", "Chief cell adenoma (C75.0)" ], [ "8322", "0", "Water-clear cell adenoma (C75.0)" ], [ "8322", "3", "Water-clear cell adenocarcinoma (C75.0)" ], [ "8323", "0", "Mixed cell adenoma" ], [ "8323", "3", "Mixed cell adenocarcinoma" ], [ "8324", "0", "Lipoadenoma" ], [ "8325", "0", "Metanephric adenoma (C64.9)" ], [ "8330", "0", "Follicular adenoma (C73.9)" ], [ "8330", "1", "Atypical follicular adenoma (C73.9)" ], [ "8330", "3", "Follicular adenocarcinoma, NOS (C73.9)" ], [ "8331", "3", "Follicular adenocarcinoma, well differentiated (C73.9)" ], [ "8332", "3", "Follicular adenocarcinoma, trabecular (C73.9)" ], [ "8333", "0", "Microfollicular adenoma, NOS (C73.9)" ], [ "8333", "3", "Fetal adenocarcinoma" ], [ "8334", "0", "Macrofollicular adenoma (C73.9)" ], [ "8335", "3", "Follicular carcinoma, minimally invasive (C73.9)" ], [ "8336", "0", "Hyalinizing trabecular adenoma (C73.9)" ], [ "8337", "3", "Insular carcinoma (C73.9)" ], [ "8340", "3", "Papillary carcinoma, follicular variant (C73.9)" ], [ "8341", "3", "Papillary microcarcinoma (C73.9)" ], [ "8342", "3", "Papillary carcinoma, oxyphilic cell (C73.9)" ], [ "8343", "3", "Papillary carcinoma, encapsulated (C73.9)" ], [ "8344", "3", "Papillary carcinoma, columnar cell (C73.9)" ], [ "8345", "3", "Medullary carcinoma with amyloid stroma (C73.9)" ], [ "8346", "3", "Mixed medullary-follicular carcinoma (C73.9)" ], [ "8347", "3", "Mixed medullary-papillary carcinoma (C73.9)" ], [ "8350", "3", "Nonencapsulated sclerosing carcinoma (C73.9)" ], [ "8360", "1", "Multiple endocrine adenomas" ], [ "8361", "0", "Juxtaglomerular tumor (C64.9)" ], [ "8370", "0", "Adrenal cortical adenoma, NOS (C74.0)" ], [ "8370", "3", "Adrenal cortical carcinoma (C74.0)" ], [ "8371", "0", "Adrenal cortical adenoma, compact cell (C74.0)" ], [ "8372", "0", "Adrenal cortical adenoma, pigmented (C74.0)" ], [ "8373", "0", "Adrenal cortical adenoma, clear cell (C74.0)" ], [ "8374", "0", "Adrenal cortical adenoma, glomerulosa cell (C74.0)" ], [ "8375", "0", "Adrenal cortical adenoma, mixed cell (C74.0)" ], [ "8380", "0", "Endometrioid adenoma, NOS" ], [ "8380", "1", "Endometrioid adenoma, borderline malignancy" ], [ "8380", "3", "Endometrioid adenocarcinoma, NOS" ], [ "8381", "0", "Endometrioid adenofibroma, NOS" ], [ "8381", "1", "Endometrioid adenofibroma, borderline malignancy" ], [ "8381", "3", "Endometrioid adenofibroma, malignant" ], [ "8382", "3", "Endometrioid adenocarcinoma, secretory variant" ], [ "8383", "3", "Endometrioid adenocarcinoma, ciliated cell variant" ], [ "8384", "3", "Adenocarcinoma, endocervical type" ], [ "8390", "0", "Skin appendage adenoma (C44._)" ], [ "8390", "3", "Skin appendage carcinoma (C44._)" ], [ "8391", "0", "Follicular fibroma (C44._)" ], [ "8392", "0", "Syringofibroadenoma (C44._)" ], [ "8400", "0", "Sweat gland adenoma (C44._)" ], [ "8400", "1", "Sweat gland tumor, NOS (C44._)" ], [ "8400", "3", "Sweat gland adenocarcinoma (C44._)" ], [ "8401", "0", "Apocrine adenoma" ], [ "8401", "3", "Apocrine adenocarcinoma" ], [ "8402", "0", "Nodular hidradenoma (C44._)" ], [ "8402", "3", "Nodular hidradenoma, malignant (C44._)" ], [ "8403", "0", "Eccrine spiradenoma (C44._)" ], [ "8403", "3", "Malignant eccrine spiradenoma (C44._)" ], [ "8404", "0", "Hidrocystoma (C44._)" ], [ "8405", "0", "Papillary hidradenoma" ], [ "8406", "0", "Papillary syringadenoma (C44._)" ], [ "8407", "0", "Syringoma, NOS (C44._)" ], [ "8407", "3", "Sclerosing sweat duct carcinoma (C44._)" ], [ "8408", "0", "Eccrine papillary adenoma (C44._)" ], [ "8408", "1", "Aggressive digital papillary adenoma (C44._)" ], [ "8408", "3", "Eccrine papillary adenocarcinoma (C44._)" ], [ "8409", "0", "Eccrine poroma (C44._)" ], [ "8409", "3", "Eccrine poroma, malignant" ], [ "8410", "0", "Sebaceous adenoma (C44._)" ], [ "8410", "3", "Sebaceous adenocarcinoma (C44._)" ], [ "8413", "3", "Eccrine adenocarcinoma (C44._)" ], [ "8420", "0", "Ceruminous adenoma (C44.2)" ], [ "8420", "3", "Ceruminous adenocarcinoma (C44.2)" ], [ "8430", "1", "Mucoepidermoid tumor [obs]" ], [ "8430", "3", "Mucoepidermoid carcinoma" ], [ "8440", "0", "Cystadenoma, NOS" ], [ "8440", "3", "Cystadenocarcinoma, NOS" ], [ "8441", "0", "Serous cystadenoma, NOS" ], [ "8441", "3", "Serous cystadenocarcinoma, NOS (C56.9)" ], [ "8442", "1", "Serous cystadenoma, borderline malignancy (C56.9)" ], [ "8443", "0", "Clear cell cystadenoma (C56.9)" ], [ "8444", "1", "Clear cell cystic tumor of borderline malignancy (C56.9)" ], [ "8450", "0", "Papillary cystadenoma, NOS (C56.9)" ], [ "8450", "3", "Papillary cystadenocarcinoma, NOS (C56.9)" ], [ "8451", "1", "Papillary cystadenoma, borderline malignancy (C56.9)" ], [ "8452", "1", "Solid pseudopapillary tumor (C25._)" ], [ "8452", "3", "Solid pseudopapillary carcinoma (C25._)" ], [ "8453", "0", "Intraductal papillary-mucinous adenoma (C25._)" ], [ "8453", "1", "Intraductal papillary-mucinous tumor with moderate dysplasia (C25._)" ], [ "8453", "2", "Intraductal papillary-mucinous carcinoma, non-invasive (C25._)" ], [ "8453", "3", "Intraductal papillary-mucinous carcinoma, invasive (C25._)" ], [ "8454", "0", "Cystic tumor of atrio-ventricular node (C38.0)" ], [ "8460", "0", "Papillary serous cystadenoma, NOS (C56.9)" ], [ "8460", "3", "Papillary serous cystadenocarcinoma (C56.9)" ], [ "8461", "0", "Serous surface papilloma (C56.9)" ], [ "8461", "3", "Serous surface papillary carcinoma (C56.9)" ], [ "8462", "1", "Serous papillary cystic tumor of borderline malignancy (C56.9)" ], [ "8463", "1", "Serous surface papillary tumor of borderline malignancy (C56.9)" ], [ "8470", "0", "Mucinous cystadenoma, NOS (C56.9)" ], [ "8470", "1", "Mucinous cystic tumor with moderate dysplasia (C25._)" ], [ "8470", "2", "Mucinous cystadenocarcinoma, non-invasive (C25._)" ], [ "8470", "3", "Mucinous cystadenocarcinoma, NOS (C56.9)" ], [ "8471", "0", "Papillary mucinous cystadenoma, NOS (C56.9)" ], [ "8471", "3", "Papillary mucinous cystadenocarcinoma (C56.9)" ], [ "8472", "1", "Mucinous cystic tumor of borderline malignancy (C56.9)" ], [ "8473", "1", "Papillary mucinous cystadenoma, borderline malignancy (C56.9)" ], [ "8480", "0", "Mucinous adenoma" ], [ "8480", "3", "Mucinous adenocarcinoma" ], [ "8480", "6", "Pseudomyxoma peritonei" ], [ "8481", "3", "Mucin-producing adenocarcinoma" ], [ "8482", "3", "Mucinous adenocarcinoma, endocervical type" ], [ "8490", "3", "Signet ring cell carcinoma" ], [ "8490", "6", "Metastatic signet ring cell carcinoma" ], [ "8500", "2", "Intraductal carcinoma, noninfiltrating, NOS" ], [ "8500", "3", "Infiltrating duct carcinoma, NOS (C50._)" ], [ "8501", "2", "Comedocarcinoma, noninfiltrating (C50._)" ], [ "8501", "3", "Comedocarcinoma, NOS (C50._)" ], [ "8502", "3", "Secretory carcinoma of breast (C50._)" ], [ "8503", "0", "Intraductal papilloma" ], [ "8503", "2", "Noninfiltrating intraductal papillary adenocarcinoma (C50._)" ], [ "8503", "3", "Intraductal papillary adenocarcinoma with invasion (C50._)" ], [ "8504", "0", "Intracystic papillary adenoma" ], [ "8504", "2", "Noninfiltrating intracystic carcinoma" ], [ "8504", "3", "Intracystic carcinoma, NOS" ], [ "8505", "0", "Intraductal papillomatosis, NOS" ], [ "8506", "0", "Adenoma of nipple (C50.0)" ], [ "8507", "2", "Intraductal micropapillary carcinoma (C50._)" ], [ "8508", "3", "Cystic hypersecretory carcinoma (C50._)" ], [ "8510", "3", "Medullary carcinoma, NOS" ], [ "8512", "3", "Medullary carcinoma with lymphoid stroma" ], [ "8513", "3", "Atypical medullary carcinoma (C50._)" ], [ "8514", "3", "Duct carcinoma, desmoplastic type" ], [ "8520", "2", "Lobular carcinoma in situ, NOS (C50._)" ], [ "8520", "3", "Lobular carcinoma, NOS (C50._)" ], [ "8521", "3", "Infiltrating ductular carcinoma (C50._)" ], [ "8522", "2", "Intraductal carcinoma and lobular carcinoma in situ (C50._)" ], [ "8522", "3", "Infiltrating duct and lobular carcinoma (C50._)" ], [ "8523", "3", "Infiltrating duct mixed with other types of carcinoma (C50._)" ], [ "8524", "3", "Infiltrating lobular mixed with other types of carcinoma (C50._)" ], [ "8525", "3", "Polymorphous low grade adenocarcinoma" ], [ "8530", "3", "Inflammatory carcinoma (C50._)" ], [ "8540", "3", "Paget disease, mammary (C50._)" ], [ "8541", "3", "Paget disease and infiltrating duct carcinoma of breast (C50._)" ], [ "8542", "3", "Paget disease, extramammary (except Paget disease of bone)" ], [ "8543", "3", "Paget disease and intraductal carcinoma of breast (C50._)" ], [ "8550", "0", "Acinar cell adenoma" ], [ "8550", "1", "Acinar cell tumor [obs]" ], [ "8550", "3", "Acinar cell carcinoma" ], [ "8551", "3", "Acinar cell cystadenocarcinoma" ], [ "8560", "0", "Mixed squamous cell and glandular papilloma" ], [ "8560", "3", "Adenosquamous carcinoma" ], [ "8561", "0", "Adenolymphoma (C07._, C08._)" ], [ "8562", "3", "Epithelial-myoepithelial carcinoma" ], [ "8570", "3", "Adenocarcinoma with squamous metaplasia" ], [ "8571", "3", "Adenocarcinoma with cartilaginous and osseous metaplasia" ], [ "8572", "3", "Adenocarcinoma with spindle cell metaplasia" ], [ "8573", "3", "Adenocarcinoma with apocrine metaplasia" ], [ "8574", "3", "Adenocarcinoma with neuroendocrine differentiation" ], [ "8575", "3", "Metaplastic carcinoma, NOS" ], [ "8576", "3", "Hepatoid adenocarcinoma" ], [ "8580", "0", "Thymoma, benign (C37.9)" ], [ "8580", "1", "Thymoma, NOS (C37.9)" ], [ "8580", "3", "Thymoma, malignant, NOS (C37.9)" ], [ "8581", "1", "Thymoma, type A, NOS (C37.9)" ], [ "8581", "3", "Thymoma, type A, malignant (C37.9)" ], [ "8582", "1", "Thymoma, type AB, NOS (C37.9)" ], [ "8582", "3", "Thymoma, type AB, malignant (C37.9)" ], [ "8583", "1", "Thymoma, type B1, NOS (C37.9)" ], [ "8583", "3", "Thymoma, type B1, malignant (C37.9)" ], [ "8584", "1", "Thymoma, type B2, NOS (C37.9)" ], [ "8584", "3", "Thymoma, type B2, malignant (C37.9)" ], [ "8585", "1", "Thymoma, type B3, NOS (C37.9)" ], [ "8585", "3", "Thymoma, type B3, malignant (C37.9)" ], [ "8586", "3", "Thymic carcinoma, NOS (C37.9)" ], [ "8587", "0", "Ectopic hamartomatous thymoma" ], [ "8588", "3", "Spindle epithelial tumor with thymus-like element" ], [ "8589", "3", "Carcinoma showing thymus-like element" ], [ "8590", "1", "Sex cord-gonadal stromal tumor, NOS" ], [ "8591", "1", "Sex cord-gonadal stromal tumor, incompletely differentiated" ], [ "8592", "1", "Sex cord-gonadal stromal tumor, mixed forms" ], [ "8593", "1", "Stromal tumor with minor sex cord elements (C56.9)" ], [ "8600", "0", "Thecoma, NOS (C56.9)" ], [ "8600", "3", "Thecoma, malignant (C56.9)" ], [ "8601", "0", "Thecoma, luteinized (C56.9)" ], [ "8602", "0", "Sclerosing stromal tumor (C56.9)" ], [ "8610", "0", "Luteoma, NOS (C56.9)" ], [ "8620", "1", "Granulosa cell tumor, adult type (C56.9)" ], [ "8620", "3", "Granulosa cell tumor, malignant (C56.9)" ], [ "8621", "1", "Granulosa cell-theca cell tumor (C56.9)" ], [ "8622", "1", "Granulosa cell tumor, juvenile (C56.9)" ], [ "8623", "1", "Sex cord tumor with annular tubules (C56.9)" ], [ "8630", "0", "Androblastoma, benign" ], [ "8630", "1", "Androblastoma, NOS" ], [ "8630", "3", "Androblastoma, malignant" ], [ "8631", "0", "Sertoli-Leydig cell tumor, well differentiated" ], [ "8631", "1", "Sertoli-Leydig cell tumor of intermediate differentiation" ], [ "8631", "3", "Sertoli-Leydig cell tumor, poorly differentiated" ], [ "8632", "1", "Gynandroblastoma (C56.9)" ], [ "8633", "1", "Sertoli-Leydig cell tumor, retiform" ], [ "8634", "1", "Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements" ], [ "8634", "3", "Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements" ], [ "8640", "1", "Sertoli cell tumor, NOS" ], [ "8640", "3", "Sertoli cell carcinoma (C62._)" ], [ "8641", "0", "Sertoli cell tumor with lipid storage" ], [ "8642", "1", "Large cell calcifying Sertoli cell tumor" ], [ "8650", "0", "Leydig cell tumor, benign (C62._)" ], [ "8650", "1", "Leydig cell tumor, NOS (C62._)" ], [ "8650", "3", "Leydig cell tumor, malignant (C62._)" ], [ "8660", "0", "Hilus cell tumor (C56.9)" ], [ "8670", "0", "Lipid cell tumor of ovary (C56.9)" ], [ "8670", "3", "Steroid cell tumor, malignant" ], [ "8671", "0", "Adrenal rest tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8940", "0", "Pleomorphic adenoma" ], [ "8940", "3", "Mixed tumor, malignant, NOS" ], [ "8941", "3", "Carcinoma in pleomorphic adenoma (C07._, C08._)" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pag.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pag.json
deleted file mode 100644
index a09a1e852..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pag.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pag",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.820Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8120", "0", "Transitional cell papilloma, benign" ], [ "8120", "1", "Urothelial papilloma, NOS" ], [ "8120", "2", "Transitional cell carcinoma in situ" ], [ "8120", "3", "Transitional cell carcinoma, NOS" ], [ "8121", "0", "Schneiderian papilloma, NOS (C30.0, C31._)" ], [ "8121", "1", "Transitional cell papilloma, inverted, NOS" ], [ "8121", "3", "Schneiderian carcinoma (C30.0, C31._)" ], [ "8122", "3", "Transitional cell carcinoma, spindle cell" ], [ "8123", "3", "Basaloid carcinoma" ], [ "8124", "3", "Cloacogenic carcinoma (C21.2)" ], [ "8130", "1", "Papillary transitional cell neoplasm of low malignant potential (C67._)" ], [ "8130", "2", "Papillary transitional cell carcinoma, non-invasive (C67._)" ], [ "8130", "3", "Papillary transitional cell carcinoma (C67._)" ], [ "8131", "3", "Transitional cell carcinoma, micropapillary (C67._)" ], [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8248", "1", "Apudoma" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paj.json
deleted file mode 100644
index a9904d9c6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_paj.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_paj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:46.905Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8000", "0", "Neoplasm, benign" ], [ "8000", "1", "Neoplasm, uncertain whether benign or malignant" ], [ "8000", "3", "Neoplasm, malignant" ], [ "8000", "6", "Neoplasm, metastatic" ], [ "8000", "9", "Neoplasm, malignant, uncertain whether primary or metastatic" ], [ "8001", "0", "Tumor cells, benign" ], [ "8001", "1", "Tumor cells, uncertain whether benign or malignant" ], [ "8001", "3", "Tumor cells, malignant" ], [ "8002", "3", "Malignant tumor, small cell type" ], [ "8003", "3", "Malignant tumor, giant cell type" ], [ "8004", "3", "Malignant tumor, spindle cell type" ], [ "8005", "0", "Clear cell tumor, NOS" ], [ "8005", "3", "Malignant tumor, clear cell type" ], [ "8010", "0", "Epithelial tumor, benign" ], [ "8010", "2", "Carcinoma in situ, NOS" ], [ "8010", "3", "Carcinoma, NOS" ], [ "8010", "6", "Carcinoma, metastatic, NOS" ], [ "8010", "9", "Carcinomatosis" ], [ "8011", "0", "Epithelioma, benign" ], [ "8011", "3", "Epithelioma, malignant" ], [ "8012", "3", "Large cell carcinoma, NOS" ], [ "8013", "3", "Large cell neuroendocrine carcinoma" ], [ "8014", "3", "Large cell carcinoma with rhabdoid phenotype" ], [ "8015", "3", "Glassy cell carcinoma" ], [ "8020", "3", "Carcinoma, undifferentiated, NOS" ], [ "8021", "3", "Carcinoma, anaplastic, NOS" ], [ "8022", "3", "Pleomorphic carcinoma" ], [ "8030", "3", "Giant cell and spindle cell carcinoma" ], [ "8031", "3", "Giant cell carcinoma" ], [ "8032", "3", "Spindle cell carcinoma, NOS" ], [ "8033", "3", "Pseudosarcomatous carcinoma" ], [ "8034", "3", "Polygonal cell carcinoma" ], [ "8035", "3", "Carcinoma with osteoclast-like giant cells" ], [ "8040", "0", "Tumorlet, benign" ], [ "8040", "1", "Tumorlet, NOS" ], [ "8041", "3", "Small cell carcinoma, NOS" ], [ "8042", "3", "Oat cell carcinoma (C34._)" ], [ "8043", "3", "Small cell carcinoma, fusiform cell" ], [ "8044", "3", "Small cell carcinoma, intermediate cell" ], [ "8045", "3", "Combined small cell carcinoma" ], [ "8046", "3", "Non-small cell carcinoma (C34._)" ], [ "8050", "0", "Papilloma, NOS (except papilloma of bladder M-8120/1)" ], [ "8050", "2", "Papillary carcinoma in situ" ], [ "8050", "3", "Papillary carcinoma, NOS" ], [ "8051", "0", "Verrucous papilloma" ], [ "8051", "3", "Verrucous carcinoma, NOS" ], [ "8052", "0", "Squamous cell papilloma, NOS" ], [ "8052", "2", "Papillary squamous cell carcinoma, non-invasive" ], [ "8052", "3", "Papillary squamous cell carcinoma" ], [ "8053", "0", "Squamous cell papilloma, inverted" ], [ "8060", "0", "Squamous papillomatosis" ], [ "8070", "2", "Squamous cell carcinoma in situ, NOS" ], [ "8070", "3", "Squamous cell carcinoma, NOS" ], [ "8070", "6", "Squamous cell carcinoma, metastatic, NOS" ], [ "8071", "3", "Squamous cell carcinoma, keratinizing, NOS" ], [ "8072", "3", "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ], [ "8073", "3", "Squamous cell carcinoma, small cell, nonkeratinizing" ], [ "8074", "3", "Squamous cell carcinoma, spindle cell" ], [ "8075", "3", "Squamous cell carcinoma, adenoid" ], [ "8076", "2", "Squamous cell carcinoma in situ with questionable stromal invasion" ], [ "8076", "3", "Squamous cell carcinoma, microinvasive" ], [ "8077", "2", "Squamous intraepithelial neoplasia, grade III" ], [ "8078", "3", "Squamous cell carcinoma with horn formation" ], [ "8080", "2", "Queyrat erythroplasia (C60._)" ], [ "8081", "2", "Bowen disease (C44._)" ], [ "8082", "3", "Lymphoepithelial carcinoma" ], [ "8083", "3", "Basaloid squamous cell carcinoma" ], [ "8084", "3", "Squamous cell carcinoma, clear cell type" ], [ "8090", "1", "Basal cell tumor (C44._)" ], [ "8090", "3", "Basal cell carcinoma, NOS (C44._)" ], [ "8091", "3", "Multifocal superficial basal cell carcinoma (C44._)" ], [ "8092", "3", "Infiltrating basal cell carcinoma, NOS (C44._)" ], [ "8093", "3", "Basal cell carcinoma, fibroepithelial (C44._)" ], [ "8094", "3", "Basosquamous carcinoma (C44._)" ], [ "8095", "3", "Metatypical carcinoma (C44._)" ], [ "8096", "0", "Intraepidermal epithelioma of Jadassohn (C44._)" ], [ "8097", "3", "Basal cell carcinoma, nodular (C44._)" ], [ "8098", "3", "Adenoid basal carcinoma (C53._)" ], [ "8100", "0", "Trichoepithelioma (C44._)" ], [ "8101", "0", "Trichofolliculoma (C44._)" ], [ "8102", "0", "Trichilemmoma (C44._)" ], [ "8102", "3", "Trichilemmocarcinoma (C44._)" ], [ "8103", "0", "Pilar tumor (C44._)" ], [ "8110", "0", "Pilomatrixoma, NOS (C44._)" ], [ "8110", "3", "Pilomatrix carcinoma (C44._)" ], [ "8120", "0", "Transitional cell papilloma, benign" ], [ "8120", "1", "Urothelial papilloma, NOS" ], [ "8120", "2", "Transitional cell carcinoma in situ" ], [ "8120", "3", "Transitional cell carcinoma, NOS" ], [ "8121", "0", "Schneiderian papilloma, NOS (C30.0, C31._)" ], [ "8121", "1", "Transitional cell papilloma, inverted, NOS" ], [ "8121", "3", "Schneiderian carcinoma (C30.0, C31._)" ], [ "8122", "3", "Transitional cell carcinoma, spindle cell" ], [ "8123", "3", "Basaloid carcinoma" ], [ "8124", "3", "Cloacogenic carcinoma (C21.2)" ], [ "8130", "1", "Papillary transitional cell neoplasm of low malignant potential (C67._)" ], [ "8130", "2", "Papillary transitional cell carcinoma, non-invasive (C67._)" ], [ "8130", "3", "Papillary transitional cell carcinoma (C67._)" ], [ "8131", "3", "Transitional cell carcinoma, micropapillary (C67._)" ], [ "8140", "0", "Adenoma, NOS" ], [ "8140", "1", "Atypical adenoma" ], [ "8140", "2", "Adenocarcinoma in situ, NOS" ], [ "8140", "3", "Adenocarcinoma, NOS" ], [ "8140", "6", "Adenocarcinoma, metastatic, NOS" ], [ "8141", "3", "Scirrhous adenocarcinoma" ], [ "8142", "3", "Linitis plastica (C16._)" ], [ "8143", "3", "Superficial spreading adenocarcinoma" ], [ "8144", "3", "Adenocarcinoma, intestinal type (C16._)" ], [ "8145", "3", "Carcinoma, diffuse type (C16._)" ], [ "8146", "0", "Monomorphic adenoma" ], [ "8147", "0", "Basal cell adenoma" ], [ "8147", "3", "Basal cell adenocarcinoma" ], [ "8148", "2", "Glandular intraepithelial neoplasia, grade III" ], [ "8149", "0", "Canalicular adenoma" ], [ "8150", "0", "Islet cell adenoma (C25._)" ], [ "8150", "1", "Islet cell tumor, NOS (C25._)" ], [ "8150", "3", "Islet cell carcinoma (C25._)" ], [ "8151", "0", "Insulinoma, NOS (C25._)" ], [ "8151", "3", "Insulinoma, malignant (C25._)" ], [ "8152", "1", "Glucagonoma, NOS (C25._)" ], [ "8152", "3", "Glucagonoma, malignant (C25._)" ], [ "8153", "1", "Gastrinoma, NOS" ], [ "8153", "3", "Gastrinoma, malignant" ], [ "8154", "3", "Mixed islet cell and exocrine adenocarcinoma (C25._)" ], [ "8155", "1", "Vipoma, NOS" ], [ "8155", "3", "Vipoma, malignant" ], [ "8156", "1", "Somatostatinoma, NOS" ], [ "8156", "3", "Somatostatinoma, malignant" ], [ "8157", "1", "Enteroglucagonoma, NOS" ], [ "8157", "3", "Enteroglucagonoma, malignant" ], [ "8160", "0", "Bile duct adenoma (C22.1, C24.0)" ], [ "8160", "3", "Cholangiocarcinoma (C22.1, C24.0)" ], [ "8161", "0", "Bile duct cystadenoma (C22.1, C24.0)" ], [ "8161", "3", "Bile duct cystadenocarcinoma (C22.1, C24.0)" ], [ "8162", "3", "Klatskin tumor (C22.1, C24.0)" ], [ "8170", "0", "Liver cell adenoma (C22.0)" ], [ "8170", "3", "Hepatocellular carcinoma, NOS (C22.0)" ], [ "8171", "3", "Hepatocellular carcinoma, fibrolamellar (C22.0)" ], [ "8172", "3", "Hepatocellular carcinoma, scirrhous (C22.0)" ], [ "8173", "3", "Hepatocellular carcinoma, spindle cell variant (C22.0)" ], [ "8174", "3", "Hepatocellular carcinoma, clear cell type (C22.0)" ], [ "8175", "3", "Hepatocellular carcinoma, pleomorphic type (C22.0)" ], [ "8180", "3", "Combined hepatocellular carcinoma and cholangiocarcinoma (C22.0)" ], [ "8190", "0", "Trabecular adenoma" ], [ "8190", "3", "Trabecular adenocarcinoma" ], [ "8191", "0", "Embryonal adenoma" ], [ "8200", "0", "Eccrine dermal cylindroma (C44._)" ], [ "8200", "3", "Adenoid cystic carcinoma" ], [ "8201", "2", "Cribriform carcinoma in situ (C50._)" ], [ "8201", "3", "Cribriform carcinoma, NOS" ], [ "8202", "0", "Microcystic adenoma (C25._)" ], [ "8204", "0", "Lactating adenoma (C50._)" ], [ "8210", "0", "Adenomatous polyp, NOS" ], [ "8210", "2", "Adenocarcinoma in situ in adenomatous polyp" ], [ "8210", "3", "Adenocarcinoma in adenomatous polyp" ], [ "8211", "0", "Tubular adenoma, NOS" ], [ "8211", "3", "Tubular adenocarcinoma" ], [ "8212", "0", "Flat adenoma" ], [ "8213", "0", "Serrated adenoma (C18._)" ], [ "8214", "3", "Parietal cell carcinoma (C16._)" ], [ "8215", "3", "Adenocarcinoma of anal glands (C21.1)" ], [ "8220", "0", "Adenomatous polyposis coli (C18._)" ], [ "8220", "3", "Adenocarcinoma in adenomatous polyposis coli (C18._)" ], [ "8221", "0", "Multiple adenomatous polyps" ], [ "8221", "3", "Adenocarcinoma in multiple adenomatous polyps" ], [ "8230", "2", "Ductal carcinoma in situ, solid type (C50._)" ], [ "8230", "3", "Solid carcinoma, NOS" ], [ "8231", "3", "Carcinoma simplex" ], [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8250", "1", "Pulmonary adenomatosis (C34._)" ], [ "8250", "3", "Bronchiolo-alveolar adenocarcinoma, NOS (C34._)" ], [ "8251", "0", "Alveolar adenoma (C34._)" ], [ "8251", "3", "Alveolar adenocarcinoma (C34._)" ], [ "8252", "3", "Bronchiolo-alveolar carcinoma, non-mucinous (C34._)" ], [ "8253", "3", "Bronchiolo-alveolar carcinoma, mucinous (C34._)" ], [ "8254", "3", "Bronchiolo-alveolar carcinoma, mixed mucinous and non-mucinous (C34._)" ], [ "8255", "3", "Adenocarcinoma with mixed subtypes" ], [ "8260", "0", "Papillary adenoma, NOS" ], [ "8260", "3", "Papillary adenocarcinoma, NOS" ], [ "8261", "0", "Villous adenoma, NOS" ], [ "8261", "2", "Adenocarcinoma in situ in villous adenoma" ], [ "8261", "3", "Adenocarcinoma in villous adenoma" ], [ "8262", "3", "Villous adenocarcinoma" ], [ "8263", "0", "Tubulovillous adenoma, NOS" ], [ "8263", "2", "Adenocarcinoma in situ in tubulovillous adenoma" ], [ "8263", "3", "Adenocarcinoma in tubulovillous adenoma" ], [ "8264", "0", "Papillomatosis, glandular" ], [ "8270", "0", "Chromophobe adenoma (C75.1)" ], [ "8270", "3", "Chromophobe carcinoma (C75.1)" ], [ "8271", "0", "Prolactinoma (C75.1)" ], [ "8272", "0", "Pituitary adenoma, NOS (C75.1)" ], [ "8272", "3", "Pituitary carcinoma, NOS (C75.1)" ], [ "8280", "0", "Acidophil adenoma (C75.1)" ], [ "8280", "3", "Acidophil carcinoma (C75.1)" ], [ "8281", "0", "Mixed acidophil-basophil adenoma (C75.1)" ], [ "8281", "3", "Mixed acidophil-basophil carcinoma (C75.1)" ], [ "8290", "0", "Oxyphilic adenoma" ], [ "8290", "3", "Oxyphilic adenocarcinoma" ], [ "8300", "0", "Basophil adenoma (C75.1)" ], [ "8300", "3", "Basophil carcinoma (C75.1)" ], [ "8310", "0", "Clear cell adenoma" ], [ "8310", "3", "Clear cell adenocarcinoma, NOS" ], [ "8311", "1", "Hypernephroid tumor [obs]" ], [ "8312", "3", "Renal cell carcinoma, NOS (C64.9)" ], [ "8313", "0", "Clear cell adenofibroma (C56.9)" ], [ "8313", "1", "Clear cell adenofibroma of borderline malignancy (C56.9)" ], [ "8313", "3", "Clear cell adenocarcinofibroma (C56.9)" ], [ "8314", "3", "Lipid-rich carcinoma (C50._)" ], [ "8315", "3", "Glycogen-rich carcinoma" ], [ "8316", "3", "Cyst-associated renal cell carcinoma (C64.9)" ], [ "8317", "3", "Renal cell carcinoma, chromophobe type (C64.9)" ], [ "8318", "3", "Renal cell carcinoma, sarcomatoid (C64.9)" ], [ "8319", "3", "Collecting duct carcinoma (C64.9)" ], [ "8320", "3", "Granular cell carcinoma" ], [ "8321", "0", "Chief cell adenoma (C75.0)" ], [ "8322", "0", "Water-clear cell adenoma (C75.0)" ], [ "8322", "3", "Water-clear cell adenocarcinoma (C75.0)" ], [ "8323", "0", "Mixed cell adenoma" ], [ "8323", "3", "Mixed cell adenocarcinoma" ], [ "8324", "0", "Lipoadenoma" ], [ "8325", "0", "Metanephric adenoma (C64.9)" ], [ "8330", "0", "Follicular adenoma (C73.9)" ], [ "8330", "1", "Atypical follicular adenoma (C73.9)" ], [ "8330", "3", "Follicular adenocarcinoma, NOS (C73.9)" ], [ "8331", "3", "Follicular adenocarcinoma, well differentiated (C73.9)" ], [ "8332", "3", "Follicular adenocarcinoma, trabecular (C73.9)" ], [ "8333", "0", "Microfollicular adenoma, NOS (C73.9)" ], [ "8333", "3", "Fetal adenocarcinoma" ], [ "8334", "0", "Macrofollicular adenoma (C73.9)" ], [ "8335", "3", "Follicular carcinoma, minimally invasive (C73.9)" ], [ "8336", "0", "Hyalinizing trabecular adenoma (C73.9)" ], [ "8337", "3", "Insular carcinoma (C73.9)" ], [ "8340", "3", "Papillary carcinoma, follicular variant (C73.9)" ], [ "8341", "3", "Papillary microcarcinoma (C73.9)" ], [ "8342", "3", "Papillary carcinoma, oxyphilic cell (C73.9)" ], [ "8343", "3", "Papillary carcinoma, encapsulated (C73.9)" ], [ "8344", "3", "Papillary carcinoma, columnar cell (C73.9)" ], [ "8345", "3", "Medullary carcinoma with amyloid stroma (C73.9)" ], [ "8346", "3", "Mixed medullary-follicular carcinoma (C73.9)" ], [ "8347", "3", "Mixed medullary-papillary carcinoma (C73.9)" ], [ "8350", "3", "Nonencapsulated sclerosing carcinoma (C73.9)" ], [ "8360", "1", "Multiple endocrine adenomas" ], [ "8361", "0", "Juxtaglomerular tumor (C64.9)" ], [ "8370", "0", "Adrenal cortical adenoma, NOS (C74.0)" ], [ "8370", "3", "Adrenal cortical carcinoma (C74.0)" ], [ "8371", "0", "Adrenal cortical adenoma, compact cell (C74.0)" ], [ "8372", "0", "Adrenal cortical adenoma, pigmented (C74.0)" ], [ "8373", "0", "Adrenal cortical adenoma, clear cell (C74.0)" ], [ "8374", "0", "Adrenal cortical adenoma, glomerulosa cell (C74.0)" ], [ "8375", "0", "Adrenal cortical adenoma, mixed cell (C74.0)" ], [ "8380", "0", "Endometrioid adenoma, NOS" ], [ "8380", "1", "Endometrioid adenoma, borderline malignancy" ], [ "8380", "3", "Endometrioid adenocarcinoma, NOS" ], [ "8381", "0", "Endometrioid adenofibroma, NOS" ], [ "8381", "1", "Endometrioid adenofibroma, borderline malignancy" ], [ "8381", "3", "Endometrioid adenofibroma, malignant" ], [ "8382", "3", "Endometrioid adenocarcinoma, secretory variant" ], [ "8383", "3", "Endometrioid adenocarcinoma, ciliated cell variant" ], [ "8384", "3", "Adenocarcinoma, endocervical type" ], [ "8390", "0", "Skin appendage adenoma (C44._)" ], [ "8390", "3", "Skin appendage carcinoma (C44._)" ], [ "8391", "0", "Follicular fibroma (C44._)" ], [ "8392", "0", "Syringofibroadenoma (C44._)" ], [ "8400", "0", "Sweat gland adenoma (C44._)" ], [ "8400", "1", "Sweat gland tumor, NOS (C44._)" ], [ "8400", "3", "Sweat gland adenocarcinoma (C44._)" ], [ "8401", "0", "Apocrine adenoma" ], [ "8401", "3", "Apocrine adenocarcinoma" ], [ "8402", "0", "Nodular hidradenoma (C44._)" ], [ "8402", "3", "Nodular hidradenoma, malignant (C44._)" ], [ "8403", "0", "Eccrine spiradenoma (C44._)" ], [ "8403", "3", "Malignant eccrine spiradenoma (C44._)" ], [ "8404", "0", "Hidrocystoma (C44._)" ], [ "8405", "0", "Papillary hidradenoma" ], [ "8406", "0", "Papillary syringadenoma (C44._)" ], [ "8407", "0", "Syringoma, NOS (C44._)" ], [ "8407", "3", "Sclerosing sweat duct carcinoma (C44._)" ], [ "8408", "0", "Eccrine papillary adenoma (C44._)" ], [ "8408", "1", "Aggressive digital papillary adenoma (C44._)" ], [ "8408", "3", "Eccrine papillary adenocarcinoma (C44._)" ], [ "8409", "0", "Eccrine poroma (C44._)" ], [ "8409", "3", "Eccrine poroma, malignant" ], [ "8410", "0", "Sebaceous adenoma (C44._)" ], [ "8410", "3", "Sebaceous adenocarcinoma (C44._)" ], [ "8413", "3", "Eccrine adenocarcinoma (C44._)" ], [ "8420", "0", "Ceruminous adenoma (C44.2)" ], [ "8420", "3", "Ceruminous adenocarcinoma (C44.2)" ], [ "8430", "1", "Mucoepidermoid tumor [obs]" ], [ "8430", "3", "Mucoepidermoid carcinoma" ], [ "8440", "0", "Cystadenoma, NOS" ], [ "8440", "3", "Cystadenocarcinoma, NOS" ], [ "8441", "0", "Serous cystadenoma, NOS" ], [ "8441", "3", "Serous cystadenocarcinoma, NOS (C56.9)" ], [ "8442", "1", "Serous cystadenoma, borderline malignancy (C56.9)" ], [ "8443", "0", "Clear cell cystadenoma (C56.9)" ], [ "8444", "1", "Clear cell cystic tumor of borderline malignancy (C56.9)" ], [ "8450", "0", "Papillary cystadenoma, NOS (C56.9)" ], [ "8450", "3", "Papillary cystadenocarcinoma, NOS (C56.9)" ], [ "8451", "1", "Papillary cystadenoma, borderline malignancy (C56.9)" ], [ "8452", "1", "Solid pseudopapillary tumor (C25._)" ], [ "8452", "3", "Solid pseudopapillary carcinoma (C25._)" ], [ "8453", "0", "Intraductal papillary-mucinous adenoma (C25._)" ], [ "8453", "1", "Intraductal papillary-mucinous tumor with moderate dysplasia (C25._)" ], [ "8453", "2", "Intraductal papillary-mucinous carcinoma, non-invasive (C25._)" ], [ "8453", "3", "Intraductal papillary-mucinous carcinoma, invasive (C25._)" ], [ "8454", "0", "Cystic tumor of atrio-ventricular node (C38.0)" ], [ "8460", "0", "Papillary serous cystadenoma, NOS (C56.9)" ], [ "8460", "3", "Papillary serous cystadenocarcinoma (C56.9)" ], [ "8461", "0", "Serous surface papilloma (C56.9)" ], [ "8461", "3", "Serous surface papillary carcinoma (C56.9)" ], [ "8462", "1", "Serous papillary cystic tumor of borderline malignancy (C56.9)" ], [ "8463", "1", "Serous surface papillary tumor of borderline malignancy (C56.9)" ], [ "8470", "0", "Mucinous cystadenoma, NOS (C56.9)" ], [ "8470", "1", "Mucinous cystic tumor with moderate dysplasia (C25._)" ], [ "8470", "2", "Mucinous cystadenocarcinoma, non-invasive (C25._)" ], [ "8470", "3", "Mucinous cystadenocarcinoma, NOS (C56.9)" ], [ "8471", "0", "Papillary mucinous cystadenoma, NOS (C56.9)" ], [ "8471", "3", "Papillary mucinous cystadenocarcinoma (C56.9)" ], [ "8472", "1", "Mucinous cystic tumor of borderline malignancy (C56.9)" ], [ "8473", "1", "Papillary mucinous cystadenoma, borderline malignancy (C56.9)" ], [ "8480", "0", "Mucinous adenoma" ], [ "8480", "3", "Mucinous adenocarcinoma" ], [ "8480", "6", "Pseudomyxoma peritonei" ], [ "8481", "3", "Mucin-producing adenocarcinoma" ], [ "8482", "3", "Mucinous adenocarcinoma, endocervical type" ], [ "8490", "3", "Signet ring cell carcinoma" ], [ "8490", "6", "Metastatic signet ring cell carcinoma" ], [ "8500", "2", "Intraductal carcinoma, noninfiltrating, NOS" ], [ "8500", "3", "Infiltrating duct carcinoma, NOS (C50._)" ], [ "8501", "2", "Comedocarcinoma, noninfiltrating (C50._)" ], [ "8501", "3", "Comedocarcinoma, NOS (C50._)" ], [ "8502", "3", "Secretory carcinoma of breast (C50._)" ], [ "8503", "0", "Intraductal papilloma" ], [ "8503", "2", "Noninfiltrating intraductal papillary adenocarcinoma (C50._)" ], [ "8503", "3", "Intraductal papillary adenocarcinoma with invasion (C50._)" ], [ "8504", "0", "Intracystic papillary adenoma" ], [ "8504", "2", "Noninfiltrating intracystic carcinoma" ], [ "8504", "3", "Intracystic carcinoma, NOS" ], [ "8505", "0", "Intraductal papillomatosis, NOS" ], [ "8506", "0", "Adenoma of nipple (C50.0)" ], [ "8507", "2", "Intraductal micropapillary carcinoma (C50._)" ], [ "8508", "3", "Cystic hypersecretory carcinoma (C50._)" ], [ "8510", "3", "Medullary carcinoma, NOS" ], [ "8512", "3", "Medullary carcinoma with lymphoid stroma" ], [ "8513", "3", "Atypical medullary carcinoma (C50._)" ], [ "8514", "3", "Duct carcinoma, desmoplastic type" ], [ "8520", "2", "Lobular carcinoma in situ, NOS (C50._)" ], [ "8520", "3", "Lobular carcinoma, NOS (C50._)" ], [ "8521", "3", "Infiltrating ductular carcinoma (C50._)" ], [ "8522", "2", "Intraductal carcinoma and lobular carcinoma in situ (C50._)" ], [ "8522", "3", "Infiltrating duct and lobular carcinoma (C50._)" ], [ "8523", "3", "Infiltrating duct mixed with other types of carcinoma (C50._)" ], [ "8524", "3", "Infiltrating lobular mixed with other types of carcinoma (C50._)" ], [ "8525", "3", "Polymorphous low grade adenocarcinoma" ], [ "8530", "3", "Inflammatory carcinoma (C50._)" ], [ "8540", "3", "Paget disease, mammary (C50._)" ], [ "8541", "3", "Paget disease and infiltrating duct carcinoma of breast (C50._)" ], [ "8542", "3", "Paget disease, extramammary (except Paget disease of bone)" ], [ "8543", "3", "Paget disease and intraductal carcinoma of breast (C50._)" ], [ "8550", "0", "Acinar cell adenoma" ], [ "8550", "1", "Acinar cell tumor [obs]" ], [ "8550", "3", "Acinar cell carcinoma" ], [ "8551", "3", "Acinar cell cystadenocarcinoma" ], [ "8560", "0", "Mixed squamous cell and glandular papilloma" ], [ "8560", "3", "Adenosquamous carcinoma" ], [ "8561", "0", "Adenolymphoma (C07._, C08._)" ], [ "8562", "3", "Epithelial-myoepithelial carcinoma" ], [ "8570", "3", "Adenocarcinoma with squamous metaplasia" ], [ "8571", "3", "Adenocarcinoma with cartilaginous and osseous metaplasia" ], [ "8572", "3", "Adenocarcinoma with spindle cell metaplasia" ], [ "8573", "3", "Adenocarcinoma with apocrine metaplasia" ], [ "8574", "3", "Adenocarcinoma with neuroendocrine differentiation" ], [ "8575", "3", "Metaplastic carcinoma, NOS" ], [ "8576", "3", "Hepatoid adenocarcinoma" ], [ "8580", "0", "Thymoma, benign (C37.9)" ], [ "8580", "1", "Thymoma, NOS (C37.9)" ], [ "8580", "3", "Thymoma, malignant, NOS (C37.9)" ], [ "8581", "1", "Thymoma, type A, NOS (C37.9)" ], [ "8581", "3", "Thymoma, type A, malignant (C37.9)" ], [ "8582", "1", "Thymoma, type AB, NOS (C37.9)" ], [ "8582", "3", "Thymoma, type AB, malignant (C37.9)" ], [ "8583", "1", "Thymoma, type B1, NOS (C37.9)" ], [ "8583", "3", "Thymoma, type B1, malignant (C37.9)" ], [ "8584", "1", "Thymoma, type B2, NOS (C37.9)" ], [ "8584", "3", "Thymoma, type B2, malignant (C37.9)" ], [ "8585", "1", "Thymoma, type B3, NOS (C37.9)" ], [ "8585", "3", "Thymoma, type B3, malignant (C37.9)" ], [ "8586", "3", "Thymic carcinoma, NOS (C37.9)" ], [ "8587", "0", "Ectopic hamartomatous thymoma" ], [ "8588", "3", "Spindle epithelial tumor with thymus-like element" ], [ "8589", "3", "Carcinoma showing thymus-like element" ], [ "8660", "0", "Hilus cell tumor (C56.9)" ], [ "8670", "0", "Lipid cell tumor of ovary (C56.9)" ], [ "8670", "3", "Steroid cell tumor, malignant" ], [ "8671", "0", "Adrenal rest tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8940", "0", "Pleomorphic adenoma" ], [ "8940", "3", "Mixed tumor, malignant, NOS" ], [ "8941", "3", "Carcinoma in pleomorphic adenoma (C07._, C08._)" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pak.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pak.json
deleted file mode 100644
index b4d895e20..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pak.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pak",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:47.009Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8000", "0", "Neoplasm, benign" ], [ "8000", "1", "Neoplasm, uncertain whether benign or malignant" ], [ "8000", "3", "Neoplasm, malignant" ], [ "8000", "6", "Neoplasm, metastatic" ], [ "8000", "9", "Neoplasm, malignant, uncertain whether primary or metastatic" ], [ "8001", "0", "Tumor cells, benign" ], [ "8001", "1", "Tumor cells, uncertain whether benign or malignant" ], [ "8001", "3", "Tumor cells, malignant" ], [ "8002", "3", "Malignant tumor, small cell type" ], [ "8003", "3", "Malignant tumor, giant cell type" ], [ "8004", "3", "Malignant tumor, spindle cell type" ], [ "8005", "0", "Clear cell tumor, NOS" ], [ "8005", "3", "Malignant tumor, clear cell type" ], [ "8010", "0", "Epithelial tumor, benign" ], [ "8010", "2", "Carcinoma in situ, NOS" ], [ "8010", "3", "Carcinoma, NOS" ], [ "8010", "6", "Carcinoma, metastatic, NOS" ], [ "8010", "9", "Carcinomatosis" ], [ "8011", "0", "Epithelioma, benign" ], [ "8011", "3", "Epithelioma, malignant" ], [ "8012", "3", "Large cell carcinoma, NOS" ], [ "8013", "3", "Large cell neuroendocrine carcinoma" ], [ "8014", "3", "Large cell carcinoma with rhabdoid phenotype" ], [ "8015", "3", "Glassy cell carcinoma" ], [ "8020", "3", "Carcinoma, undifferentiated, NOS" ], [ "8021", "3", "Carcinoma, anaplastic, NOS" ], [ "8022", "3", "Pleomorphic carcinoma" ], [ "8030", "3", "Giant cell and spindle cell carcinoma" ], [ "8031", "3", "Giant cell carcinoma" ], [ "8032", "3", "Spindle cell carcinoma, NOS" ], [ "8033", "3", "Pseudosarcomatous carcinoma" ], [ "8034", "3", "Polygonal cell carcinoma" ], [ "8035", "3", "Carcinoma with osteoclast-like giant cells" ], [ "8040", "0", "Tumorlet, benign" ], [ "8040", "1", "Tumorlet, NOS" ], [ "8041", "3", "Small cell carcinoma, NOS" ], [ "8042", "3", "Oat cell carcinoma (C34._)" ], [ "8043", "3", "Small cell carcinoma, fusiform cell" ], [ "8044", "3", "Small cell carcinoma, intermediate cell" ], [ "8045", "3", "Combined small cell carcinoma" ], [ "8046", "3", "Non-small cell carcinoma (C34._)" ], [ "8050", "0", "Papilloma, NOS (except papilloma of bladder M-8120/1)" ], [ "8050", "2", "Papillary carcinoma in situ" ], [ "8050", "3", "Papillary carcinoma, NOS" ], [ "8051", "0", "Verrucous papilloma" ], [ "8051", "3", "Verrucous carcinoma, NOS" ], [ "8052", "0", "Squamous cell papilloma, NOS" ], [ "8052", "2", "Papillary squamous cell carcinoma, non-invasive" ], [ "8052", "3", "Papillary squamous cell carcinoma" ], [ "8053", "0", "Squamous cell papilloma, inverted" ], [ "8060", "0", "Squamous papillomatosis" ], [ "8070", "2", "Squamous cell carcinoma in situ, NOS" ], [ "8070", "3", "Squamous cell carcinoma, NOS" ], [ "8070", "6", "Squamous cell carcinoma, metastatic, NOS" ], [ "8071", "3", "Squamous cell carcinoma, keratinizing, NOS" ], [ "8072", "3", "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ], [ "8073", "3", "Squamous cell carcinoma, small cell, nonkeratinizing" ], [ "8074", "3", "Squamous cell carcinoma, spindle cell" ], [ "8075", "3", "Squamous cell carcinoma, adenoid" ], [ "8076", "2", "Squamous cell carcinoma in situ with questionable stromal invasion" ], [ "8076", "3", "Squamous cell carcinoma, microinvasive" ], [ "8077", "2", "Squamous intraepithelial neoplasia, grade III" ], [ "8078", "3", "Squamous cell carcinoma with horn formation" ], [ "8080", "2", "Queyrat erythroplasia (C60._)" ], [ "8081", "2", "Bowen disease (C44._)" ], [ "8082", "3", "Lymphoepithelial carcinoma" ], [ "8083", "3", "Basaloid squamous cell carcinoma" ], [ "8084", "3", "Squamous cell carcinoma, clear cell type" ], [ "8090", "1", "Basal cell tumor (C44._)" ], [ "8090", "3", "Basal cell carcinoma, NOS (C44._)" ], [ "8091", "3", "Multifocal superficial basal cell carcinoma (C44._)" ], [ "8092", "3", "Infiltrating basal cell carcinoma, NOS (C44._)" ], [ "8093", "3", "Basal cell carcinoma, fibroepithelial (C44._)" ], [ "8094", "3", "Basosquamous carcinoma (C44._)" ], [ "8095", "3", "Metatypical carcinoma (C44._)" ], [ "8096", "0", "Intraepidermal epithelioma of Jadassohn (C44._)" ], [ "8097", "3", "Basal cell carcinoma, nodular (C44._)" ], [ "8098", "3", "Adenoid basal carcinoma (C53._)" ], [ "8100", "0", "Trichoepithelioma (C44._)" ], [ "8101", "0", "Trichofolliculoma (C44._)" ], [ "8102", "0", "Trichilemmoma (C44._)" ], [ "8102", "3", "Trichilemmocarcinoma (C44._)" ], [ "8103", "0", "Pilar tumor (C44._)" ], [ "8110", "0", "Pilomatrixoma, NOS (C44._)" ], [ "8110", "3", "Pilomatrix carcinoma (C44._)" ], [ "8120", "0", "Transitional cell papilloma, benign" ], [ "8120", "1", "Urothelial papilloma, NOS" ], [ "8120", "2", "Transitional cell carcinoma in situ" ], [ "8120", "3", "Transitional cell carcinoma, NOS" ], [ "8121", "0", "Schneiderian papilloma, NOS (C30.0, C31._)" ], [ "8121", "1", "Transitional cell papilloma, inverted, NOS" ], [ "8121", "3", "Schneiderian carcinoma (C30.0, C31._)" ], [ "8122", "3", "Transitional cell carcinoma, spindle cell" ], [ "8123", "3", "Basaloid carcinoma" ], [ "8124", "3", "Cloacogenic carcinoma (C21.2)" ], [ "8130", "1", "Papillary transitional cell neoplasm of low malignant potential (C67._)" ], [ "8130", "2", "Papillary transitional cell carcinoma, non-invasive (C67._)" ], [ "8130", "3", "Papillary transitional cell carcinoma (C67._)" ], [ "8131", "3", "Transitional cell carcinoma, micropapillary (C67._)" ], [ "8140", "0", "Adenoma, NOS" ], [ "8140", "1", "Atypical adenoma" ], [ "8140", "2", "Adenocarcinoma in situ, NOS" ], [ "8140", "3", "Adenocarcinoma, NOS" ], [ "8140", "6", "Adenocarcinoma, metastatic, NOS" ], [ "8141", "3", "Scirrhous adenocarcinoma" ], [ "8142", "3", "Linitis plastica (C16._)" ], [ "8143", "3", "Superficial spreading adenocarcinoma" ], [ "8144", "3", "Adenocarcinoma, intestinal type (C16._)" ], [ "8145", "3", "Carcinoma, diffuse type (C16._)" ], [ "8146", "0", "Monomorphic adenoma" ], [ "8147", "0", "Basal cell adenoma" ], [ "8147", "3", "Basal cell adenocarcinoma" ], [ "8148", "2", "Glandular intraepithelial neoplasia, grade III" ], [ "8149", "0", "Canalicular adenoma" ], [ "8150", "0", "Islet cell adenoma (C25._)" ], [ "8150", "1", "Islet cell tumor, NOS (C25._)" ], [ "8150", "3", "Islet cell carcinoma (C25._)" ], [ "8151", "0", "Insulinoma, NOS (C25._)" ], [ "8151", "3", "Insulinoma, malignant (C25._)" ], [ "8152", "1", "Glucagonoma, NOS (C25._)" ], [ "8152", "3", "Glucagonoma, malignant (C25._)" ], [ "8153", "1", "Gastrinoma, NOS" ], [ "8153", "3", "Gastrinoma, malignant" ], [ "8154", "3", "Mixed islet cell and exocrine adenocarcinoma (C25._)" ], [ "8155", "1", "Vipoma, NOS" ], [ "8155", "3", "Vipoma, malignant" ], [ "8156", "1", "Somatostatinoma, NOS" ], [ "8156", "3", "Somatostatinoma, malignant" ], [ "8157", "1", "Enteroglucagonoma, NOS" ], [ "8157", "3", "Enteroglucagonoma, malignant" ], [ "8160", "0", "Bile duct adenoma (C22.1, C24.0)" ], [ "8160", "3", "Cholangiocarcinoma (C22.1, C24.0)" ], [ "8161", "0", "Bile duct cystadenoma (C22.1, C24.0)" ], [ "8161", "3", "Bile duct cystadenocarcinoma (C22.1, C24.0)" ], [ "8162", "3", "Klatskin tumor (C22.1, C24.0)" ], [ "8170", "0", "Liver cell adenoma (C22.0)" ], [ "8170", "3", "Hepatocellular carcinoma, NOS (C22.0)" ], [ "8171", "3", "Hepatocellular carcinoma, fibrolamellar (C22.0)" ], [ "8172", "3", "Hepatocellular carcinoma, scirrhous (C22.0)" ], [ "8173", "3", "Hepatocellular carcinoma, spindle cell variant (C22.0)" ], [ "8174", "3", "Hepatocellular carcinoma, clear cell type (C22.0)" ], [ "8175", "3", "Hepatocellular carcinoma, pleomorphic type (C22.0)" ], [ "8180", "3", "Combined hepatocellular carcinoma and cholangiocarcinoma (C22.0)" ], [ "8190", "0", "Trabecular adenoma" ], [ "8190", "3", "Trabecular adenocarcinoma" ], [ "8191", "0", "Embryonal adenoma" ], [ "8200", "0", "Eccrine dermal cylindroma (C44._)" ], [ "8200", "3", "Adenoid cystic carcinoma" ], [ "8201", "2", "Cribriform carcinoma in situ (C50._)" ], [ "8201", "3", "Cribriform carcinoma, NOS" ], [ "8202", "0", "Microcystic adenoma (C25._)" ], [ "8204", "0", "Lactating adenoma (C50._)" ], [ "8210", "0", "Adenomatous polyp, NOS" ], [ "8210", "2", "Adenocarcinoma in situ in adenomatous polyp" ], [ "8210", "3", "Adenocarcinoma in adenomatous polyp" ], [ "8211", "0", "Tubular adenoma, NOS" ], [ "8211", "3", "Tubular adenocarcinoma" ], [ "8212", "0", "Flat adenoma" ], [ "8213", "0", "Serrated adenoma (C18._)" ], [ "8214", "3", "Parietal cell carcinoma (C16._)" ], [ "8215", "3", "Adenocarcinoma of anal glands (C21.1)" ], [ "8220", "0", "Adenomatous polyposis coli (C18._)" ], [ "8220", "3", "Adenocarcinoma in adenomatous polyposis coli (C18._)" ], [ "8221", "0", "Multiple adenomatous polyps" ], [ "8221", "3", "Adenocarcinoma in multiple adenomatous polyps" ], [ "8230", "2", "Ductal carcinoma in situ, solid type (C50._)" ], [ "8230", "3", "Solid carcinoma, NOS" ], [ "8231", "3", "Carcinoma simplex" ], [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8250", "1", "Pulmonary adenomatosis (C34._)" ], [ "8250", "3", "Bronchiolo-alveolar adenocarcinoma, NOS (C34._)" ], [ "8251", "0", "Alveolar adenoma (C34._)" ], [ "8251", "3", "Alveolar adenocarcinoma (C34._)" ], [ "8252", "3", "Bronchiolo-alveolar carcinoma, non-mucinous (C34._)" ], [ "8253", "3", "Bronchiolo-alveolar carcinoma, mucinous (C34._)" ], [ "8254", "3", "Bronchiolo-alveolar carcinoma, mixed mucinous and non-mucinous (C34._)" ], [ "8255", "3", "Adenocarcinoma with mixed subtypes" ], [ "8260", "0", "Papillary adenoma, NOS" ], [ "8260", "3", "Papillary adenocarcinoma, NOS" ], [ "8261", "0", "Villous adenoma, NOS" ], [ "8261", "2", "Adenocarcinoma in situ in villous adenoma" ], [ "8261", "3", "Adenocarcinoma in villous adenoma" ], [ "8262", "3", "Villous adenocarcinoma" ], [ "8263", "0", "Tubulovillous adenoma, NOS" ], [ "8263", "2", "Adenocarcinoma in situ in tubulovillous adenoma" ], [ "8263", "3", "Adenocarcinoma in tubulovillous adenoma" ], [ "8264", "0", "Papillomatosis, glandular" ], [ "8270", "0", "Chromophobe adenoma (C75.1)" ], [ "8270", "3", "Chromophobe carcinoma (C75.1)" ], [ "8271", "0", "Prolactinoma (C75.1)" ], [ "8272", "0", "Pituitary adenoma, NOS (C75.1)" ], [ "8272", "3", "Pituitary carcinoma, NOS (C75.1)" ], [ "8280", "0", "Acidophil adenoma (C75.1)" ], [ "8280", "3", "Acidophil carcinoma (C75.1)" ], [ "8281", "0", "Mixed acidophil-basophil adenoma (C75.1)" ], [ "8281", "3", "Mixed acidophil-basophil carcinoma (C75.1)" ], [ "8290", "0", "Oxyphilic adenoma" ], [ "8290", "3", "Oxyphilic adenocarcinoma" ], [ "8300", "0", "Basophil adenoma (C75.1)" ], [ "8300", "3", "Basophil carcinoma (C75.1)" ], [ "8310", "0", "Clear cell adenoma" ], [ "8310", "3", "Clear cell adenocarcinoma, NOS" ], [ "8311", "1", "Hypernephroid tumor [obs]" ], [ "8312", "3", "Renal cell carcinoma, NOS (C64.9)" ], [ "8313", "0", "Clear cell adenofibroma (C56.9)" ], [ "8313", "1", "Clear cell adenofibroma of borderline malignancy (C56.9)" ], [ "8313", "3", "Clear cell adenocarcinofibroma (C56.9)" ], [ "8314", "3", "Lipid-rich carcinoma (C50._)" ], [ "8315", "3", "Glycogen-rich carcinoma" ], [ "8316", "3", "Cyst-associated renal cell carcinoma (C64.9)" ], [ "8317", "3", "Renal cell carcinoma, chromophobe type (C64.9)" ], [ "8318", "3", "Renal cell carcinoma, sarcomatoid (C64.9)" ], [ "8319", "3", "Collecting duct carcinoma (C64.9)" ], [ "8320", "3", "Granular cell carcinoma" ], [ "8321", "0", "Chief cell adenoma (C75.0)" ], [ "8322", "0", "Water-clear cell adenoma (C75.0)" ], [ "8322", "3", "Water-clear cell adenocarcinoma (C75.0)" ], [ "8323", "0", "Mixed cell adenoma" ], [ "8323", "3", "Mixed cell adenocarcinoma" ], [ "8324", "0", "Lipoadenoma" ], [ "8325", "0", "Metanephric adenoma (C64.9)" ], [ "8330", "0", "Follicular adenoma (C73.9)" ], [ "8330", "1", "Atypical follicular adenoma (C73.9)" ], [ "8330", "3", "Follicular adenocarcinoma, NOS (C73.9)" ], [ "8331", "3", "Follicular adenocarcinoma, well differentiated (C73.9)" ], [ "8332", "3", "Follicular adenocarcinoma, trabecular (C73.9)" ], [ "8333", "0", "Microfollicular adenoma, NOS (C73.9)" ], [ "8333", "3", "Fetal adenocarcinoma" ], [ "8334", "0", "Macrofollicular adenoma (C73.9)" ], [ "8335", "3", "Follicular carcinoma, minimally invasive (C73.9)" ], [ "8336", "0", "Hyalinizing trabecular adenoma (C73.9)" ], [ "8337", "3", "Insular carcinoma (C73.9)" ], [ "8340", "3", "Papillary carcinoma, follicular variant (C73.9)" ], [ "8341", "3", "Papillary microcarcinoma (C73.9)" ], [ "8342", "3", "Papillary carcinoma, oxyphilic cell (C73.9)" ], [ "8343", "3", "Papillary carcinoma, encapsulated (C73.9)" ], [ "8344", "3", "Papillary carcinoma, columnar cell (C73.9)" ], [ "8345", "3", "Medullary carcinoma with amyloid stroma (C73.9)" ], [ "8346", "3", "Mixed medullary-follicular carcinoma (C73.9)" ], [ "8347", "3", "Mixed medullary-papillary carcinoma (C73.9)" ], [ "8350", "3", "Nonencapsulated sclerosing carcinoma (C73.9)" ], [ "8360", "1", "Multiple endocrine adenomas" ], [ "8361", "0", "Juxtaglomerular tumor (C64.9)" ], [ "8370", "0", "Adrenal cortical adenoma, NOS (C74.0)" ], [ "8370", "3", "Adrenal cortical carcinoma (C74.0)" ], [ "8371", "0", "Adrenal cortical adenoma, compact cell (C74.0)" ], [ "8372", "0", "Adrenal cortical adenoma, pigmented (C74.0)" ], [ "8373", "0", "Adrenal cortical adenoma, clear cell (C74.0)" ], [ "8374", "0", "Adrenal cortical adenoma, glomerulosa cell (C74.0)" ], [ "8375", "0", "Adrenal cortical adenoma, mixed cell (C74.0)" ], [ "8380", "0", "Endometrioid adenoma, NOS" ], [ "8380", "1", "Endometrioid adenoma, borderline malignancy" ], [ "8380", "3", "Endometrioid adenocarcinoma, NOS" ], [ "8381", "0", "Endometrioid adenofibroma, NOS" ], [ "8381", "1", "Endometrioid adenofibroma, borderline malignancy" ], [ "8381", "3", "Endometrioid adenofibroma, malignant" ], [ "8382", "3", "Endometrioid adenocarcinoma, secretory variant" ], [ "8383", "3", "Endometrioid adenocarcinoma, ciliated cell variant" ], [ "8384", "3", "Adenocarcinoma, endocervical type" ], [ "8390", "0", "Skin appendage adenoma (C44._)" ], [ "8390", "3", "Skin appendage carcinoma (C44._)" ], [ "8391", "0", "Follicular fibroma (C44._)" ], [ "8392", "0", "Syringofibroadenoma (C44._)" ], [ "8400", "0", "Sweat gland adenoma (C44._)" ], [ "8400", "1", "Sweat gland tumor, NOS (C44._)" ], [ "8400", "3", "Sweat gland adenocarcinoma (C44._)" ], [ "8401", "0", "Apocrine adenoma" ], [ "8401", "3", "Apocrine adenocarcinoma" ], [ "8402", "0", "Nodular hidradenoma (C44._)" ], [ "8402", "3", "Nodular hidradenoma, malignant (C44._)" ], [ "8403", "0", "Eccrine spiradenoma (C44._)" ], [ "8403", "3", "Malignant eccrine spiradenoma (C44._)" ], [ "8404", "0", "Hidrocystoma (C44._)" ], [ "8405", "0", "Papillary hidradenoma" ], [ "8406", "0", "Papillary syringadenoma (C44._)" ], [ "8407", "0", "Syringoma, NOS (C44._)" ], [ "8407", "3", "Sclerosing sweat duct carcinoma (C44._)" ], [ "8408", "0", "Eccrine papillary adenoma (C44._)" ], [ "8408", "1", "Aggressive digital papillary adenoma (C44._)" ], [ "8408", "3", "Eccrine papillary adenocarcinoma (C44._)" ], [ "8409", "0", "Eccrine poroma (C44._)" ], [ "8409", "3", "Eccrine poroma, malignant" ], [ "8410", "0", "Sebaceous adenoma (C44._)" ], [ "8410", "3", "Sebaceous adenocarcinoma (C44._)" ], [ "8413", "3", "Eccrine adenocarcinoma (C44._)" ], [ "8420", "0", "Ceruminous adenoma (C44.2)" ], [ "8420", "3", "Ceruminous adenocarcinoma (C44.2)" ], [ "8430", "1", "Mucoepidermoid tumor [obs]" ], [ "8430", "3", "Mucoepidermoid carcinoma" ], [ "8440", "0", "Cystadenoma, NOS" ], [ "8440", "3", "Cystadenocarcinoma, NOS" ], [ "8441", "0", "Serous cystadenoma, NOS" ], [ "8441", "3", "Serous cystadenocarcinoma, NOS (C56.9)" ], [ "8442", "1", "Serous cystadenoma, borderline malignancy (C56.9)" ], [ "8443", "0", "Clear cell cystadenoma (C56.9)" ], [ "8444", "1", "Clear cell cystic tumor of borderline malignancy (C56.9)" ], [ "8450", "0", "Papillary cystadenoma, NOS (C56.9)" ], [ "8450", "3", "Papillary cystadenocarcinoma, NOS (C56.9)" ], [ "8451", "1", "Papillary cystadenoma, borderline malignancy (C56.9)" ], [ "8452", "1", "Solid pseudopapillary tumor (C25._)" ], [ "8452", "3", "Solid pseudopapillary carcinoma (C25._)" ], [ "8453", "0", "Intraductal papillary-mucinous adenoma (C25._)" ], [ "8453", "1", "Intraductal papillary-mucinous tumor with moderate dysplasia (C25._)" ], [ "8453", "2", "Intraductal papillary-mucinous carcinoma, non-invasive (C25._)" ], [ "8453", "3", "Intraductal papillary-mucinous carcinoma, invasive (C25._)" ], [ "8454", "0", "Cystic tumor of atrio-ventricular node (C38.0)" ], [ "8460", "0", "Papillary serous cystadenoma, NOS (C56.9)" ], [ "8460", "3", "Papillary serous cystadenocarcinoma (C56.9)" ], [ "8461", "0", "Serous surface papilloma (C56.9)" ], [ "8461", "3", "Serous surface papillary carcinoma (C56.9)" ], [ "8462", "1", "Serous papillary cystic tumor of borderline malignancy (C56.9)" ], [ "8463", "1", "Serous surface papillary tumor of borderline malignancy (C56.9)" ], [ "8470", "0", "Mucinous cystadenoma, NOS (C56.9)" ], [ "8470", "1", "Mucinous cystic tumor with moderate dysplasia (C25._)" ], [ "8470", "2", "Mucinous cystadenocarcinoma, non-invasive (C25._)" ], [ "8470", "3", "Mucinous cystadenocarcinoma, NOS (C56.9)" ], [ "8471", "0", "Papillary mucinous cystadenoma, NOS (C56.9)" ], [ "8471", "3", "Papillary mucinous cystadenocarcinoma (C56.9)" ], [ "8472", "1", "Mucinous cystic tumor of borderline malignancy (C56.9)" ], [ "8473", "1", "Papillary mucinous cystadenoma, borderline malignancy (C56.9)" ], [ "8480", "0", "Mucinous adenoma" ], [ "8480", "3", "Mucinous adenocarcinoma" ], [ "8480", "6", "Pseudomyxoma peritonei" ], [ "8481", "3", "Mucin-producing adenocarcinoma" ], [ "8482", "3", "Mucinous adenocarcinoma, endocervical type" ], [ "8490", "3", "Signet ring cell carcinoma" ], [ "8490", "6", "Metastatic signet ring cell carcinoma" ], [ "8500", "2", "Intraductal carcinoma, noninfiltrating, NOS" ], [ "8500", "3", "Infiltrating duct carcinoma, NOS (C50._)" ], [ "8501", "2", "Comedocarcinoma, noninfiltrating (C50._)" ], [ "8501", "3", "Comedocarcinoma, NOS (C50._)" ], [ "8502", "3", "Secretory carcinoma of breast (C50._)" ], [ "8503", "0", "Intraductal papilloma" ], [ "8503", "2", "Noninfiltrating intraductal papillary adenocarcinoma (C50._)" ], [ "8503", "3", "Intraductal papillary adenocarcinoma with invasion (C50._)" ], [ "8504", "0", "Intracystic papillary adenoma" ], [ "8504", "2", "Noninfiltrating intracystic carcinoma" ], [ "8504", "3", "Intracystic carcinoma, NOS" ], [ "8505", "0", "Intraductal papillomatosis, NOS" ], [ "8506", "0", "Adenoma of nipple (C50.0)" ], [ "8507", "2", "Intraductal micropapillary carcinoma (C50._)" ], [ "8508", "3", "Cystic hypersecretory carcinoma (C50._)" ], [ "8510", "3", "Medullary carcinoma, NOS" ], [ "8512", "3", "Medullary carcinoma with lymphoid stroma" ], [ "8513", "3", "Atypical medullary carcinoma (C50._)" ], [ "8514", "3", "Duct carcinoma, desmoplastic type" ], [ "8520", "2", "Lobular carcinoma in situ, NOS (C50._)" ], [ "8520", "3", "Lobular carcinoma, NOS (C50._)" ], [ "8521", "3", "Infiltrating ductular carcinoma (C50._)" ], [ "8522", "2", "Intraductal carcinoma and lobular carcinoma in situ (C50._)" ], [ "8522", "3", "Infiltrating duct and lobular carcinoma (C50._)" ], [ "8523", "3", "Infiltrating duct mixed with other types of carcinoma (C50._)" ], [ "8524", "3", "Infiltrating lobular mixed with other types of carcinoma (C50._)" ], [ "8525", "3", "Polymorphous low grade adenocarcinoma" ], [ "8530", "3", "Inflammatory carcinoma (C50._)" ], [ "8540", "3", "Paget disease, mammary (C50._)" ], [ "8541", "3", "Paget disease and infiltrating duct carcinoma of breast (C50._)" ], [ "8542", "3", "Paget disease, extramammary (except Paget disease of bone)" ], [ "8543", "3", "Paget disease and intraductal carcinoma of breast (C50._)" ], [ "8550", "0", "Acinar cell adenoma" ], [ "8550", "1", "Acinar cell tumor [obs]" ], [ "8550", "3", "Acinar cell carcinoma" ], [ "8551", "3", "Acinar cell cystadenocarcinoma" ], [ "8560", "0", "Mixed squamous cell and glandular papilloma" ], [ "8560", "3", "Adenosquamous carcinoma" ], [ "8561", "0", "Adenolymphoma (C07._, C08._)" ], [ "8562", "3", "Epithelial-myoepithelial carcinoma" ], [ "8570", "3", "Adenocarcinoma with squamous metaplasia" ], [ "8571", "3", "Adenocarcinoma with cartilaginous and osseous metaplasia" ], [ "8572", "3", "Adenocarcinoma with spindle cell metaplasia" ], [ "8573", "3", "Adenocarcinoma with apocrine metaplasia" ], [ "8574", "3", "Adenocarcinoma with neuroendocrine differentiation" ], [ "8575", "3", "Metaplastic carcinoma, NOS" ], [ "8576", "3", "Hepatoid adenocarcinoma" ], [ "8580", "0", "Thymoma, benign (C37.9)" ], [ "8580", "1", "Thymoma, NOS (C37.9)" ], [ "8580", "3", "Thymoma, malignant, NOS (C37.9)" ], [ "8581", "1", "Thymoma, type A, NOS (C37.9)" ], [ "8581", "3", "Thymoma, type A, malignant (C37.9)" ], [ "8582", "1", "Thymoma, type AB, NOS (C37.9)" ], [ "8582", "3", "Thymoma, type AB, malignant (C37.9)" ], [ "8583", "1", "Thymoma, type B1, NOS (C37.9)" ], [ "8583", "3", "Thymoma, type B1, malignant (C37.9)" ], [ "8584", "1", "Thymoma, type B2, NOS (C37.9)" ], [ "8584", "3", "Thymoma, type B2, malignant (C37.9)" ], [ "8585", "1", "Thymoma, type B3, NOS (C37.9)" ], [ "8585", "3", "Thymoma, type B3, malignant (C37.9)" ], [ "8586", "3", "Thymic carcinoma, NOS (C37.9)" ], [ "8587", "0", "Ectopic hamartomatous thymoma" ], [ "8588", "3", "Spindle epithelial tumor with thymus-like element" ], [ "8589", "3", "Carcinoma showing thymus-like element" ], [ "8590", "1", "Sex cord-gonadal stromal tumor, NOS" ], [ "8591", "1", "Sex cord-gonadal stromal tumor, incompletely differentiated" ], [ "8592", "1", "Sex cord-gonadal stromal tumor, mixed forms" ], [ "8593", "1", "Stromal tumor with minor sex cord elements (C56.9)" ], [ "8600", "0", "Thecoma, NOS (C56.9)" ], [ "8600", "3", "Thecoma, malignant (C56.9)" ], [ "8601", "0", "Thecoma, luteinized (C56.9)" ], [ "8602", "0", "Sclerosing stromal tumor (C56.9)" ], [ "8610", "0", "Luteoma, NOS (C56.9)" ], [ "8620", "1", "Granulosa cell tumor, adult type (C56.9)" ], [ "8620", "3", "Granulosa cell tumor, malignant (C56.9)" ], [ "8621", "1", "Granulosa cell-theca cell tumor (C56.9)" ], [ "8622", "1", "Granulosa cell tumor, juvenile (C56.9)" ], [ "8623", "1", "Sex cord tumor with annular tubules (C56.9)" ], [ "8630", "0", "Androblastoma, benign" ], [ "8630", "1", "Androblastoma, NOS" ], [ "8630", "3", "Androblastoma, malignant" ], [ "8631", "0", "Sertoli-Leydig cell tumor, well differentiated" ], [ "8631", "1", "Sertoli-Leydig cell tumor of intermediate differentiation" ], [ "8631", "3", "Sertoli-Leydig cell tumor, poorly differentiated" ], [ "8632", "1", "Gynandroblastoma (C56.9)" ], [ "8633", "1", "Sertoli-Leydig cell tumor, retiform" ], [ "8634", "1", "Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements" ], [ "8634", "3", "Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements" ], [ "8640", "1", "Sertoli cell tumor, NOS" ], [ "8640", "3", "Sertoli cell carcinoma (C62._)" ], [ "8641", "0", "Sertoli cell tumor with lipid storage" ], [ "8642", "1", "Large cell calcifying Sertoli cell tumor" ], [ "8650", "0", "Leydig cell tumor, benign (C62._)" ], [ "8650", "1", "Leydig cell tumor, NOS (C62._)" ], [ "8650", "3", "Leydig cell tumor, malignant (C62._)" ], [ "8660", "0", "Hilus cell tumor (C56.9)" ], [ "8670", "0", "Lipid cell tumor of ovary (C56.9)" ], [ "8670", "3", "Steroid cell tumor, malignant" ], [ "8671", "0", "Adrenal rest tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8940", "0", "Pleomorphic adenoma" ], [ "8940", "3", "Mixed tumor, malignant, NOS" ], [ "8941", "3", "Carcinoma in pleomorphic adenoma (C07._, C08._)" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pam.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pam.json
deleted file mode 100644
index a6031bcea..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pam.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pam",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:47.110Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8000", "0", "Neoplasm, benign" ], [ "8000", "1", "Neoplasm, uncertain whether benign or malignant" ], [ "8000", "3", "Neoplasm, malignant" ], [ "8000", "6", "Neoplasm, metastatic" ], [ "8000", "9", "Neoplasm, malignant, uncertain whether primary or metastatic" ], [ "8001", "0", "Tumor cells, benign" ], [ "8001", "1", "Tumor cells, uncertain whether benign or malignant" ], [ "8001", "3", "Tumor cells, malignant" ], [ "8002", "3", "Malignant tumor, small cell type" ], [ "8003", "3", "Malignant tumor, giant cell type" ], [ "8004", "3", "Malignant tumor, spindle cell type" ], [ "8005", "0", "Clear cell tumor, NOS" ], [ "8005", "3", "Malignant tumor, clear cell type" ], [ "8010", "0", "Epithelial tumor, benign" ], [ "8010", "2", "Carcinoma in situ, NOS" ], [ "8010", "3", "Carcinoma, NOS" ], [ "8010", "6", "Carcinoma, metastatic, NOS" ], [ "8010", "9", "Carcinomatosis" ], [ "8011", "0", "Epithelioma, benign" ], [ "8011", "3", "Epithelioma, malignant" ], [ "8012", "3", "Large cell carcinoma, NOS" ], [ "8013", "3", "Large cell neuroendocrine carcinoma" ], [ "8014", "3", "Large cell carcinoma with rhabdoid phenotype" ], [ "8015", "3", "Glassy cell carcinoma" ], [ "8020", "3", "Carcinoma, undifferentiated, NOS" ], [ "8021", "3", "Carcinoma, anaplastic, NOS" ], [ "8022", "3", "Pleomorphic carcinoma" ], [ "8030", "3", "Giant cell and spindle cell carcinoma" ], [ "8031", "3", "Giant cell carcinoma" ], [ "8032", "3", "Spindle cell carcinoma, NOS" ], [ "8033", "3", "Pseudosarcomatous carcinoma" ], [ "8034", "3", "Polygonal cell carcinoma" ], [ "8035", "3", "Carcinoma with osteoclast-like giant cells" ], [ "8040", "0", "Tumorlet, benign" ], [ "8040", "1", "Tumorlet, NOS" ], [ "8041", "3", "Small cell carcinoma, NOS" ], [ "8042", "3", "Oat cell carcinoma (C34._)" ], [ "8043", "3", "Small cell carcinoma, fusiform cell" ], [ "8044", "3", "Small cell carcinoma, intermediate cell" ], [ "8045", "3", "Combined small cell carcinoma" ], [ "8046", "3", "Non-small cell carcinoma (C34._)" ], [ "8050", "0", "Papilloma, NOS (except papilloma of bladder M-8120/1)" ], [ "8050", "2", "Papillary carcinoma in situ" ], [ "8050", "3", "Papillary carcinoma, NOS" ], [ "8051", "0", "Verrucous papilloma" ], [ "8051", "3", "Verrucous carcinoma, NOS" ], [ "8052", "0", "Squamous cell papilloma, NOS" ], [ "8052", "2", "Papillary squamous cell carcinoma, non-invasive" ], [ "8052", "3", "Papillary squamous cell carcinoma" ], [ "8053", "0", "Squamous cell papilloma, inverted" ], [ "8060", "0", "Squamous papillomatosis" ], [ "8070", "2", "Squamous cell carcinoma in situ, NOS" ], [ "8070", "3", "Squamous cell carcinoma, NOS" ], [ "8070", "6", "Squamous cell carcinoma, metastatic, NOS" ], [ "8071", "3", "Squamous cell carcinoma, keratinizing, NOS" ], [ "8072", "3", "Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ], [ "8073", "3", "Squamous cell carcinoma, small cell, nonkeratinizing" ], [ "8074", "3", "Squamous cell carcinoma, spindle cell" ], [ "8075", "3", "Squamous cell carcinoma, adenoid" ], [ "8076", "2", "Squamous cell carcinoma in situ with questionable stromal invasion" ], [ "8076", "3", "Squamous cell carcinoma, microinvasive" ], [ "8077", "2", "Squamous intraepithelial neoplasia, grade III" ], [ "8078", "3", "Squamous cell carcinoma with horn formation" ], [ "8080", "2", "Queyrat erythroplasia (C60._)" ], [ "8081", "2", "Bowen disease (C44._)" ], [ "8082", "3", "Lymphoepithelial carcinoma" ], [ "8083", "3", "Basaloid squamous cell carcinoma" ], [ "8084", "3", "Squamous cell carcinoma, clear cell type" ], [ "8090", "1", "Basal cell tumor (C44._)" ], [ "8090", "3", "Basal cell carcinoma, NOS (C44._)" ], [ "8091", "3", "Multifocal superficial basal cell carcinoma (C44._)" ], [ "8092", "3", "Infiltrating basal cell carcinoma, NOS (C44._)" ], [ "8093", "3", "Basal cell carcinoma, fibroepithelial (C44._)" ], [ "8094", "3", "Basosquamous carcinoma (C44._)" ], [ "8095", "3", "Metatypical carcinoma (C44._)" ], [ "8096", "0", "Intraepidermal epithelioma of Jadassohn (C44._)" ], [ "8097", "3", "Basal cell carcinoma, nodular (C44._)" ], [ "8098", "3", "Adenoid basal carcinoma (C53._)" ], [ "8100", "0", "Trichoepithelioma (C44._)" ], [ "8101", "0", "Trichofolliculoma (C44._)" ], [ "8102", "0", "Trichilemmoma (C44._)" ], [ "8102", "3", "Trichilemmocarcinoma (C44._)" ], [ "8103", "0", "Pilar tumor (C44._)" ], [ "8110", "0", "Pilomatrixoma, NOS (C44._)" ], [ "8110", "3", "Pilomatrix carcinoma (C44._)" ], [ "8120", "0", "Transitional cell papilloma, benign" ], [ "8120", "1", "Urothelial papilloma, NOS" ], [ "8120", "2", "Transitional cell carcinoma in situ" ], [ "8120", "3", "Transitional cell carcinoma, NOS" ], [ "8121", "0", "Schneiderian papilloma, NOS (C30.0, C31._)" ], [ "8121", "1", "Transitional cell papilloma, inverted, NOS" ], [ "8121", "3", "Schneiderian carcinoma (C30.0, C31._)" ], [ "8122", "3", "Transitional cell carcinoma, spindle cell" ], [ "8123", "3", "Basaloid carcinoma" ], [ "8124", "3", "Cloacogenic carcinoma (C21.2)" ], [ "8130", "1", "Papillary transitional cell neoplasm of low malignant potential (C67._)" ], [ "8130", "2", "Papillary transitional cell carcinoma, non-invasive (C67._)" ], [ "8130", "3", "Papillary transitional cell carcinoma (C67._)" ], [ "8131", "3", "Transitional cell carcinoma, micropapillary (C67._)" ], [ "8140", "0", "Adenoma, NOS" ], [ "8140", "1", "Atypical adenoma" ], [ "8140", "2", "Adenocarcinoma in situ, NOS" ], [ "8140", "3", "Adenocarcinoma, NOS" ], [ "8140", "6", "Adenocarcinoma, metastatic, NOS" ], [ "8141", "3", "Scirrhous adenocarcinoma" ], [ "8142", "3", "Linitis plastica (C16._)" ], [ "8143", "3", "Superficial spreading adenocarcinoma" ], [ "8144", "3", "Adenocarcinoma, intestinal type (C16._)" ], [ "8145", "3", "Carcinoma, diffuse type (C16._)" ], [ "8146", "0", "Monomorphic adenoma" ], [ "8147", "0", "Basal cell adenoma" ], [ "8147", "3", "Basal cell adenocarcinoma" ], [ "8148", "2", "Glandular intraepithelial neoplasia, grade III" ], [ "8149", "0", "Canalicular adenoma" ], [ "8150", "0", "Islet cell adenoma (C25._)" ], [ "8150", "1", "Islet cell tumor, NOS (C25._)" ], [ "8150", "3", "Islet cell carcinoma (C25._)" ], [ "8151", "0", "Insulinoma, NOS (C25._)" ], [ "8151", "3", "Insulinoma, malignant (C25._)" ], [ "8152", "1", "Glucagonoma, NOS (C25._)" ], [ "8152", "3", "Glucagonoma, malignant (C25._)" ], [ "8153", "1", "Gastrinoma, NOS" ], [ "8153", "3", "Gastrinoma, malignant" ], [ "8154", "3", "Mixed islet cell and exocrine adenocarcinoma (C25._)" ], [ "8155", "1", "Vipoma, NOS" ], [ "8155", "3", "Vipoma, malignant" ], [ "8156", "1", "Somatostatinoma, NOS" ], [ "8156", "3", "Somatostatinoma, malignant" ], [ "8157", "1", "Enteroglucagonoma, NOS" ], [ "8157", "3", "Enteroglucagonoma, malignant" ], [ "8160", "0", "Bile duct adenoma (C22.1, C24.0)" ], [ "8160", "3", "Cholangiocarcinoma (C22.1, C24.0)" ], [ "8161", "0", "Bile duct cystadenoma (C22.1, C24.0)" ], [ "8161", "3", "Bile duct cystadenocarcinoma (C22.1, C24.0)" ], [ "8162", "3", "Klatskin tumor (C22.1, C24.0)" ], [ "8170", "0", "Liver cell adenoma (C22.0)" ], [ "8170", "3", "Hepatocellular carcinoma, NOS (C22.0)" ], [ "8171", "3", "Hepatocellular carcinoma, fibrolamellar (C22.0)" ], [ "8172", "3", "Hepatocellular carcinoma, scirrhous (C22.0)" ], [ "8173", "3", "Hepatocellular carcinoma, spindle cell variant (C22.0)" ], [ "8174", "3", "Hepatocellular carcinoma, clear cell type (C22.0)" ], [ "8175", "3", "Hepatocellular carcinoma, pleomorphic type (C22.0)" ], [ "8180", "3", "Combined hepatocellular carcinoma and cholangiocarcinoma (C22.0)" ], [ "8190", "0", "Trabecular adenoma" ], [ "8190", "3", "Trabecular adenocarcinoma" ], [ "8191", "0", "Embryonal adenoma" ], [ "8200", "0", "Eccrine dermal cylindroma (C44._)" ], [ "8200", "3", "Adenoid cystic carcinoma" ], [ "8201", "2", "Cribriform carcinoma in situ (C50._)" ], [ "8201", "3", "Cribriform carcinoma, NOS" ], [ "8202", "0", "Microcystic adenoma (C25._)" ], [ "8204", "0", "Lactating adenoma (C50._)" ], [ "8210", "0", "Adenomatous polyp, NOS" ], [ "8210", "2", "Adenocarcinoma in situ in adenomatous polyp" ], [ "8210", "3", "Adenocarcinoma in adenomatous polyp" ], [ "8211", "0", "Tubular adenoma, NOS" ], [ "8211", "3", "Tubular adenocarcinoma" ], [ "8212", "0", "Flat adenoma" ], [ "8213", "0", "Serrated adenoma (C18._)" ], [ "8214", "3", "Parietal cell carcinoma (C16._)" ], [ "8215", "3", "Adenocarcinoma of anal glands (C21.1)" ], [ "8220", "0", "Adenomatous polyposis coli (C18._)" ], [ "8220", "3", "Adenocarcinoma in adenomatous polyposis coli (C18._)" ], [ "8221", "0", "Multiple adenomatous polyps" ], [ "8221", "3", "Adenocarcinoma in multiple adenomatous polyps" ], [ "8230", "2", "Ductal carcinoma in situ, solid type (C50._)" ], [ "8230", "3", "Solid carcinoma, NOS" ], [ "8231", "3", "Carcinoma simplex" ], [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8250", "1", "Pulmonary adenomatosis (C34._)" ], [ "8250", "3", "Bronchiolo-alveolar adenocarcinoma, NOS (C34._)" ], [ "8251", "0", "Alveolar adenoma (C34._)" ], [ "8251", "3", "Alveolar adenocarcinoma (C34._)" ], [ "8252", "3", "Bronchiolo-alveolar carcinoma, non-mucinous (C34._)" ], [ "8253", "3", "Bronchiolo-alveolar carcinoma, mucinous (C34._)" ], [ "8254", "3", "Bronchiolo-alveolar carcinoma, mixed mucinous and non-mucinous (C34._)" ], [ "8255", "3", "Adenocarcinoma with mixed subtypes" ], [ "8260", "0", "Papillary adenoma, NOS" ], [ "8260", "3", "Papillary adenocarcinoma, NOS" ], [ "8261", "0", "Villous adenoma, NOS" ], [ "8261", "2", "Adenocarcinoma in situ in villous adenoma" ], [ "8261", "3", "Adenocarcinoma in villous adenoma" ], [ "8262", "3", "Villous adenocarcinoma" ], [ "8263", "0", "Tubulovillous adenoma, NOS" ], [ "8263", "2", "Adenocarcinoma in situ in tubulovillous adenoma" ], [ "8263", "3", "Adenocarcinoma in tubulovillous adenoma" ], [ "8264", "0", "Papillomatosis, glandular" ], [ "8270", "0", "Chromophobe adenoma (C75.1)" ], [ "8270", "3", "Chromophobe carcinoma (C75.1)" ], [ "8271", "0", "Prolactinoma (C75.1)" ], [ "8272", "0", "Pituitary adenoma, NOS (C75.1)" ], [ "8272", "3", "Pituitary carcinoma, NOS (C75.1)" ], [ "8280", "0", "Acidophil adenoma (C75.1)" ], [ "8280", "3", "Acidophil carcinoma (C75.1)" ], [ "8281", "0", "Mixed acidophil-basophil adenoma (C75.1)" ], [ "8281", "3", "Mixed acidophil-basophil carcinoma (C75.1)" ], [ "8290", "0", "Oxyphilic adenoma" ], [ "8290", "3", "Oxyphilic adenocarcinoma" ], [ "8300", "0", "Basophil adenoma (C75.1)" ], [ "8300", "3", "Basophil carcinoma (C75.1)" ], [ "8310", "0", "Clear cell adenoma" ], [ "8310", "3", "Clear cell adenocarcinoma, NOS" ], [ "8311", "1", "Hypernephroid tumor [obs]" ], [ "8312", "3", "Renal cell carcinoma, NOS (C64.9)" ], [ "8313", "0", "Clear cell adenofibroma (C56.9)" ], [ "8313", "1", "Clear cell adenofibroma of borderline malignancy (C56.9)" ], [ "8313", "3", "Clear cell adenocarcinofibroma (C56.9)" ], [ "8314", "3", "Lipid-rich carcinoma (C50._)" ], [ "8315", "3", "Glycogen-rich carcinoma" ], [ "8316", "3", "Cyst-associated renal cell carcinoma (C64.9)" ], [ "8317", "3", "Renal cell carcinoma, chromophobe type (C64.9)" ], [ "8318", "3", "Renal cell carcinoma, sarcomatoid (C64.9)" ], [ "8319", "3", "Collecting duct carcinoma (C64.9)" ], [ "8320", "3", "Granular cell carcinoma" ], [ "8321", "0", "Chief cell adenoma (C75.0)" ], [ "8322", "0", "Water-clear cell adenoma (C75.0)" ], [ "8322", "3", "Water-clear cell adenocarcinoma (C75.0)" ], [ "8323", "0", "Mixed cell adenoma" ], [ "8323", "3", "Mixed cell adenocarcinoma" ], [ "8324", "0", "Lipoadenoma" ], [ "8325", "0", "Metanephric adenoma (C64.9)" ], [ "8330", "0", "Follicular adenoma (C73.9)" ], [ "8330", "1", "Atypical follicular adenoma (C73.9)" ], [ "8330", "3", "Follicular adenocarcinoma, NOS (C73.9)" ], [ "8331", "3", "Follicular adenocarcinoma, well differentiated (C73.9)" ], [ "8332", "3", "Follicular adenocarcinoma, trabecular (C73.9)" ], [ "8333", "0", "Microfollicular adenoma, NOS (C73.9)" ], [ "8333", "3", "Fetal adenocarcinoma" ], [ "8334", "0", "Macrofollicular adenoma (C73.9)" ], [ "8335", "3", "Follicular carcinoma, minimally invasive (C73.9)" ], [ "8336", "0", "Hyalinizing trabecular adenoma (C73.9)" ], [ "8337", "3", "Insular carcinoma (C73.9)" ], [ "8340", "3", "Papillary carcinoma, follicular variant (C73.9)" ], [ "8341", "3", "Papillary microcarcinoma (C73.9)" ], [ "8342", "3", "Papillary carcinoma, oxyphilic cell (C73.9)" ], [ "8343", "3", "Papillary carcinoma, encapsulated (C73.9)" ], [ "8344", "3", "Papillary carcinoma, columnar cell (C73.9)" ], [ "8345", "3", "Medullary carcinoma with amyloid stroma (C73.9)" ], [ "8346", "3", "Mixed medullary-follicular carcinoma (C73.9)" ], [ "8347", "3", "Mixed medullary-papillary carcinoma (C73.9)" ], [ "8350", "3", "Nonencapsulated sclerosing carcinoma (C73.9)" ], [ "8360", "1", "Multiple endocrine adenomas" ], [ "8361", "0", "Juxtaglomerular tumor (C64.9)" ], [ "8370", "0", "Adrenal cortical adenoma, NOS (C74.0)" ], [ "8370", "3", "Adrenal cortical carcinoma (C74.0)" ], [ "8371", "0", "Adrenal cortical adenoma, compact cell (C74.0)" ], [ "8372", "0", "Adrenal cortical adenoma, pigmented (C74.0)" ], [ "8373", "0", "Adrenal cortical adenoma, clear cell (C74.0)" ], [ "8374", "0", "Adrenal cortical adenoma, glomerulosa cell (C74.0)" ], [ "8375", "0", "Adrenal cortical adenoma, mixed cell (C74.0)" ], [ "8380", "0", "Endometrioid adenoma, NOS" ], [ "8380", "1", "Endometrioid adenoma, borderline malignancy" ], [ "8380", "3", "Endometrioid adenocarcinoma, NOS" ], [ "8381", "0", "Endometrioid adenofibroma, NOS" ], [ "8381", "1", "Endometrioid adenofibroma, borderline malignancy" ], [ "8381", "3", "Endometrioid adenofibroma, malignant" ], [ "8382", "3", "Endometrioid adenocarcinoma, secretory variant" ], [ "8383", "3", "Endometrioid adenocarcinoma, ciliated cell variant" ], [ "8384", "3", "Adenocarcinoma, endocervical type" ], [ "8390", "0", "Skin appendage adenoma (C44._)" ], [ "8390", "3", "Skin appendage carcinoma (C44._)" ], [ "8391", "0", "Follicular fibroma (C44._)" ], [ "8392", "0", "Syringofibroadenoma (C44._)" ], [ "8400", "0", "Sweat gland adenoma (C44._)" ], [ "8400", "1", "Sweat gland tumor, NOS (C44._)" ], [ "8400", "3", "Sweat gland adenocarcinoma (C44._)" ], [ "8401", "0", "Apocrine adenoma" ], [ "8401", "3", "Apocrine adenocarcinoma" ], [ "8402", "0", "Nodular hidradenoma (C44._)" ], [ "8402", "3", "Nodular hidradenoma, malignant (C44._)" ], [ "8403", "0", "Eccrine spiradenoma (C44._)" ], [ "8403", "3", "Malignant eccrine spiradenoma (C44._)" ], [ "8404", "0", "Hidrocystoma (C44._)" ], [ "8405", "0", "Papillary hidradenoma" ], [ "8406", "0", "Papillary syringadenoma (C44._)" ], [ "8407", "0", "Syringoma, NOS (C44._)" ], [ "8407", "3", "Sclerosing sweat duct carcinoma (C44._)" ], [ "8408", "0", "Eccrine papillary adenoma (C44._)" ], [ "8408", "1", "Aggressive digital papillary adenoma (C44._)" ], [ "8408", "3", "Eccrine papillary adenocarcinoma (C44._)" ], [ "8409", "0", "Eccrine poroma (C44._)" ], [ "8409", "3", "Eccrine poroma, malignant" ], [ "8410", "0", "Sebaceous adenoma (C44._)" ], [ "8410", "3", "Sebaceous adenocarcinoma (C44._)" ], [ "8413", "3", "Eccrine adenocarcinoma (C44._)" ], [ "8420", "0", "Ceruminous adenoma (C44.2)" ], [ "8420", "3", "Ceruminous adenocarcinoma (C44.2)" ], [ "8430", "1", "Mucoepidermoid tumor [obs]" ], [ "8430", "3", "Mucoepidermoid carcinoma" ], [ "8440", "0", "Cystadenoma, NOS" ], [ "8440", "3", "Cystadenocarcinoma, NOS" ], [ "8441", "0", "Serous cystadenoma, NOS" ], [ "8441", "3", "Serous cystadenocarcinoma, NOS (C56.9)" ], [ "8442", "1", "Serous cystadenoma, borderline malignancy (C56.9)" ], [ "8443", "0", "Clear cell cystadenoma (C56.9)" ], [ "8444", "1", "Clear cell cystic tumor of borderline malignancy (C56.9)" ], [ "8450", "0", "Papillary cystadenoma, NOS (C56.9)" ], [ "8450", "3", "Papillary cystadenocarcinoma, NOS (C56.9)" ], [ "8451", "1", "Papillary cystadenoma, borderline malignancy (C56.9)" ], [ "8452", "1", "Solid pseudopapillary tumor (C25._)" ], [ "8452", "3", "Solid pseudopapillary carcinoma (C25._)" ], [ "8453", "0", "Intraductal papillary-mucinous adenoma (C25._)" ], [ "8453", "1", "Intraductal papillary-mucinous tumor with moderate dysplasia (C25._)" ], [ "8453", "2", "Intraductal papillary-mucinous carcinoma, non-invasive (C25._)" ], [ "8453", "3", "Intraductal papillary-mucinous carcinoma, invasive (C25._)" ], [ "8454", "0", "Cystic tumor of atrio-ventricular node (C38.0)" ], [ "8460", "0", "Papillary serous cystadenoma, NOS (C56.9)" ], [ "8460", "3", "Papillary serous cystadenocarcinoma (C56.9)" ], [ "8461", "0", "Serous surface papilloma (C56.9)" ], [ "8461", "3", "Serous surface papillary carcinoma (C56.9)" ], [ "8462", "1", "Serous papillary cystic tumor of borderline malignancy (C56.9)" ], [ "8463", "1", "Serous surface papillary tumor of borderline malignancy (C56.9)" ], [ "8470", "0", "Mucinous cystadenoma, NOS (C56.9)" ], [ "8470", "1", "Mucinous cystic tumor with moderate dysplasia (C25._)" ], [ "8470", "2", "Mucinous cystadenocarcinoma, non-invasive (C25._)" ], [ "8470", "3", "Mucinous cystadenocarcinoma, NOS (C56.9)" ], [ "8471", "0", "Papillary mucinous cystadenoma, NOS (C56.9)" ], [ "8471", "3", "Papillary mucinous cystadenocarcinoma (C56.9)" ], [ "8472", "1", "Mucinous cystic tumor of borderline malignancy (C56.9)" ], [ "8473", "1", "Papillary mucinous cystadenoma, borderline malignancy (C56.9)" ], [ "8480", "0", "Mucinous adenoma" ], [ "8480", "3", "Mucinous adenocarcinoma" ], [ "8480", "6", "Pseudomyxoma peritonei" ], [ "8481", "3", "Mucin-producing adenocarcinoma" ], [ "8482", "3", "Mucinous adenocarcinoma, endocervical type" ], [ "8490", "3", "Signet ring cell carcinoma" ], [ "8490", "6", "Metastatic signet ring cell carcinoma" ], [ "8500", "2", "Intraductal carcinoma, noninfiltrating, NOS" ], [ "8500", "3", "Infiltrating duct carcinoma, NOS (C50._)" ], [ "8501", "2", "Comedocarcinoma, noninfiltrating (C50._)" ], [ "8501", "3", "Comedocarcinoma, NOS (C50._)" ], [ "8502", "3", "Secretory carcinoma of breast (C50._)" ], [ "8503", "0", "Intraductal papilloma" ], [ "8503", "2", "Noninfiltrating intraductal papillary adenocarcinoma (C50._)" ], [ "8503", "3", "Intraductal papillary adenocarcinoma with invasion (C50._)" ], [ "8504", "0", "Intracystic papillary adenoma" ], [ "8504", "2", "Noninfiltrating intracystic carcinoma" ], [ "8504", "3", "Intracystic carcinoma, NOS" ], [ "8505", "0", "Intraductal papillomatosis, NOS" ], [ "8506", "0", "Adenoma of nipple (C50.0)" ], [ "8507", "2", "Intraductal micropapillary carcinoma (C50._)" ], [ "8508", "3", "Cystic hypersecretory carcinoma (C50._)" ], [ "8510", "3", "Medullary carcinoma, NOS" ], [ "8512", "3", "Medullary carcinoma with lymphoid stroma" ], [ "8513", "3", "Atypical medullary carcinoma (C50._)" ], [ "8514", "3", "Duct carcinoma, desmoplastic type" ], [ "8520", "2", "Lobular carcinoma in situ, NOS (C50._)" ], [ "8520", "3", "Lobular carcinoma, NOS (C50._)" ], [ "8521", "3", "Infiltrating ductular carcinoma (C50._)" ], [ "8522", "2", "Intraductal carcinoma and lobular carcinoma in situ (C50._)" ], [ "8522", "3", "Infiltrating duct and lobular carcinoma (C50._)" ], [ "8523", "3", "Infiltrating duct mixed with other types of carcinoma (C50._)" ], [ "8524", "3", "Infiltrating lobular mixed with other types of carcinoma (C50._)" ], [ "8525", "3", "Polymorphous low grade adenocarcinoma" ], [ "8530", "3", "Inflammatory carcinoma (C50._)" ], [ "8540", "3", "Paget disease, mammary (C50._)" ], [ "8541", "3", "Paget disease and infiltrating duct carcinoma of breast (C50._)" ], [ "8542", "3", "Paget disease, extramammary (except Paget disease of bone)" ], [ "8543", "3", "Paget disease and intraductal carcinoma of breast (C50._)" ], [ "8550", "0", "Acinar cell adenoma" ], [ "8550", "1", "Acinar cell tumor [obs]" ], [ "8550", "3", "Acinar cell carcinoma" ], [ "8551", "3", "Acinar cell cystadenocarcinoma" ], [ "8560", "0", "Mixed squamous cell and glandular papilloma" ], [ "8560", "3", "Adenosquamous carcinoma" ], [ "8561", "0", "Adenolymphoma (C07._, C08._)" ], [ "8562", "3", "Epithelial-myoepithelial carcinoma" ], [ "8570", "3", "Adenocarcinoma with squamous metaplasia" ], [ "8571", "3", "Adenocarcinoma with cartilaginous and osseous metaplasia" ], [ "8572", "3", "Adenocarcinoma with spindle cell metaplasia" ], [ "8573", "3", "Adenocarcinoma with apocrine metaplasia" ], [ "8574", "3", "Adenocarcinoma with neuroendocrine differentiation" ], [ "8575", "3", "Metaplastic carcinoma, NOS" ], [ "8576", "3", "Hepatoid adenocarcinoma" ], [ "8580", "0", "Thymoma, benign (C37.9)" ], [ "8580", "1", "Thymoma, NOS (C37.9)" ], [ "8580", "3", "Thymoma, malignant, NOS (C37.9)" ], [ "8581", "1", "Thymoma, type A, NOS (C37.9)" ], [ "8581", "3", "Thymoma, type A, malignant (C37.9)" ], [ "8582", "1", "Thymoma, type AB, NOS (C37.9)" ], [ "8582", "3", "Thymoma, type AB, malignant (C37.9)" ], [ "8583", "1", "Thymoma, type B1, NOS (C37.9)" ], [ "8583", "3", "Thymoma, type B1, malignant (C37.9)" ], [ "8584", "1", "Thymoma, type B2, NOS (C37.9)" ], [ "8584", "3", "Thymoma, type B2, malignant (C37.9)" ], [ "8585", "1", "Thymoma, type B3, NOS (C37.9)" ], [ "8585", "3", "Thymoma, type B3, malignant (C37.9)" ], [ "8586", "3", "Thymic carcinoma, NOS (C37.9)" ], [ "8587", "0", "Ectopic hamartomatous thymoma" ], [ "8588", "3", "Spindle epithelial tumor with thymus-like element" ], [ "8589", "3", "Carcinoma showing thymus-like element" ], [ "8590", "1", "Sex cord-gonadal stromal tumor, NOS" ], [ "8591", "1", "Sex cord-gonadal stromal tumor, incompletely differentiated" ], [ "8592", "1", "Sex cord-gonadal stromal tumor, mixed forms" ], [ "8593", "1", "Stromal tumor with minor sex cord elements (C56.9)" ], [ "8600", "0", "Thecoma, NOS (C56.9)" ], [ "8600", "3", "Thecoma, malignant (C56.9)" ], [ "8601", "0", "Thecoma, luteinized (C56.9)" ], [ "8602", "0", "Sclerosing stromal tumor (C56.9)" ], [ "8610", "0", "Luteoma, NOS (C56.9)" ], [ "8620", "1", "Granulosa cell tumor, adult type (C56.9)" ], [ "8620", "3", "Granulosa cell tumor, malignant (C56.9)" ], [ "8621", "1", "Granulosa cell-theca cell tumor (C56.9)" ], [ "8622", "1", "Granulosa cell tumor, juvenile (C56.9)" ], [ "8623", "1", "Sex cord tumor with annular tubules (C56.9)" ], [ "8630", "0", "Androblastoma, benign" ], [ "8630", "1", "Androblastoma, NOS" ], [ "8630", "3", "Androblastoma, malignant" ], [ "8631", "0", "Sertoli-Leydig cell tumor, well differentiated" ], [ "8631", "1", "Sertoli-Leydig cell tumor of intermediate differentiation" ], [ "8631", "3", "Sertoli-Leydig cell tumor, poorly differentiated" ], [ "8632", "1", "Gynandroblastoma (C56.9)" ], [ "8633", "1", "Sertoli-Leydig cell tumor, retiform" ], [ "8634", "1", "Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements" ], [ "8634", "3", "Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements" ], [ "8640", "1", "Sertoli cell tumor, NOS" ], [ "8640", "3", "Sertoli cell carcinoma (C62._)" ], [ "8641", "0", "Sertoli cell tumor with lipid storage" ], [ "8642", "1", "Large cell calcifying Sertoli cell tumor" ], [ "8650", "0", "Leydig cell tumor, benign (C62._)" ], [ "8650", "1", "Leydig cell tumor, NOS (C62._)" ], [ "8650", "3", "Leydig cell tumor, malignant (C62._)" ], [ "8660", "0", "Hilus cell tumor (C56.9)" ], [ "8670", "0", "Lipid cell tumor of ovary (C56.9)" ], [ "8670", "3", "Steroid cell tumor, malignant" ], [ "8671", "0", "Adrenal rest tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8940", "0", "Pleomorphic adenoma" ], [ "8940", "3", "Mixed tumor, malignant, NOS" ], [ "8941", "3", "Carcinoma in pleomorphic adenoma (C07._, C08._)" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pan.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pan.json
deleted file mode 100644
index 27fa86e31..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_pan.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_pan",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:47.213Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9) " ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma " ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma " ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppb.json
deleted file mode 100644
index 97d8c553f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppb.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_ppb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:47.294Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8150", "0", "Islet cell adenoma (C25._)" ], [ "8150", "1", "Islet cell tumor, NOS (C25._)" ], [ "8150", "3", "Islet cell carcinoma (C25._)" ], [ "8151", "0", "Insulinoma, NOS (C25._)" ], [ "8151", "3", "Insulinoma, malignant (C25._)" ], [ "8152", "1", "Glucagonoma, NOS (C25._)" ], [ "8152", "3", "Glucagonoma, malignant (C25._)" ], [ "8153", "1", "Gastrinoma, NOS" ], [ "8153", "3", "Gastrinoma, malignant" ], [ "8154", "3", "Mixed islet cell and exocrine adenocarcinoma (C25._)" ], [ "8155", "1", "Vipoma, NOS" ], [ "8155", "3", "Vipoma, malignant" ], [ "8156", "1", "Somatostatinoma, NOS" ], [ "8156", "3", "Somatostatinoma, malignant" ], [ "8157", "1", "Enteroglucagonoma, NOS" ], [ "8157", "3", "Enteroglucagonoma, malignant" ], [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppc.json
deleted file mode 100644
index d5a183acd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppc.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_ppc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:47.376Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8000", "0", " Neoplasm, benign" ], [ "8000", "1", " Neoplasm, uncertain whether benign or malignant" ], [ "8000", "3", " Neoplasm, malignant" ], [ "8000", "6", " Neoplasm, metastatic" ], [ "8000", "9", " Neoplasm, malignant, uncertain whether primary or metastatic" ], [ "8001", "0", " Tumor cells, benign" ], [ "8001", "1", " Tumor cells, uncertain whether benign or malignant" ], [ "8001", "3", " Tumor cells, malignant" ], [ "8002", "3", " Malignant tumor, small cell type" ], [ "8003", "3", " Malignant tumor, giant cell type" ], [ "8004", "3", " Malignant tumor, spindle cell type" ], [ "8005", "0", " Clear cell tumor, NOS" ], [ "8005", "3", " Malignant tumor, clear cell type" ], [ "8010", "0", " Epithelial tumor, benign" ], [ "8010", "2", " Carcinoma in situ, NOS" ], [ "8010", "3", " Carcinoma, NOS" ], [ "8010", "6", " Carcinoma, metastatic, NOS" ], [ "8010", "9", " Carcinomatosis" ], [ "8011", "0", " Epithelioma, benign" ], [ "8011", "3", " Epithelioma, malignant" ], [ "8012", "3", " Large cell carcinoma, NOS" ], [ "8013", "3", " Large cell neuroendocrine carcinoma" ], [ "8014", "3", " Large cell carcinoma with rhabdoid phenotype" ], [ "8015", "3", " Glassy cell carcinoma" ], [ "8020", "3", " Carcinoma, undifferentiated, NOS" ], [ "8021", "3", " Carcinoma, anaplastic, NOS" ], [ "8022", "3", " Pleomorphic carcinoma" ], [ "8030", "3", " Giant cell and spindle cell carcinoma" ], [ "8031", "3", " Giant cell carcinoma" ], [ "8032", "3", " Spindle cell carcinoma, NOS" ], [ "8033", "3", " Pseudosarcomatous carcinoma" ], [ "8034", "3", " Polygonal cell carcinoma" ], [ "8035", "3", " Carcinoma with osteoclast-like giant cells" ], [ "8040", "0", " Tumorlet, benign" ], [ "8040", "1", " Tumorlet, NOS" ], [ "8041", "3", " Small cell carcinoma, NOS" ], [ "8042", "3", " Oat cell carcinoma (C34._)" ], [ "8043", "3", " Small cell carcinoma, fusiform cell" ], [ "8044", "3", " Small cell carcinoma, intermediate cell" ], [ "8045", "3", " Combined small cell carcinoma" ], [ "8046", "3", " Non-small cell carcinoma (C34._)" ], [ "8050", "0", " Papilloma, NOS (except papilloma of bladder M-8120/1)" ], [ "8050", "2", " Papillary carcinoma in situ" ], [ "8050", "3", " Papillary carcinoma, NOS" ], [ "8051", "0", " Verrucous papilloma" ], [ "8051", "3", " Verrucous carcinoma, NOS" ], [ "8052", "0", " Squamous cell papilloma, NOS" ], [ "8052", "2", " Papillary squamous cell carcinoma, non-invasive" ], [ "8052", "3", " Papillary squamous cell carcinoma" ], [ "8053", "0", " Squamous cell papilloma, inverted" ], [ "8060", "0", " Squamous papillomatosis" ], [ "8070", "2", " Squamous cell carcinoma in situ, NOS" ], [ "8070", "3", " Squamous cell carcinoma, NOS" ], [ "8070", "6", " Squamous cell carcinoma, metastatic, NOS" ], [ "8071", "3", " Squamous cell carcinoma, keratinizing, NOS" ], [ "8072", "3", " Squamous cell carcinoma, large cell, nonkeratinizing, NOS" ], [ "8073", "3", " Squamous cell carcinoma, small cell, nonkeratinizing" ], [ "8074", "3", " Squamous cell carcinoma, spindle cell" ], [ "8075", "3", " Squamous cell carcinoma, adenoid" ], [ "8076", "2", " Squamous cell carcinoma in situ with questionable stromal invasion" ], [ "8076", "3", " Squamous cell carcinoma, microinvasive" ], [ "8077", "2", " Squamous intraepithelial neoplasia, grade III" ], [ "8078", "3", " Squamous cell carcinoma with horn formation" ], [ "8080", "2", " Queyrat erythroplasia (C60._)" ], [ "8081", "2", " Bowen disease (C44._)" ], [ "8082", "3", " Lymphoepithelial carcinoma" ], [ "8083", "3", " Basaloid squamous cell carcinoma" ], [ "8084", "3", " Squamous cell carcinoma, clear cell type" ], [ "8090", "1", " Basal cell tumor (C44._)" ], [ "8090", "3", " Basal cell carcinoma, NOS (C44._)" ], [ "8091", "3", " Multifocal superficial basal cell carcinoma (C44._)" ], [ "8092", "3", " Infiltrating basal cell carcinoma, NOS (C44._)" ], [ "8093", "3", " Basal cell carcinoma, fibroepithelial (C44._)" ], [ "8094", "3", " Basosquamous carcinoma (C44._)" ], [ "8095", "3", " Metatypical carcinoma (C44._)" ], [ "8096", "0", " Intraepidermal epithelioma of Jadassohn (C44._)" ], [ "8097", "3", " Basal cell carcinoma, nodular (C44._)" ], [ "8098", "3", " Adenoid basal carcinoma (C53._)" ], [ "8100", "0", " Trichoepithelioma (C44._)" ], [ "8101", "0", " Trichofolliculoma (C44._)" ], [ "8102", "0", " Trichilemmoma (C44._)" ], [ "8102", "3", " Trichilemmocarcinoma (C44._)" ], [ "8103", "0", " Pilar tumor (C44._)" ], [ "8110", "0", " Pilomatrixoma, NOS (C44._)" ], [ "8110", "3", " Pilomatrix carcinoma (C44._)" ], [ "8120", "0", " Transitional cell papilloma, benign" ], [ "8120", "1", " Urothelial papilloma, NOS" ], [ "8120", "2", " Transitional cell carcinoma in situ" ], [ "8120", "3", " Transitional cell carcinoma, NOS" ], [ "8121", "0", " Schneiderian papilloma, NOS (C30.0, C31._)" ], [ "8121", "1", " Transitional cell papilloma, inverted, NOS" ], [ "8121", "3", " Schneiderian carcinoma (C30.0, C31._)" ], [ "8122", "3", " Transitional cell carcinoma, spindle cell" ], [ "8123", "3", " Basaloid carcinoma" ], [ "8124", "3", " Cloacogenic carcinoma (C21.2)" ], [ "8130", "1", " Papillary transitional cell neoplasm of low malignant potential (C67._)" ], [ "8130", "2", " Papillary transitional cell carcinoma, non-invasive (C67._)" ], [ "8130", "3", " Papillary transitional cell carcinoma (C67._)" ], [ "8131", "3", " Transitional cell carcinoma, micropapillary (C67._)" ], [ "8140", "0", " Adenoma, NOS" ], [ "8140", "1", " Atypical adenoma" ], [ "8140", "2", " Adenocarcinoma in situ, NOS" ], [ "8140", "3", " Adenocarcinoma, NOS" ], [ "8140", "6", " Adenocarcinoma, metastatic, NOS" ], [ "8141", "3", " Scirrhous adenocarcinoma" ], [ "8142", "3", " Linitis plastica (C16._)" ], [ "8143", "3", " Superficial spreading adenocarcinoma" ], [ "8144", "3", " Adenocarcinoma, intestinal type (C16._)" ], [ "8145", "3", " Carcinoma, diffuse type (C16._)" ], [ "8146", "0", " Monomorphic adenoma" ], [ "8147", "0", " Basal cell adenoma" ], [ "8147", "3", " Basal cell adenocarcinoma" ], [ "8148", "2", " Glandular intraepithelial neoplasia, grade III" ], [ "8149", "0", " Canalicular adenoma" ], [ "8150", "0", " Islet cell adenoma (C25._)" ], [ "8150", "1", " Islet cell tumor, NOS (C25._)" ], [ "8150", "3", " Islet cell carcinoma (C25._)" ], [ "8151", "0", " Insulinoma, NOS (C25._)" ], [ "8151", "3", " Insulinoma, malignant (C25._)" ], [ "8152", "1", " Glucagonoma, NOS (C25._)" ], [ "8152", "3", " Glucagonoma, malignant (C25._)" ], [ "8153", "1", " Gastrinoma, NOS" ], [ "8153", "3", " Gastrinoma, malignant" ], [ "8154", "3", " Mixed islet cell and exocrine adenocarcinoma (C25._)" ], [ "8155", "1", " Vipoma, NOS" ], [ "8155", "3", " Vipoma, malignant" ], [ "8156", "1", " Somatostatinoma, NOS" ], [ "8156", "3", " Somatostatinoma, malignant" ], [ "8157", "1", " Enteroglucagonoma, NOS" ], [ "8157", "3", " Enteroglucagonoma, malignant" ], [ "8160", "0", " Bile duct adenoma (C22.1, C24.0)" ], [ "8160", "3", " Cholangiocarcinoma (C22.1, C24.0)" ], [ "8161", "0", " Bile duct cystadenoma (C22.1, C24.0)" ], [ "8161", "3", " Bile duct cystadenocarcinoma (C22.1, C24.0)" ], [ "8162", "3", " Klatskin tumor (C22.1, C24.0)" ], [ "8170", "0", " Liver cell adenoma (C22.0)" ], [ "8170", "3", " Hepatocellular carcinoma, NOS (C22.0)" ], [ "8171", "3", " Hepatocellular carcinoma, fibrolamellar (C22.0)" ], [ "8172", "3", " Hepatocellular carcinoma, scirrhous (C22.0)" ], [ "8173", "3", " Hepatocellular carcinoma, spindle cell variant (C22.0)" ], [ "8174", "3", " Hepatocellular carcinoma, clear cell type (C22.0)" ], [ "8175", "3", " Hepatocellular carcinoma, pleomorphic type (C22.0)" ], [ "8180", "3", " Combined hepatocellular carcinoma and cholangiocarcinoma (C22.0)" ], [ "8190", "0", " Trabecular adenoma" ], [ "8190", "3", " Trabecular adenocarcinoma" ], [ "8191", "0", " Embryonal adenoma" ], [ "8200", "0", " Eccrine dermal cylindroma (C44._)" ], [ "8200", "3", " Adenoid cystic carcinoma" ], [ "8201", "2", " Cribriform carcinoma in situ (C50._)" ], [ "8201", "3", " Cribriform carcinoma, NOS" ], [ "8202", "0", " Microcystic adenoma (C25._)" ], [ "8204", "0", " Lactating adenoma (C50._)" ], [ "8210", "0", " Adenomatous polyp, NOS" ], [ "8210", "2", " Adenocarcinoma in situ in adenomatous polyp" ], [ "8210", "3", " Adenocarcinoma in adenomatous polyp" ], [ "8211", "0", " Tubular adenoma, NOS" ], [ "8211", "3", " Tubular adenocarcinoma" ], [ "8212", "0", " Flat adenoma" ], [ "8213", "0", " Serrated adenoma (C18._)" ], [ "8214", "3", " Parietal cell carcinoma (C16._)" ], [ "8215", "3", " Adenocarcinoma of anal glands (C21.1)" ], [ "8220", "0", " Adenomatous polyposis coli (C18._)" ], [ "8220", "3", " Adenocarcinoma in adenomatous polyposis coli (C18._)" ], [ "8221", "0", " Multiple adenomatous polyps" ], [ "8221", "3", " Adenocarcinoma in multiple adenomatous polyps" ], [ "8230", "2", " Ductal carcinoma in situ, solid type (C50._)" ], [ "8230", "3", " Solid carcinoma, NOS" ], [ "8231", "3", " Carcinoma simplex" ], [ "8240", "1", " Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", " Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", " Enterochromaffin cell carcinoid" ], [ "8242", "1", " Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", " Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", " Goblet cell carcinoid" ], [ "8244", "3", " Composite carcinoid" ], [ "8245", "1", " Tubular carcinoid" ], [ "8245", "3", " Adenocarcinoid tumor" ], [ "8246", "3", " Neuroendocrine carcinoma, NOS" ], [ "8247", "3", " Merkel cell carcinoma (C44._)" ], [ "8248", "1", " Apudoma" ], [ "8249", "3", " Atypical carcinoid tumor" ], [ "8250", "1", " Pulmonary adenomatosis (C34._)" ], [ "8250", "3", " Bronchiolo-alveolar adenocarcinoma, NOS (C34._)" ], [ "8251", "0", " Alveolar adenoma (C34._)" ], [ "8251", "3", " Alveolar adenocarcinoma (C34._)" ], [ "8252", "3", " Bronchiolo-alveolar carcinoma, non-mucinous (C34._)" ], [ "8253", "3", " Bronchiolo-alveolar carcinoma, mucinous (C34._)" ], [ "8254", "3", " Bronchiolo-alveolar carcinoma, mixed mucinous and non-mucinous (C34._)" ], [ "8255", "3", " Adenocarcinoma with mixed subtypes" ], [ "8260", "0", " Papillary adenoma, NOS" ], [ "8260", "3", " Papillary adenocarcinoma, NOS" ], [ "8261", "0", " Villous adenoma, NOS" ], [ "8261", "2", " Adenocarcinoma in situ in villous adenoma" ], [ "8261", "3", " Adenocarcinoma in villous adenoma" ], [ "8262", "3", " Villous adenocarcinoma" ], [ "8263", "0", " Tubulovillous adenoma, NOS" ], [ "8263", "2", " Adenocarcinoma in situ in tubulovillous adenoma" ], [ "8263", "3", " Adenocarcinoma in tubulovillous adenoma" ], [ "8264", "0", " Papillomatosis, glandular" ], [ "8270", "0", " Chromophobe adenoma (C75.1)" ], [ "8270", "3", " Chromophobe carcinoma (C75.1)" ], [ "8271", "0", " Prolactinoma (C75.1)" ], [ "8272", "0", " Pituitary adenoma, NOS (C75.1)" ], [ "8272", "3", " Pituitary carcinoma, NOS (C75.1)" ], [ "8280", "0", " Acidophil adenoma (C75.1)" ], [ "8280", "3", " Acidophil carcinoma (C75.1)" ], [ "8281", "0", " Mixed acidophil-basophil adenoma (C75.1)" ], [ "8281", "3", " Mixed acidophil-basophil carcinoma (C75.1)" ], [ "8290", "0", " Oxyphilic adenoma" ], [ "8290", "3", " Oxyphilic adenocarcinoma" ], [ "8300", "0", " Basophil adenoma (C75.1)" ], [ "8300", "3", " Basophil carcinoma (C75.1)" ], [ "8310", "0", " Clear cell adenoma" ], [ "8310", "3", " Clear cell adenocarcinoma, NOS" ], [ "8311", "1", " Hypernephroid tumor [obs]" ], [ "8312", "3", " Renal cell carcinoma, NOS (C64.9)" ], [ "8313", "0", " Clear cell adenofibroma (C56.9)" ], [ "8313", "1", " Clear cell adenofibroma of borderline malignancy (C56.9)" ], [ "8313", "3", " Clear cell adenocarcinofibroma (C56.9)" ], [ "8314", "3", " Lipid-rich carcinoma (C50._)" ], [ "8315", "3", " Glycogen-rich carcinoma" ], [ "8316", "3", " Cyst-associated renal cell carcinoma (C64.9)" ], [ "8317", "3", " Renal cell carcinoma, chromophobe type (C64.9)" ], [ "8318", "3", " Renal cell carcinoma, sarcomatoid (C64.9)" ], [ "8319", "3", " Collecting duct carcinoma (C64.9)" ], [ "8320", "3", " Granular cell carcinoma" ], [ "8321", "0", " Chief cell adenoma (C75.0)" ], [ "8322", "0", " Water-clear cell adenoma (C75.0)" ], [ "8322", "3", " Water-clear cell adenocarcinoma (C75.0)" ], [ "8323", "0", " Mixed cell adenoma" ], [ "8323", "3", " Mixed cell adenocarcinoma" ], [ "8324", "0", " Lipoadenoma" ], [ "8325", "0", " Metanephric adenoma (C64.9)" ], [ "8330", "0", " Follicular adenoma (C73.9)" ], [ "8330", "1", " Atypical follicular adenoma (C73.9)" ], [ "8330", "3", " Follicular adenocarcinoma, NOS (C73.9)" ], [ "8331", "3", " Follicular adenocarcinoma, well differentiated (C73.9)" ], [ "8332", "3", " Follicular adenocarcinoma, trabecular (C73.9)" ], [ "8333", "0", " Microfollicular adenoma, NOS (C73.9)" ], [ "8333", "3", " Fetal adenocarcinoma" ], [ "8334", "0", " Macrofollicular adenoma (C73.9)" ], [ "8335", "3", " Follicular carcinoma, minimally invasive (C73.9)" ], [ "8336", "0", " Hyalinizing trabecular adenoma (C73.9)" ], [ "8337", "3", " Insular carcinoma (C73.9)" ], [ "8340", "3", " Papillary carcinoma, follicular variant (C73.9)" ], [ "8341", "3", " Papillary microcarcinoma (C73.9)" ], [ "8342", "3", " Papillary carcinoma, oxyphilic cell (C73.9)" ], [ "8343", "3", " Papillary carcinoma, encapsulated (C73.9)" ], [ "8344", "3", " Papillary carcinoma, columnar cell (C73.9)" ], [ "8345", "3", " Medullary carcinoma with amyloid stroma (C73.9)" ], [ "8346", "3", " Mixed medullary-follicular carcinoma (C73.9)" ], [ "8347", "3", " Mixed medullary-papillary carcinoma (C73.9)" ], [ "8350", "3", " Nonencapsulated sclerosing carcinoma (C73.9)" ], [ "8360", "1", " Multiple endocrine adenomas" ], [ "8361", "0", " Juxtaglomerular tumor (C64.9)" ], [ "8370", "0", " Adrenal cortical adenoma, NOS (C74.0)" ], [ "8370", "3", " Adrenal cortical carcinoma (C74.0)" ], [ "8371", "0", " Adrenal cortical adenoma, compact cell (C74.0)" ], [ "8372", "0", " Adrenal cortical adenoma, pigmented (C74.0)" ], [ "8373", "0", " Adrenal cortical adenoma, clear cell (C74.0)" ], [ "8374", "0", " Adrenal cortical adenoma, glomerulosa cell (C74.0)" ], [ "8375", "0", " Adrenal cortical adenoma, mixed cell (C74.0)" ], [ "8380", "0", " Endometrioid adenoma, NOS" ], [ "8380", "1", " Endometrioid adenoma, borderline malignancy" ], [ "8380", "3", " Endometrioid adenocarcinoma, NOS" ], [ "8381", "0", " Endometrioid adenofibroma, NOS" ], [ "8381", "1", " Endometrioid adenofibroma, borderline malignancy" ], [ "8381", "3", " Endometrioid adenofibroma, malignant" ], [ "8382", "3", " Endometrioid adenocarcinoma, secretory variant" ], [ "8383", "3", " Endometrioid adenocarcinoma, ciliated cell variant" ], [ "8384", "3", " Adenocarcinoma, endocervical type" ], [ "8390", "0", " Skin appendage adenoma (C44._)" ], [ "8390", "3", " Skin appendage carcinoma (C44._)" ], [ "8391", "0", " Follicular fibroma (C44._)" ], [ "8392", "0", " Syringofibroadenoma (C44._)" ], [ "8400", "0", " Sweat gland adenoma (C44._)" ], [ "8400", "1", " Sweat gland tumor, NOS (C44._)" ], [ "8400", "3", " Sweat gland adenocarcinoma (C44._)" ], [ "8401", "0", " Apocrine adenoma" ], [ "8401", "3", " Apocrine adenocarcinoma" ], [ "8402", "0", " Nodular hidradenoma (C44._)" ], [ "8402", "3", " Nodular hidradenoma, malignant (C44._)" ], [ "8403", "0", " Eccrine spiradenoma (C44._)" ], [ "8403", "3", " Malignant eccrine spiradenoma (C44._)" ], [ "8404", "0", " Hidrocystoma (C44._)" ], [ "8405", "0", " Papillary hidradenoma" ], [ "8406", "0", " Papillary syringadenoma (C44._)" ], [ "8407", "0", " Syringoma, NOS (C44._)" ], [ "8407", "3", " Sclerosing sweat duct carcinoma (C44._)" ], [ "8408", "0", " Eccrine papillary adenoma (C44._)" ], [ "8408", "1", " Aggressive digital papillary adenoma (C44._)" ], [ "8408", "3", " Eccrine papillary adenocarcinoma (C44._)" ], [ "8409", "0", " Eccrine poroma (C44._)" ], [ "8409", "3", " Eccrine poroma, malignant" ], [ "8410", "0", " Sebaceous adenoma (C44._)" ], [ "8410", "3", " Sebaceous adenocarcinoma (C44._)" ], [ "8413", "3", " Eccrine adenocarcinoma (C44._)" ], [ "8420", "0", " Ceruminous adenoma (C44.2)" ], [ "8420", "3", " Ceruminous adenocarcinoma (C44.2)" ], [ "8430", "1", " Mucoepidermoid tumor [obs]" ], [ "8430", "3", " Mucoepidermoid carcinoma" ], [ "8440", "0", " Cystadenoma, NOS" ], [ "8440", "3", " Cystadenocarcinoma, NOS" ], [ "8441", "0", " Serous cystadenoma, NOS" ], [ "8441", "3", " Serous cystadenocarcinoma, NOS (C56.9)" ], [ "8442", "1", " Serous cystadenoma, borderline malignancy (C56.9)" ], [ "8443", "0", " Clear cell cystadenoma (C56.9)" ], [ "8444", "1", " Clear cell cystic tumor of borderline malignancy (C56.9)" ], [ "8450", "0", " Papillary cystadenoma, NOS (C56.9)" ], [ "8450", "3", " Papillary cystadenocarcinoma, NOS (C56.9)" ], [ "8451", "1", " Papillary cystadenoma, borderline malignancy (C56.9)" ], [ "8452", "1", " Solid pseudopapillary tumor (C25._)" ], [ "8452", "3", " Solid pseudopapillary carcinoma (C25._)" ], [ "8453", "0", " Intraductal papillary-mucinous adenoma (C25._)" ], [ "8453", "1", " Intraductal papillary-mucinous tumor with moderate dysplasia (C25._)" ], [ "8453", "2", " Intraductal papillary-mucinous carcinoma, non-invasive (C25._)" ], [ "8453", "3", " Intraductal papillary-mucinous carcinoma, invasive (C25._)" ], [ "8454", "0", " Cystic tumor of atrio-ventricular node (C38.0)" ], [ "8460", "0", " Papillary serous cystadenoma, NOS (C56.9)" ], [ "8460", "3", " Papillary serous cystadenocarcinoma (C56.9)" ], [ "8461", "0", " Serous surface papilloma (C56.9)" ], [ "8461", "3", " Serous surface papillary carcinoma (C56.9)" ], [ "8462", "1", " Serous papillary cystic tumor of borderline malignancy (C56.9)" ], [ "8463", "1", " Serous surface papillary tumor of borderline malignancy (C56.9)" ], [ "8470", "0", " Mucinous cystadenoma, NOS (C56.9)" ], [ "8470", "1", " Mucinous cystic tumor with moderate dysplasia (C25._)" ], [ "8470", "2", " Mucinous cystadenocarcinoma, non-invasive (C25._)" ], [ "8470", "3", " Mucinous cystadenocarcinoma, NOS (C56.9)" ], [ "8471", "0", " Papillary mucinous cystadenoma, NOS (C56.9)" ], [ "8471", "3", " Papillary mucinous cystadenocarcinoma (C56.9)" ], [ "8472", "1", " Mucinous cystic tumor of borderline malignancy (C56.9)" ], [ "8473", "1", " Papillary mucinous cystadenoma, borderline malignancy (C56.9)" ], [ "8480", "0", " Mucinous adenoma" ], [ "8480", "3", " Mucinous adenocarcinoma" ], [ "8480", "6", " Pseudomyxoma peritonei" ], [ "8481", "3", " Mucin-producing adenocarcinoma" ], [ "8482", "3", " Mucinous adenocarcinoma, endocervical type" ], [ "8490", "3", " Signet ring cell carcinoma" ], [ "8490", "6", " Metastatic signet ring cell carcinoma" ], [ "8500", "2", " Intraductal carcinoma, noninfiltrating, NOS" ], [ "8500", "3", " Infiltrating duct carcinoma, NOS (C50._)" ], [ "8501", "2", " Comedocarcinoma, noninfiltrating (C50._)" ], [ "8501", "3", " Comedocarcinoma, NOS (C50._)" ], [ "8502", "3", " Secretory carcinoma of breast (C50._)" ], [ "8503", "0", " Intraductal papilloma" ], [ "8503", "2", " Noninfiltrating intraductal papillary adenocarcinoma (C50._)" ], [ "8503", "3", " Intraductal papillary adenocarcinoma with invasion (C50._)" ], [ "8504", "0", " Intracystic papillary adenoma" ], [ "8504", "2", " Noninfiltrating intracystic carcinoma" ], [ "8504", "3", " Intracystic carcinoma, NOS" ], [ "8505", "0", " Intraductal papillomatosis, NOS" ], [ "8506", "0", " Adenoma of nipple (C50.0)" ], [ "8507", "2", " Intraductal micropapillary carcinoma (C50._)" ], [ "8508", "3", " Cystic hypersecretory carcinoma (C50._)" ], [ "8510", "3", " Medullary carcinoma, NOS" ], [ "8512", "3", " Medullary carcinoma with lymphoid stroma" ], [ "8513", "3", " Atypical medullary carcinoma (C50._)" ], [ "8514", "3", " Duct carcinoma, desmoplastic type" ], [ "8520", "2", " Lobular carcinoma in situ, NOS (C50._)" ], [ "8520", "3", " Lobular carcinoma, NOS (C50._)" ], [ "8521", "3", " Infiltrating ductular carcinoma (C50._)" ], [ "8522", "2", " Intraductal carcinoma and lobular carcinoma in situ (C50._)" ], [ "8522", "3", " Infiltrating duct and lobular carcinoma (C50._)" ], [ "8523", "3", " Infiltrating duct mixed with other types of carcinoma (C50._)" ], [ "8524", "3", " Infiltrating lobular mixed with other types of carcinoma (C50._)" ], [ "8525", "3", " Polymorphous low grade adenocarcinoma" ], [ "8530", "3", " Inflammatory carcinoma (C50._)" ], [ "8540", "3", " Paget disease, mammary (C50._)" ], [ "8541", "3", " Paget disease and infiltrating duct carcinoma of breast (C50._)" ], [ "8542", "3", " Paget disease, extramammary (except Paget disease of bone)" ], [ "8543", "3", " Paget disease and intraductal carcinoma of breast (C50._)" ], [ "8550", "0", " Acinar cell adenoma" ], [ "8550", "1", " Acinar cell tumor [obs]" ], [ "8550", "3", " Acinar cell carcinoma" ], [ "8551", "3", " Acinar cell cystadenocarcinoma" ], [ "8560", "0", " Mixed squamous cell and glandular papilloma" ], [ "8560", "3", " Adenosquamous carcinoma" ], [ "8561", "0", " Adenolymphoma (C07._, C08._)" ], [ "8562", "3", " Epithelial-myoepithelial carcinoma" ], [ "8570", "3", " Adenocarcinoma with squamous metaplasia" ], [ "8571", "3", " Adenocarcinoma with cartilaginous and osseous metaplasia" ], [ "8572", "3", " Adenocarcinoma with spindle cell metaplasia" ], [ "8573", "3", " Adenocarcinoma with apocrine metaplasia" ], [ "8574", "3", " Adenocarcinoma with neuroendocrine differentiation" ], [ "8575", "3", " Metaplastic carcinoma, NOS" ], [ "8576", "3", " Hepatoid adenocarcinoma" ], [ "8580", "0", " Thymoma, benign (C37.9)" ], [ "8580", "1", " Thymoma, NOS (C37.9)" ], [ "8580", "3", " Thymoma, malignant, NOS (C37.9)" ], [ "8581", "1", " Thymoma, type A, NOS (C37.9)" ], [ "8581", "3", " Thymoma, type A, malignant (C37.9)" ], [ "8582", "1", " Thymoma, type AB, NOS (C37.9)" ], [ "8582", "3", " Thymoma, type AB, malignant (C37.9)" ], [ "8583", "1", " Thymoma, type B1, NOS (C37.9)" ], [ "8583", "3", " Thymoma, type B1, malignant (C37.9)" ], [ "8584", "1", " Thymoma, type B2, NOS (C37.9)" ], [ "8584", "3", " Thymoma, type B2, malignant (C37.9)" ], [ "8585", "1", " Thymoma, type B3, NOS (C37.9)" ], [ "8585", "3", " Thymoma, type B3, malignant (C37.9)" ], [ "8586", "3", " Thymic carcinoma, NOS (C37.9)" ], [ "8587", "0", " Ectopic hamartomatous thymoma" ], [ "8588", "3", " Spindle epithelial tumor with thymus-like element" ], [ "8589", "3", " Carcinoma showing thymus-like element" ], [ "8590", "1", " Sex cord-gonadal stromal tumor, NOS" ], [ "8591", "1", " Sex cord-gonadal stromal tumor, incompletely differentiated" ], [ "8592", "1", " Sex cord-gonadal stromal tumor, mixed forms" ], [ "8593", "1", " Stromal tumor with minor sex cord elements (C56.9)" ], [ "8600", "0", " Thecoma, NOS (C56.9)" ], [ "8600", "3", " Thecoma, malignant (C56.9)" ], [ "8601", "0", " Thecoma, luteinized (C56.9)" ], [ "8602", "0", " Sclerosing stromal tumor (C56.9)" ], [ "8610", "0", " Luteoma, NOS (C56.9)" ], [ "8620", "1", " Granulosa cell tumor, adult type (C56.9)" ], [ "8620", "3", " Granulosa cell tumor, malignant (C56.9)" ], [ "8621", "1", " Granulosa cell-theca cell tumor (C56.9)" ], [ "8622", "1", " Granulosa cell tumor, juvenile (C56.9)" ], [ "8623", "1", " Sex cord tumor with annular tubules (C56.9)" ], [ "8630", "0", " Androblastoma, benign" ], [ "8630", "1", " Androblastoma, NOS" ], [ "8630", "3", " Androblastoma, malignant" ], [ "8631", "0", " Sertoli-Leydig cell tumor, well differentiated" ], [ "8631", "1", " Sertoli-Leydig cell tumor of intermediate differentiation" ], [ "8631", "3", " Sertoli-Leydig cell tumor, poorly differentiated" ], [ "8632", "1", " Gynandroblastoma (C56.9)" ], [ "8633", "1", " Sertoli-Leydig cell tumor, retiform" ], [ "8634", "1", " Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements" ], [ "8634", "3", " Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements" ], [ "8640", "1", " Sertoli cell tumor, NOS" ], [ "8640", "3", " Sertoli cell carcinoma (C62._)" ], [ "8641", "0", " Sertoli cell tumor with lipid storage" ], [ "8642", "1", " Large cell calcifying Sertoli cell tumor" ], [ "8650", "0", " Leydig cell tumor, benign (C62._)" ], [ "8650", "1", " Leydig cell tumor, NOS (C62._)" ], [ "8650", "3", " Leydig cell tumor, malignant (C62._)" ], [ "8660", "0", " Hilus cell tumor (C56.9)" ], [ "8670", "0", " Lipid cell tumor of ovary (C56.9)" ], [ "8670", "3", " Steroid cell tumor, malignant" ], [ "8671", "0", " Adrenal rest tumor" ], [ "8680", "0", " Paraganglioma, benign" ], [ "8680", "1", " Paraganglioma, NOS" ], [ "8680", "3", " Paraganglioma, malignant" ], [ "8681", "1", " Sympathetic paraganglioma" ], [ "8682", "1", " Parasympathetic paraganglioma" ], [ "8683", "0", " Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", " Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", " Aortic body tumor (C75.5)" ], [ "8692", "1", " Carotid body tumor (C75.4)" ], [ "8693", "1", " Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", " Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", " Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", " Pheochromocytoma, malignant (C74.1)" ], [ "8720", "0", " Pigmented nevus, NOS (C44._)" ], [ "8720", "2", " Melanoma in situ" ], [ "8720", "3", " Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", " Nodular melanoma (C44._)" ], [ "8722", "0", " Balloon cell nevus (C44._)" ], [ "8722", "3", " Balloon cell melanoma (C44._)" ], [ "8723", "0", " Halo nevus (C44._)" ], [ "8723", "3", " Malignant melanoma, regressing (C44._)" ], [ "8725", "0", " Neuronevus (C44._)" ], [ "8726", "0", " Magnocellular nevus (C69.4)" ], [ "8727", "0", " Dysplastic nevus (C44._)" ], [ "8728", "0", " Diffuse melanocytosis (C70.9)" ], [ "8728", "1", " Meningeal melanocytoma (C70.9)" ], [ "8728", "3", " Meningeal melanomatosis (C70.9)" ], [ "8730", "0", " Nonpigmented nevus (C44._)" ], [ "8730", "3", " Amelanotic melanoma (C44._)" ], [ "8740", "0", " Junctional nevus, NOS (C44._)" ], [ "8740", "3", " Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", " Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", " Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", " Lentigo maligna (C44._)" ], [ "8742", "3", " Lentigo maligna melanoma (C44._)" ], [ "8743", "3", " Superficial spreading melanoma (C44._)" ], [ "8744", "3", " Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", " Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", " Mucosal lentiginous melanoma" ], [ "8750", "0", " Intradermal nevus (C44._)" ], [ "8760", "0", " Compound nevus (C44._)" ], [ "8761", "0", " Small congenital nevus (C44._)" ], [ "8761", "1", " Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", " Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", " Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", " Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", " Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", " Epithelioid cell nevus (C44._)" ], [ "8771", "3", " Epithelioid cell melanoma" ], [ "8772", "0", " Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", " Spindle cell melanoma, NOS" ], [ "8773", "3", " Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", " Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", " Blue nevus, NOS (C44._)" ], [ "8780", "3", " Blue nevus, malignant (C44._)" ], [ "8790", "0", " Cellular blue nevus (C44._)" ], [ "8930", "0", " Endometrial stromal nodule (C54.1)" ], [ "8930", "3", " Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", " Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", " Adenomyoma" ], [ "8933", "3", " Adenosarcoma" ], [ "8934", "3", " Carcinofibroma" ], [ "8935", "0", " Stromal tumor, benign" ], [ "8935", "1", " Stromal tumor, NOS" ], [ "8935", "3", " Stromal sarcoma, NOS" ], [ "8940", "0", " Pleomorphic adenoma" ], [ "8940", "3", " Mixed tumor, malignant, NOS" ], [ "8941", "3", " Carcinoma in pleomorphic adenoma (C07._, C08._)" ], [ "8950", "3", " Mullerian mixed tumor (C54._)" ], [ "8951", "3", " Mesodermal mixed tumor" ], [ "8959", "0", " Benign cystic nephroma (C64.9)" ], [ "8959", "1", " Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", " Malignant cystic nephroma (C64.9)" ], [ "8960", "1", " Mesoblastic nephroma" ], [ "8960", "3", " Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", " Malignant rhabdoid tumor" ], [ "8964", "3", " Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", " Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", " Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", " Ossifying renal tumor (C64.9)" ], [ "8970", "3", " Hepatoblastoma (C22.0)" ], [ "8971", "3", " Pancreatoblastoma (C25._)" ], [ "8972", "3", " Pulmonary blastoma (C34._)" ], [ "8973", "3", " Pleuropulmonary blastoma" ], [ "8974", "1", " Sialoblastoma" ], [ "8980", "3", " Carcinosarcoma, NOS" ], [ "8981", "3", " Carcinosarcoma, embryonal" ], [ "8982", "0", " Myoepithelioma" ], [ "8982", "3", " Malignant myoepithelioma" ], [ "8983", "0", " Adenomyoepithelioma (C50._)" ], [ "9000", "0", " Brenner tumor, NOS (C56.9)" ], [ "9000", "1", " Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", " Brenner tumor, malignant (C56.9)" ], [ "9010", "0", " Fibroadenoma, NOS (C50._)" ], [ "9011", "0", " Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", " Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", " Adenofibroma, NOS" ], [ "9014", "0", " Serous adenofibroma, NOS" ], [ "9014", "1", " Serous adenofibroma of borderline malignancy" ], [ "9014", "3", " Serous adenocarcinofibroma" ], [ "9015", "0", " Mucinous adenofibroma, NOS" ], [ "9015", "1", " Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", " Mucinous adenocarcinofibroma" ], [ "9016", "0", " Giant fibroadenoma (C50._)" ], [ "9020", "0", " Phyllodes tumor, benign (C50._)" ], [ "9020", "1", " Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", " Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", " Juvenile fibroadenoma (C50._)" ], [ "9050", "0", " Mesothelioma, benign" ], [ "9050", "3", " Mesothelioma, malignant" ], [ "9051", "0", " Fibrous mesothelioma, benign" ], [ "9051", "3", " Fibrous mesothelioma, malignant" ], [ "9052", "0", " Epithelioid mesothelioma, benign" ], [ "9052", "3", " Epithelioid mesothelioma, malignant" ], [ "9053", "3", " Mesothelioma, biphasic, malignant" ], [ "9054", "0", " Adenomatoid tumor, NOS" ], [ "9055", "0", " Multicystic mesothelioma, benign" ], [ "9055", "1", " Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", " Dysgerminoma" ], [ "9061", "3", " Seminoma, NOS (C62._)" ], [ "9062", "3", " Seminoma, anaplastic (C62._)" ], [ "9063", "3", " Spermatocytic seminoma (C62._)" ], [ "9064", "2", " Intratubular malignant germ cells (C62._)" ], [ "9064", "3", " Germinoma" ], [ "9065", "3", " Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", " Embryonal carcinoma, NOS" ], [ "9071", "3", " Yolk sac tumor" ], [ "9072", "3", " Polyembryoma" ], [ "9073", "1", " Gonadoblastoma" ], [ "9080", "0", " Teratoma, benign" ], [ "9080", "1", " Teratoma, NOS" ], [ "9080", "3", " Teratoma, malignant, NOS" ], [ "9081", "3", " Teratocarcinoma" ], [ "9082", "3", " Malignant teratoma, undifferentiated" ], [ "9083", "3", " Malignant teratoma, intermediate" ], [ "9084", "0", " Dermoid cyst, NOS" ], [ "9084", "3", " Teratoma with malignant transformation" ], [ "9085", "3", " Mixed germ cell tumor" ], [ "9090", "0", " Struma ovarii, NOS (C56.9)" ], [ "9090", "3", " Struma ovarii, malignant (C56.9)" ], [ "9091", "1", " Strumal carcinoid (C56.9)" ], [ "9100", "0", " Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", " Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", " Choriocarcinoma, NOS" ], [ "9101", "3", " Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", " Malignant teratoma, trophoblastic" ], [ "9103", "0", " Partial hydatidiform mole (C58.9)" ], [ "9104", "1", " Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", " Trophoblastic tumor, epithelioid" ], [ "9110", "0", " Mesonephroma, benign" ], [ "9110", "1", " Mesonephric tumor, NOS" ], [ "9110", "3", " Mesonephroma, malignant" ], [ "9140", "3", " Kaposi sarcoma" ], [ "9141", "0", " Angiokeratoma" ], [ "9142", "0", " Verrucous keratotic hemangioma" ], [ "9262", "0", " Ossifying fibroma" ], [ "9270", "0", " Odontogenic tumor, benign" ], [ "9270", "1", " Odontogenic tumor, NOS" ], [ "9270", "3", " Odontogenic tumor, malignant" ], [ "9271", "0", " Ameloblastic fibrodentinoma" ], [ "9272", "0", " Cementoma, NOS" ], [ "9273", "0", " Cementoblastoma, benign" ], [ "9274", "0", " Cementifying fibroma" ], [ "9275", "0", " Gigantiform cementoma" ], [ "9280", "0", " Odontoma, NOS" ], [ "9281", "0", " Compound odontoma" ], [ "9282", "0", " Complex odontoma" ], [ "9290", "0", " Ameloblastic fibro-odontoma" ], [ "9290", "3", " Ameloblastic odontosarcoma" ], [ "9300", "0", " Adenomatoid odontogenic tumor" ], [ "9301", "0", " Calcifying odontogenic cyst" ], [ "9302", "0", " Odontogenic ghost cell tumor" ], [ "9310", "0", " Ameloblastoma, NOS" ], [ "9310", "3", " Ameloblastoma, malignant" ], [ "9311", "0", " Odontoameloblastoma" ], [ "9312", "0", " Squamous odontogenic tumor" ], [ "9320", "0", " Odontogenic myxoma" ], [ "9321", "0", " Central odontogenic fibroma" ], [ "9322", "0", " Peripheral odontogenic fibroma" ], [ "9330", "0", " Ameloblastic fibroma" ], [ "9330", "3", " Ameloblastic fibrosarcoma" ], [ "9340", "0", " Calcifying epithelial odontogenic tumor" ], [ "9341", "1", " Clear cell odontogenic tumor" ], [ "9342", "3", " Odontogenic carcinosarcoma" ], [ "9350", "1", " Craniopharyngioma (C75.2)" ], [ "9351", "1", " Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", " Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", " Pinealoma (C75.3)" ], [ "9361", "1", " Pineocytoma (C75.3)" ], [ "9362", "3", " Pineoblastoma (C75.3)" ], [ "9363", "0", " Melanotic neuroectodermal tumor" ], [ "9364", "3", " Peripheral neuroectodermal tumor" ], [ "9365", "3", " Askin tumor" ], [ "9380", "3", " Glioma, malignant (C71._)" ], [ "9381", "3", " Gliomatosis cerebri (C71._)" ], [ "9382", "3", " Mixed glioma (C71._)" ], [ "9383", "1", " Subependymoma (C71._)" ], [ "9384", "1", " Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", " Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", " Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", " Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", " Ependymoma, NOS (C71._)" ], [ "9392", "3", " Ependymoma, anaplastic (C71._)" ], [ "9393", "3", " Papillary ependymoma (C71._)" ], [ "9394", "1", " Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", " Astrocytoma, NOS (C71._)" ], [ "9401", "3", " Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", " Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", " Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", " Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", " Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", " Fibrillary astrocytoma (C71._)" ], [ "9421", "1", " Pilocytic astrocytoma (C71._)" ], [ "9423", "3", " Polar spongioblastoma (C71._)" ], [ "9424", "3", " Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", " Astroblastoma (C71._)" ], [ "9440", "3", " Glioblastoma, NOS (C71._)" ], [ "9441", "3", " Giant cell glioblastoma (C71._)" ], [ "9442", "1", " Gliofibroma (C71._)" ], [ "9442", "3", " Gliosarcoma (C71._)" ], [ "9444", "1", " Chordoid glioma (C71._)" ], [ "9450", "3", " Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", " Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", " Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", " Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", " Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", " Medullomyoblastoma (C71.6)" ], [ "9474", "3", " Large cell medulloblastoma (C71.6)" ], [ "9480", "3", " Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", " Ganglioneuroma" ], [ "9490", "3", " Ganglioneuroblastoma" ], [ "9491", "0", " Ganglioneuromatosis" ], [ "9492", "0", " Gangliocytoma" ], [ "9493", "0", " Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", " Neuroblastoma, NOS" ], [ "9501", "0", " Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", " Medulloepithelioma, NOS" ], [ "9502", "0", " Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", " Teratoid medulloepithelioma" ], [ "9503", "3", " Neuroepithelioma, NOS" ], [ "9504", "3", " Spongioneuroblastoma" ], [ "9505", "1", " Ganglioglioma, NOS" ], [ "9505", "3", " Ganglioglioma, anaplastic" ], [ "9506", "1", " Central neurocytoma" ], [ "9507", "0", " Pacinian tumor" ], [ "9508", "3", " Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", " Retinocytoma (C69.2)" ], [ "9510", "3", " Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", " Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", " Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", " Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", " Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", " Olfactory neurogenic tumor" ], [ "9521", "3", " Olfactory neurocytoma (C30.0)" ], [ "9522", "3", " Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", " Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", " Meningioma, NOS" ], [ "9530", "1", " Meningiomatosis, NOS" ], [ "9530", "3", " Meningioma, malignant" ], [ "9531", "0", " Meningothelial meningioma" ], [ "9532", "0", " Fibrous meningioma" ], [ "9533", "0", " Psammomatous meningioma" ], [ "9534", "0", " Angiomatous meningioma" ], [ "9535", "0", " Hemangioblastic meningioma [obs]" ], [ "9537", "0", " Transitional meningioma" ], [ "9538", "1", " Clear cell meningioma" ], [ "9538", "3", " Papillary meningioma" ], [ "9539", "1", " Atypical meningioma" ], [ "9539", "3", " Meningeal sarcomatosis" ], [ "9590", "3", " Malignant lymphoma, NOS" ], [ "9591", "3", " Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", " Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", " Hodgkin lymphoma, NOS" ], [ "9651", "3", " Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", " Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", " Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", " Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", " Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", " Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", " Hodgkin granuloma [obs]" ], [ "9662", "3", " Hodgkin sarcoma [obs]" ], [ "9663", "3", " Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", " Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", " Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", " Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", " Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", " Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", " Mantle cell lymphoma" ], [ "9675", "3", " Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", " Primary effusion lymphoma" ], [ "9679", "3", " Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", " Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", " Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", " Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", " Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", " Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", " Follicular lymphoma, grade 2" ], [ "9695", "3", " Follicular lymphoma, grade 1" ], [ "9698", "3", " Follicular lymphoma, grade 3" ], [ "9699", "3", " Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", " Mycosis fungoides (C44._)" ], [ "9701", "3", " Sezary syndrome" ], [ "9702", "3", " Mature T-cell lymphoma, NOS" ], [ "9705", "3", " Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", " Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", " Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", " Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", " Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", " Intestinal T-cell lymphoma" ], [ "9718", "3", " Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", " NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", " Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", " Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", " Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", " Plasmacytoma, NOS" ], [ "9732", "3", " Multiple myeloma (C42.1)" ], [ "9733", "3", " Plasma cell leukemia (C42.1)" ], [ "9734", "3", " Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", " Mastocytoma, NOS" ], [ "9740", "3", " Mast cell sarcoma" ], [ "9741", "3", " Malignant mastocytosis" ], [ "9742", "3", " Mast cell leukemia (C42.1)" ], [ "9750", "3", " Malignant histiocytosis" ], [ "9751", "1", " Langerhans cell histiocytosis, NOS" ], [ "9752", "1", " Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", " Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", " Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", " Histiocytic sarcoma" ], [ "9756", "3", " Langerhans cell sarcoma" ], [ "9757", "3", " Interdigitating dendritic cell sarcoma" ], [ "9758", "3", " Follicular dendritic cell sarcoma" ], [ "9760", "3", " Immunoproliferative disease, NOS" ], [ "9761", "3", " Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", " Heavy chain disease, NOS" ], [ "9764", "3", " Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", " Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", " Angiocentric immunoproliferative lesion" ], [ "9767", "1", " Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", " T-gamma lymphoproliferative disease" ], [ "9769", "1", " Immunoglobulin deposition disease" ], [ "9800", "3", " Leukemia, NOS" ], [ "9801", "3", " Acute leukemia, NOS" ], [ "9805", "3", " Acute biphenotypic leukemia" ], [ "9820", "3", " Lymphoid leukemia, NOS" ], [ "9823", "3", " B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", " Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", " Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", " T-cell large granular lymphocytic leukemia" ], [ "9832", "3", " Prolymphocytic leukemia, NOS" ], [ "9833", "3", " Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", " Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", " Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", " Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", " Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", " Acute myeloid leukemia, M6 type" ], [ "9860", "3", " Myeloid leukemia, NOS" ], [ "9861", "3", " Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", " Chronic myeloid leukemia, NOS" ], [ "9866", "3", " Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", " Acute myelomonocytic leukemia" ], [ "9870", "3", " Acute basophilic leukemia" ], [ "9871", "3", " Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", " Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", " Acute myeloid leukemia without maturation" ], [ "9874", "3", " Acute myeloid leukemia with maturation" ], [ "9875", "3", " Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", " Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", " Acute monocytic leukemia" ], [ "9895", "3", " Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", " Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", " Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", " Acute megakaryoblastic leukemia" ], [ "9920", "3", " Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", " Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", " Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", " Hairy cell leukemia (C42.1)" ], [ "9945", "3", " Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", " Juvenile myelomonocytic leukemia" ], [ "9948", "3", " Aggressive NK-cell leukemia" ], [ "9950", "3", " Polycythemia vera" ], [ "9960", "3", " Chronic myeloproliferative disease, NOS" ], [ "9961", "3", " Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", " Essential thrombocythemia" ], [ "9963", "3", " Chronic neutrophilic leukemia" ], [ "9964", "3", " Hypereosinophilic syndrome" ], [ "9970", "1", " Lymphoproliferative disorder, NOS" ], [ "9975", "1", " Myeloproliferative disease, NOS" ], [ "9980", "3", " Refractory anemia" ], [ "9982", "3", " Refractory anemia with sideroblasts" ], [ "9983", "3", " Refractory anemia with excess blasts" ], [ "9984", "3", " Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", " Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", " Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", " Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", " Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppd.json
deleted file mode 100644
index 900d00605..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppd.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_ppd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. For these cases, displayed results will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:47.463Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9) " ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma " ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma " ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9670", "3", "Malignant lymphoma, small B lymphocytic, NOS (see also M-9823/3)" ], [ "9671", "3", "Malignant lymphoma, lymphoplasmacytic (see also M-9761/3)" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9727", "3", "Precursor cell lymphoblastic lymphoma, NOS (see also M-9835/3)" ], [ "9728", "3", "Precursor B-cell lymphoblastic lymphoma (see also M-9836/3)" ], [ "9729", "3", "Precursor T-cell lymphoblastic lymphoma (see also M-9837/3)" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppe.json
deleted file mode 100644
index 4d8d90cf2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_exclusions_ppe.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "ajcc6_exclusions_ppe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Exclusions",
- "title" : "Histology Exclusion Table AJCC 6th ed.",
- "notes" : "**Note**: Histology codes listed in this Histology Exclusion Table for this site are codes that are not TNM staged according to the AJCC 6th Edition Cancer Staging Manual. When a case is coded in Collaborative Staging and the histology is on the exclusion list, TNM will not be calculated but SEER algorithm Summary Stage 1977 and 2000 can be assigned. Displayed results of a non-TNM staged site will be \"T NA N NA M NA and Stage Group NA\".",
- "last_modified" : "2015-05-27T16:18:47.543Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "DESCRIPTION"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "8013", "3", "Large cell neuroendocrine carcinoma" ], [ "8041", "3", "Small cell carcinoma, NOS" ], [ "8240", "1", "Carcinoid tumor of uncertain malignant potential" ], [ "8240", "3", "Carcinoid tumor, NOS (except of appendix M-8240/1)" ], [ "8241", "3", "Enterochromaffin cell carcinoid" ], [ "8242", "1", "Enterochromaffin-like cell carcinoid, NOS" ], [ "8242", "3", "Enterochromaffin-like cell tumor, malignant" ], [ "8243", "3", "Goblet cell carcinoid" ], [ "8244", "3", "Composite carcinoid" ], [ "8245", "1", "Tubular carcinoid" ], [ "8245", "3", "Adenocarcinoid tumor" ], [ "8246", "3", "Neuroendocrine carcinoma, NOS" ], [ "8247", "3", "Merkel cell carcinoma (C44._)" ], [ "8248", "1", "Apudoma" ], [ "8249", "3", "Atypical carcinoid tumor" ], [ "8574", "3", "Adenocarcinoma with neuroendocrine differentiation" ], [ "8680", "0", "Paraganglioma, benign" ], [ "8680", "1", "Paraganglioma, NOS" ], [ "8680", "3", "Paraganglioma, malignant" ], [ "8681", "1", "Sympathetic paraganglioma" ], [ "8682", "1", "Parasympathetic paraganglioma" ], [ "8683", "0", "Gangliocytic paraganglioma (C17.0)" ], [ "8690", "1", "Glomus jugulare tumor, NOS (C75.5)" ], [ "8691", "1", "Aortic body tumor (C75.5)" ], [ "8692", "1", "Carotid body tumor (C75.4)" ], [ "8693", "1", "Extra-adrenal paraganglioma, NOS" ], [ "8693", "3", "Extra-adrenal paraganglioma, malignant" ], [ "8700", "0", "Pheochromocytoma, NOS (C74.1)" ], [ "8700", "3", "Pheochromocytoma, malignant (C74.1)" ], [ "8710", "3", "Glomangiosarcoma" ], [ "8711", "0", "Glomus tumor, NOS" ], [ "8711", "3", "Glomus tumor, malignant" ], [ "8712", "0", "Glomangioma" ], [ "8713", "0", "Glomangiomyoma" ], [ "8720", "0", "Pigmented nevus, NOS (C44._)" ], [ "8720", "2", "Melanoma in situ" ], [ "8720", "3", "Malignant melanoma, NOS (except juvenile melanoma M-8770/0)" ], [ "8721", "3", "Nodular melanoma (C44._)" ], [ "8722", "0", "Balloon cell nevus (C44._)" ], [ "8722", "3", "Balloon cell melanoma (C44._)" ], [ "8723", "0", "Halo nevus (C44._)" ], [ "8723", "3", "Malignant melanoma, regressing (C44._)" ], [ "8725", "0", "Neuronevus (C44._)" ], [ "8726", "0", "Magnocellular nevus (C69.4)" ], [ "8727", "0", "Dysplastic nevus (C44._)" ], [ "8728", "0", "Diffuse melanocytosis (C70.9)" ], [ "8728", "1", "Meningeal melanocytoma (C70.9)" ], [ "8728", "3", "Meningeal melanomatosis (C70.9)" ], [ "8730", "0", "Nonpigmented nevus (C44._)" ], [ "8730", "3", "Amelanotic melanoma (C44._)" ], [ "8740", "0", "Junctional nevus, NOS (C44._)" ], [ "8740", "3", "Malignant melanoma in junctional nevus (C44._)" ], [ "8741", "2", "Precancerous melanosis, NOS (C44._)" ], [ "8741", "3", "Malignant melanoma in precancerous melanosis (C44._)" ], [ "8742", "2", "Lentigo maligna (C44._)" ], [ "8742", "3", "Lentigo maligna melanoma (C44._)" ], [ "8743", "3", "Superficial spreading melanoma (C44._)" ], [ "8744", "3", "Acral lentiginous melanoma, malignant (C44._)" ], [ "8745", "3", "Desmoplastic melanoma, malignant (C44._)" ], [ "8746", "3", "Mucosal lentiginous melanoma" ], [ "8750", "0", "Intradermal nevus (C44._)" ], [ "8760", "0", "Compound nevus (C44._)" ], [ "8761", "0", "Small congenital nevus (C44._)" ], [ "8761", "1", "Giant pigmented nevus, NOS (C44._)" ], [ "8761", "3", "Malignant melanoma in giant pigmented nevus (C44._)" ], [ "8762", "1", "Proliferative dermal lesion in congenital nevus (C44._)" ], [ "8770", "0", "Epithelioid and spindle cell nevus (C44._)" ], [ "8770", "3", "Mixed epithelioid and spindle cell melanoma" ], [ "8771", "0", "Epithelioid cell nevus (C44._)" ], [ "8771", "3", "Epithelioid cell melanoma" ], [ "8772", "0", "Spindle cell nevus, NOS (C44._)" ], [ "8772", "3", "Spindle cell melanoma, NOS" ], [ "8773", "3", "Spindle cell melanoma, type A (C69._)" ], [ "8774", "3", "Spindle cell melanoma, type B (C69._)" ], [ "8780", "0", "Blue nevus, NOS (C44._)" ], [ "8780", "3", "Blue nevus, malignant (C44._)" ], [ "8790", "0", "Cellular blue nevus (C44._)" ], [ "8800", "0", "Soft tissue tumor, benign" ], [ "8800", "3", "Sarcoma, NOS" ], [ "8800", "9", "Sarcomatosis, NOS" ], [ "8801", "3", "Spindle cell sarcoma" ], [ "8802", "3", "Giant cell sarcoma (except of bone M-9250/3)" ], [ "8803", "3", "Small cell sarcoma" ], [ "8804", "3", "Epithelioid sarcoma" ], [ "8805", "3", "Undifferentiated sarcoma" ], [ "8806", "3", "Desmoplastic small round cell tumor" ], [ "8810", "0", "Fibroma, NOS" ], [ "8810", "1", "Cellular fibroma (C56.9)" ], [ "8810", "3", "Fibrosarcoma, NOS" ], [ "8811", "0", "Fibromyxoma" ], [ "8811", "3", "Fibromyxosarcoma" ], [ "8812", "0", "Periosteal fibroma (C40._, C41._)" ], [ "8812", "3", "Periosteal fibrosarcoma (C40._, C41._)" ], [ "8813", "0", "Fascial fibroma" ], [ "8813", "3", "Fascial fibrosarcoma" ], [ "8814", "3", "Infantile fibrosarcoma" ], [ "8815", "0", "Solitary fibrous tumor" ], [ "8815", "3", "Solitary fibrous tumor, malignant" ], [ "8820", "0", "Elastofibroma" ], [ "8821", "1", "Aggressive fibromatosis" ], [ "8822", "1", "Abdominal fibromatosis" ], [ "8823", "0", "Desmoplastic fibroma" ], [ "8824", "0", "Myofibroma" ], [ "8824", "1", "Myofibromatosis" ], [ "8825", "0", "Myofibroblastoma" ], [ "8825", "1", "Myofibroblastic tumor, NOS" ], [ "8826", "0", "Angiomyofibroblastoma" ], [ "8827", "1", "Myofibroblastic tumor, peribronchial (C34._)" ], [ "8830", "0", "Benign fibrous histiocytoma" ], [ "8830", "1", "Atypical fibrous histiocytoma" ], [ "8830", "3", "Malignant fibrous histiocytoma" ], [ "8831", "0", "Histiocytoma, NOS" ], [ "8832", "0", "Dermatofibroma, NOS (C44._)" ], [ "8832", "3", "Dermatofibrosarcoma, NOS (C44._)" ], [ "8833", "3", "Pigmented dermatofibrosarcoma protuberans (C44._)" ], [ "8834", "1", "Giant cell fibroblastoma" ], [ "8835", "1", "Plexiform fibrohistiocytic tumor" ], [ "8836", "1", "Angiomatoid fibrous histiocytoma" ], [ "8840", "0", "Myxoma, NOS" ], [ "8840", "3", "Myxosarcoma" ], [ "8841", "1", "Angiomyxoma" ], [ "8842", "0", "Ossifying fibromyxoid tumor" ], [ "8850", "0", "Lipoma, NOS" ], [ "8850", "1", "Atypical lipoma" ], [ "8850", "3", "Liposarcoma, NOS" ], [ "8851", "0", "Fibrolipoma" ], [ "8851", "3", "Liposarcoma, well differentiated" ], [ "8852", "0", "Fibromyxolipoma" ], [ "8852", "3", "Myxoid liposarcoma" ], [ "8853", "3", "Round cell liposarcoma" ], [ "8854", "0", "Pleomorphic lipoma" ], [ "8854", "3", "Pleomorphic liposarcoma" ], [ "8855", "3", "Mixed liposarcoma" ], [ "8856", "0", "Intramuscular lipoma" ], [ "8857", "0", "Spindle cell lipoma" ], [ "8857", "3", "Fibroblastic liposarcoma" ], [ "8858", "3", "Dedifferentiated liposarcoma" ], [ "8860", "0", "Angiomyolipoma" ], [ "8861", "0", "Angiolipoma, NOS" ], [ "8862", "0", "Chondroid lipoma" ], [ "8870", "0", "Myelolipoma" ], [ "8880", "0", "Hibernoma" ], [ "8881", "0", "Lipoblastomatosis" ], [ "8890", "0", "Leiomyoma, NOS" ], [ "8890", "1", "Leiomyomatosis, NOS" ], [ "8890", "3", "Leiomyosarcoma, NOS" ], [ "8891", "0", "Epithelioid leiomyoma" ], [ "8891", "3", "Epithelioid leiomyosarcoma" ], [ "8892", "0", "Cellular leiomyoma" ], [ "8893", "0", "Bizarre leiomyoma" ], [ "8894", "0", "Angiomyoma" ], [ "8894", "3", "Angiomyosarcoma" ], [ "8895", "0", "Myoma" ], [ "8895", "3", "Myosarcoma" ], [ "8896", "3", "Myxoid leiomyosarcoma" ], [ "8897", "1", "Smooth muscle tumor of uncertain malignant potential" ], [ "8898", "1", "Metastasizing leiomyoma" ], [ "8900", "0", "Rhabdomyoma, NOS" ], [ "8900", "3", "Rhabdomyosarcoma, NOS" ], [ "8901", "3", "Pleomorphic rhabdomyosarcoma, adult type" ], [ "8902", "3", "Mixed type rhabdomyosarcoma" ], [ "8903", "0", "Fetal rhabdomyoma" ], [ "8904", "0", "Adult rhabdomyoma" ], [ "8905", "0", "Genital rhabdomyoma (C51._, C52.9)" ], [ "8910", "3", "Embryonal rhabdomyosarcoma, NOS" ], [ "8912", "3", "Spindle cell rhabdomyosarcoma" ], [ "8920", "3", "Alveolar rhabdomyosarcoma" ], [ "8921", "3", "Rhabdomyosarcoma with ganglionic differentiation" ], [ "8930", "0", "Endometrial stromal nodule (C54.1)" ], [ "8930", "3", "Endometrial stromal sarcoma, NOS (C54.1)" ], [ "8931", "3", "Endometrial stromal sarcoma, low grade (C54.1)" ], [ "8932", "0", "Adenomyoma" ], [ "8933", "3", "Adenosarcoma" ], [ "8934", "3", "Carcinofibroma" ], [ "8935", "0", "Stromal tumor, benign" ], [ "8935", "1", "Stromal tumor, NOS" ], [ "8935", "3", "Stromal sarcoma, NOS" ], [ "8936", "0", "Gastrointestinal stromal tumor, benign" ], [ "8936", "1", "Gastrointestinal stromal tumor, NOS" ], [ "8936", "3", "Gastrointestinal stromal sarcoma" ], [ "8950", "3", "Mullerian mixed tumor (C54._)" ], [ "8951", "3", "Mesodermal mixed tumor" ], [ "8959", "0", "Benign cystic nephroma (C64.9)" ], [ "8959", "1", "Cystic partially differentiated nephroblastoma (C64.9)" ], [ "8959", "3", "Malignant cystic nephroma (C64.9)" ], [ "8960", "1", "Mesoblastic nephroma" ], [ "8960", "3", "Nephroblastoma, NOS (C64.9)" ], [ "8963", "3", "Malignant rhabdoid tumor" ], [ "8964", "3", "Clear cell sarcoma of kidney (C64.9)" ], [ "8965", "0", "Nephrogenic adenofibroma (C64.9)" ], [ "8966", "0", "Renomedullary interstitial cell tumor (C64.9)" ], [ "8967", "0", "Ossifying renal tumor (C64.9)" ], [ "8970", "3", "Hepatoblastoma (C22.0)" ], [ "8971", "3", "Pancreatoblastoma (C25._)" ], [ "8972", "3", "Pulmonary blastoma (C34._)" ], [ "8973", "3", "Pleuropulmonary blastoma" ], [ "8974", "1", "Sialoblastoma" ], [ "8980", "3", "Carcinosarcoma, NOS" ], [ "8981", "3", "Carcinosarcoma, embryonal" ], [ "8982", "0", "Myoepithelioma" ], [ "8982", "3", "Malignant myoepithelioma" ], [ "8983", "0", "Adenomyoepithelioma (C50._)" ], [ "8990", "0", "Mesenchymoma, benign" ], [ "8990", "1", "Mesenchymoma, NOS" ], [ "8990", "3", "Mesenchymoma, malignant" ], [ "8991", "3", "Embryonal sarcoma" ], [ "9000", "0", "Brenner tumor, NOS (C56.9)" ], [ "9000", "1", "Brenner tumor, borderline malignancy (C56.9)" ], [ "9000", "3", "Brenner tumor, malignant (C56.9)" ], [ "9010", "0", "Fibroadenoma, NOS (C50._)" ], [ "9011", "0", "Intracanalicular fibroadenoma (C50._)" ], [ "9012", "0", "Pericanalicular fibroadenoma (C50._)" ], [ "9013", "0", "Adenofibroma, NOS" ], [ "9014", "0", "Serous adenofibroma, NOS" ], [ "9014", "1", "Serous adenofibroma of borderline malignancy" ], [ "9014", "3", "Serous adenocarcinofibroma" ], [ "9015", "0", "Mucinous adenofibroma, NOS" ], [ "9015", "1", "Mucinous adenofibroma of borderline malignancy" ], [ "9015", "3", "Mucinous adenocarcinofibroma" ], [ "9016", "0", "Giant fibroadenoma (C50._)" ], [ "9020", "0", "Phyllodes tumor, benign (C50._)" ], [ "9020", "1", "Phyllodes tumor, borderline (C50._)" ], [ "9020", "3", "Phyllodes tumor, malignant (C50._)" ], [ "9030", "0", "Juvenile fibroadenoma (C50._)" ], [ "9040", "0", "Synovioma, benign" ], [ "9040", "3", "Synovial sarcoma, NOS" ], [ "9041", "3", "Synovial sarcoma, spindle cell" ], [ "9042", "3", "Synovial sarcoma, epithelioid cell" ], [ "9043", "3", "Synovial sarcoma, biphasic" ], [ "9044", "3", "Clear cell sarcoma, NOS (except of kidney M-8964/3)" ], [ "9050", "0", "Mesothelioma, benign" ], [ "9050", "3", "Mesothelioma, malignant" ], [ "9051", "0", "Fibrous mesothelioma, benign" ], [ "9051", "3", "Fibrous mesothelioma, malignant" ], [ "9052", "0", "Epithelioid mesothelioma, benign" ], [ "9052", "3", "Epithelioid mesothelioma, malignant" ], [ "9053", "3", "Mesothelioma, biphasic, malignant" ], [ "9054", "0", "Adenomatoid tumor, NOS" ], [ "9055", "0", "Multicystic mesothelioma, benign" ], [ "9055", "1", "Cystic mesothelioma, NOS (C48._)" ], [ "9060", "3", "Dysgerminoma" ], [ "9061", "3", "Seminoma, NOS (C62._)" ], [ "9062", "3", "Seminoma, anaplastic (C62._)" ], [ "9063", "3", "Spermatocytic seminoma (C62._)" ], [ "9064", "2", "Intratubular malignant germ cells (C62._)" ], [ "9064", "3", "Germinoma" ], [ "9065", "3", "Germ cell tumor, nonseminomatous (C62._)" ], [ "9070", "3", "Embryonal carcinoma, NOS" ], [ "9071", "3", "Yolk sac tumor" ], [ "9072", "3", "Polyembryoma" ], [ "9073", "1", "Gonadoblastoma" ], [ "9080", "0", "Teratoma, benign" ], [ "9080", "1", "Teratoma, NOS" ], [ "9080", "3", "Teratoma, malignant, NOS" ], [ "9081", "3", "Teratocarcinoma" ], [ "9082", "3", "Malignant teratoma, undifferentiated" ], [ "9083", "3", "Malignant teratoma, intermediate" ], [ "9084", "0", "Dermoid cyst, NOS" ], [ "9084", "3", "Teratoma with malignant transformation" ], [ "9085", "3", "Mixed germ cell tumor" ], [ "9090", "0", "Struma ovarii, NOS (C56.9)" ], [ "9090", "3", "Struma ovarii, malignant (C56.9)" ], [ "9091", "1", "Strumal carcinoid (C56.9)" ], [ "9100", "0", "Hydatidiform mole, NOS (C58.9)" ], [ "9100", "1", "Invasive hydatidiform mole (C58.9)" ], [ "9100", "3", "Choriocarcinoma, NOS" ], [ "9101", "3", "Choriocarcinoma combined with other germ cell elements" ], [ "9102", "3", "Malignant teratoma, trophoblastic" ], [ "9103", "0", "Partial hydatidiform mole (C58.9)" ], [ "9104", "1", "Placental site trophoblastic tumor (C58.9)" ], [ "9105", "3", "Trophoblastic tumor, epithelioid" ], [ "9110", "0", "Mesonephroma, benign" ], [ "9110", "1", "Mesonephric tumor, NOS" ], [ "9110", "3", "Mesonephroma, malignant" ], [ "9120", "0", "Hemangioma, NOS" ], [ "9120", "3", "Hemangiosarcoma" ], [ "9121", "0", "Cavernous hemangioma" ], [ "9122", "0", "Venous hemangioma" ], [ "9123", "0", "Racemose hemangioma" ], [ "9124", "3", "Kupffer cell sarcoma (C22.0)" ], [ "9125", "0", "Epithelioid hemangioma" ], [ "9130", "0", "Hemangioendothelioma, benign" ], [ "9130", "1", "Hemangioendothelioma, NOS" ], [ "9130", "3", "Hemangioendothelioma, malignant" ], [ "9131", "0", "Capillary hemangioma" ], [ "9132", "0", "Intramuscular hemangioma" ], [ "9133", "1", "Epithelioid hemangioendothelioma, NOS" ], [ "9133", "3", "Epithelioid hemangioendothelioma, malignant" ], [ "9135", "1", "Endovascular papillary angioendothelioma" ], [ "9136", "1", "Spindle cell hemangioendothelioma" ], [ "9140", "3", "Kaposi sarcoma" ], [ "9141", "0", "Angiokeratoma" ], [ "9142", "0", "Verrucous keratotic hemangioma" ], [ "9150", "0", "Hemangiopericytoma, benign" ], [ "9150", "1", "Hemangiopericytoma, NOS" ], [ "9150", "3", "Hemangiopericytoma, malignant" ], [ "9160", "0", "Angiofibroma, NOS" ], [ "9161", "0", "Acquired tufted hemangioma" ], [ "9161", "1", "Hemangioblastoma" ], [ "9170", "0", "Lymphangioma, NOS" ], [ "9170", "3", "Lymphangiosarcoma" ], [ "9171", "0", "Capillary lymphangioma" ], [ "9172", "0", "Cavernous lymphangioma" ], [ "9173", "0", "Cystic lymphangioma" ], [ "9174", "0", "Lymphangiomyoma" ], [ "9174", "1", "Lymphangiomyomatosis" ], [ "9175", "0", "Hemolymphangioma" ], [ "9180", "0", "Osteoma, NOS (C40._, C41._)" ], [ "9180", "3", "Osteosarcoma, NOS (C40._, C41._)" ], [ "9181", "3", "Chondroblastic osteosarcoma (C40._, C41._)" ], [ "9182", "3", "Fibroblastic osteosarcoma (C40._, C41._)" ], [ "9183", "3", "Telangiectatic osteosarcoma (C40._, C41._)" ], [ "9184", "3", "Osteosarcoma in Paget disease of bone (C40._, C41._)" ], [ "9185", "3", "Small cell osteosarcoma (C40._, C41._)" ], [ "9186", "3", "Central osteosarcoma (C40._, C41._)" ], [ "9187", "3", "Intraosseous well differentiated osteosarcoma (C40._, C41._)" ], [ "9191", "0", "Osteoid osteoma, NOS (C40._, C41._)" ], [ "9192", "3", "Parosteal osteosarcoma (C40._, C41._)" ], [ "9193", "3", "Periosteal osteosarcoma (C40._, C41._)" ], [ "9194", "3", "High grade surface osteosarcoma (C40._, C41._)" ], [ "9195", "3", "Intracortical osteosarcoma (C40._, C41._)" ], [ "9200", "0", "Osteoblastoma, NOS (C40._, C41._)" ], [ "9200", "1", "Aggressive osteoblastoma (C40._, C41._)" ], [ "9210", "0", "Osteochondroma (C40._, C41._)" ], [ "9210", "1", "Osteochondromatosis, NOS (C40._, C41._)" ], [ "9220", "0", "Chondroma, NOS (C40._, C41._)" ], [ "9220", "1", "Chondromatosis, NOS" ], [ "9220", "3", "Chondrosarcoma, NOS (C40._, C41._)" ], [ "9221", "0", "Juxtacortical chondroma (C40._, C41._)" ], [ "9221", "3", "Juxtacortical chondrosarcoma (C40._, C41._)" ], [ "9230", "0", "Chondroblastoma, NOS (C40._, C41._)" ], [ "9230", "3", "Chondroblastoma, malignant (C40._, C41._)" ], [ "9231", "3", "Myxoid chondrosarcoma" ], [ "9240", "3", "Mesenchymal chondrosarcoma" ], [ "9241", "0", "Chondromyxoid fibroma (C40._, C41._)" ], [ "9242", "3", "Clear cell chondrosarcoma (C40._, C41._)" ], [ "9243", "3", "Dedifferentiated chondrosarcoma (C40._, C41._)" ], [ "9250", "1", "Giant cell tumor of bone, NOS (C40._, C41._)" ], [ "9250", "3", "Giant cell tumor of bone, malignant (C40._, C41._)" ], [ "9251", "1", "Giant cell tumor of soft parts, NOS" ], [ "9251", "3", "Malignant giant cell tumor of soft parts" ], [ "9252", "0", "Tenosynovial giant cell tumor (C49._)" ], [ "9252", "3", "Malignant tenosynovial giant cell tumor (C49._)" ], [ "9260", "3", "Ewing sarcoma" ], [ "9261", "3", "Adamantinoma of long bones (C40._)" ], [ "9262", "0", "Ossifying fibroma" ], [ "9270", "0", "Odontogenic tumor, benign" ], [ "9270", "1", "Odontogenic tumor, NOS" ], [ "9270", "3", "Odontogenic tumor, malignant" ], [ "9271", "0", "Ameloblastic fibrodentinoma" ], [ "9272", "0", "Cementoma, NOS" ], [ "9273", "0", "Cementoblastoma, benign" ], [ "9274", "0", "Cementifying fibroma" ], [ "9275", "0", "Gigantiform cementoma" ], [ "9280", "0", "Odontoma, NOS" ], [ "9281", "0", "Compound odontoma" ], [ "9282", "0", "Complex odontoma" ], [ "9290", "0", "Ameloblastic fibro-odontoma" ], [ "9290", "3", "Ameloblastic odontosarcoma" ], [ "9300", "0", "Adenomatoid odontogenic tumor" ], [ "9301", "0", "Calcifying odontogenic cyst" ], [ "9302", "0", "Odontogenic ghost cell tumor" ], [ "9310", "0", "Ameloblastoma, NOS" ], [ "9310", "3", "Ameloblastoma, malignant" ], [ "9311", "0", "Odontoameloblastoma" ], [ "9312", "0", "Squamous odontogenic tumor" ], [ "9320", "0", "Odontogenic myxoma" ], [ "9321", "0", "Central odontogenic fibroma" ], [ "9322", "0", "Peripheral odontogenic fibroma" ], [ "9330", "0", "Ameloblastic fibroma" ], [ "9330", "3", "Ameloblastic fibrosarcoma" ], [ "9340", "0", "Calcifying epithelial odontogenic tumor" ], [ "9341", "1", "Clear cell odontogenic tumor" ], [ "9342", "3", "Odontogenic carcinosarcoma" ], [ "9350", "1", "Craniopharyngioma (C75.2)" ], [ "9351", "1", "Craniopharyngioma, adamantinomatous (C75.2)" ], [ "9352", "1", "Craniopharyngioma, papillary (C75.2)" ], [ "9360", "1", "Pinealoma (C75.3)" ], [ "9361", "1", "Pineocytoma (C75.3)" ], [ "9362", "3", "Pineoblastoma (C75.3)" ], [ "9363", "0", "Melanotic neuroectodermal tumor" ], [ "9364", "3", "Peripheral neuroectodermal tumor" ], [ "9365", "3", "Askin tumor" ], [ "9370", "3", "Chordoma, NOS" ], [ "9371", "3", "Chondroid chordoma" ], [ "9372", "3", "Dedifferentiated chordoma" ], [ "9373", "0", "Parachordoma" ], [ "9380", "3", "Glioma, malignant (C71._)" ], [ "9381", "3", "Gliomatosis cerebri (C71._)" ], [ "9382", "3", "Mixed glioma (C71._)" ], [ "9383", "1", "Subependymoma (C71._)" ], [ "9384", "1", "Subependymal giant cell astrocytoma (C71._)" ], [ "9390", "0", "Choroid plexus papilloma, NOS (C71.5)" ], [ "9390", "1", "Atypical choroid plexus papilloma (C71.5)" ], [ "9390", "3", "Choroid plexus carcinoma (C71.5)" ], [ "9391", "3", "Ependymoma, NOS (C71._)" ], [ "9392", "3", "Ependymoma, anaplastic (C71._)" ], [ "9393", "3", "Papillary ependymoma (C71._)" ], [ "9394", "1", "Myxopapillary ependymoma (C72.0)" ], [ "9400", "3", "Astrocytoma, NOS (C71._)" ], [ "9401", "3", "Astrocytoma, anaplastic (C71._)" ], [ "9410", "3", "Protoplasmic astrocytoma (C71._)" ], [ "9411", "3", "Gemistocytic astrocytoma (C71._)" ], [ "9412", "1", "Desmoplastic infantile astrocytoma (C71._)" ], [ "9413", "0", "Dysembryoplastic neuroepithelial tumor" ], [ "9420", "3", "Fibrillary astrocytoma (C71._)" ], [ "9421", "1", "Pilocytic astrocytoma (C71._)" ], [ "9423", "3", "Polar spongioblastoma (C71._)" ], [ "9424", "3", "Pleomorphic xanthoastrocytoma (C71._)" ], [ "9430", "3", "Astroblastoma (C71._)" ], [ "9440", "3", "Glioblastoma, NOS (C71._)" ], [ "9441", "3", "Giant cell glioblastoma (C71._)" ], [ "9442", "1", "Gliofibroma (C71._)" ], [ "9442", "3", "Gliosarcoma (C71._)" ], [ "9444", "1", "Chordoid glioma (C71._)" ], [ "9450", "3", "Oligodendroglioma, NOS (C71._)" ], [ "9451", "3", "Oligodendroglioma, anaplastic (C71._)" ], [ "9460", "3", "Oligodendroblastoma (C71._) [obs]" ], [ "9470", "3", "Medulloblastoma, NOS (C71.6)" ], [ "9471", "3", "Desmoplastic nodular medulloblastoma (C71.6)" ], [ "9472", "3", "Medullomyoblastoma (C71.6)" ], [ "9473", "3", "Primitive neuroectodermal tumor, NOS" ], [ "9474", "3", "Large cell medulloblastoma (C71.6)" ], [ "9480", "3", "Cerebellar sarcoma, NOS (C71.6) [obs]" ], [ "9490", "0", "Ganglioneuroma" ], [ "9490", "3", "Ganglioneuroblastoma" ], [ "9491", "0", "Ganglioneuromatosis" ], [ "9492", "0", "Gangliocytoma" ], [ "9493", "0", "Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) (C71.6)" ], [ "9500", "3", "Neuroblastoma, NOS" ], [ "9501", "0", "Medulloepithelioma, benign (C69.4)" ], [ "9501", "3", "Medulloepithelioma, NOS" ], [ "9502", "0", "Teratoid medulloepithelioma, benign (C69.4)" ], [ "9502", "3", "Teratoid medulloepithelioma" ], [ "9503", "3", "Neuroepithelioma, NOS" ], [ "9504", "3", "Spongioneuroblastoma" ], [ "9505", "1", "Ganglioglioma, NOS" ], [ "9505", "3", "Ganglioglioma, anaplastic" ], [ "9506", "1", "Central neurocytoma" ], [ "9507", "0", "Pacinian tumor" ], [ "9508", "3", "Atypical teratoid/rhabdoid tumor (C71._)" ], [ "9510", "0", "Retinocytoma (C69.2)" ], [ "9510", "3", "Retinoblastoma, NOS (C69.2)" ], [ "9511", "3", "Retinoblastoma, differentiated (C69.2)" ], [ "9512", "3", "Retinoblastoma, undifferentiated (C69.2)" ], [ "9513", "3", "Retinoblastoma, diffuse (C69.2)" ], [ "9514", "1", "Retinoblastoma, spontaneously regressed (C69.2)" ], [ "9520", "3", "Olfactory neurogenic tumor" ], [ "9521", "3", "Olfactory neurocytoma (C30.0)" ], [ "9522", "3", "Olfactory neuroblastoma (C30.0)" ], [ "9523", "3", "Olfactory neuroepithelioma (C30.0)" ], [ "9530", "0", "Meningioma, NOS" ], [ "9530", "1", "Meningiomatosis, NOS" ], [ "9530", "3", "Meningioma, malignant" ], [ "9531", "0", "Meningothelial meningioma" ], [ "9532", "0", "Fibrous meningioma" ], [ "9533", "0", "Psammomatous meningioma" ], [ "9534", "0", "Angiomatous meningioma" ], [ "9535", "0", "Hemangioblastic meningioma [obs]" ], [ "9537", "0", "Transitional meningioma" ], [ "9538", "1", "Clear cell meningioma" ], [ "9538", "3", "Papillary meningioma" ], [ "9539", "1", "Atypical meningioma" ], [ "9539", "3", "Meningeal sarcomatosis" ], [ "9540", "0", "Neurofibroma, NOS" ], [ "9540", "1", "Neurofibromatosis, NOS" ], [ "9540", "3", "Malignant peripheral nerve sheath tumor" ], [ "9541", "0", "Melanotic neurofibroma" ], [ "9550", "0", "Plexiform neurofibroma" ], [ "9560", "0", "Neurilemoma, NOS" ], [ "9560", "1", "Neurinomatosis" ], [ "9560", "3", "Neurilemoma, malignant [obs]" ], [ "9561", "3", "Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation" ], [ "9562", "0", "Neurothekeoma" ], [ "9570", "0", "Neuroma, NOS" ], [ "9571", "0", "Perineurioma, NOS" ], [ "9571", "3", "Perineurioma, malignant" ], [ "9580", "0", "Granular cell tumor, NOS" ], [ "9580", "3", "Granular cell tumor, malignant" ], [ "9581", "3", "Alveolar soft part sarcoma" ], [ "9582", "0", "Granular cell tumor of the sellar region (C75.1)" ], [ "9590", "3", "Malignant lymphoma, NOS" ], [ "9591", "3", "Malignant lymphoma, non-Hodgkin, NOS" ], [ "9596", "3", "Composite Hodgkin and non-Hodgkin lymphoma" ], [ "9650", "3", "Hodgkin lymphoma, NOS" ], [ "9651", "3", "Hodgkin lymphoma, lymphocyte-rich" ], [ "9652", "3", "Hodgkin lymphoma, mixed cellularity, NOS" ], [ "9653", "3", "Hodgkin lymphoma, lymphocyte depletion, NOS" ], [ "9654", "3", "Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis" ], [ "9655", "3", "Hodgkin lymphoma, lymphocyte depletion, reticular" ], [ "9659", "3", "Hodgkin lymphoma, nodular lymphocyte predominance" ], [ "9661", "3", "Hodgkin granuloma [obs]" ], [ "9662", "3", "Hodgkin sarcoma [obs]" ], [ "9663", "3", "Hodgkin lymphoma, nodular sclerosis, NOS" ], [ "9664", "3", "Hodgkin lymphoma, nodular sclerosis, cellular phase" ], [ "9665", "3", "Hodgkin lymphoma, nodular sclerosis, grade 1" ], [ "9667", "3", "Hodgkin lymphoma, nodular sclerosis, grade 2" ], [ "9673", "3", "Mantle cell lymphoma" ], [ "9675", "3", "Malignant lymphoma, mixed small and large cell, diffuse [obs] (see also M-9690/3)" ], [ "9678", "3", "Primary effusion lymphoma" ], [ "9679", "3", "Mediastinal large B-cell lymphoma (C38.3)" ], [ "9680", "3", "Malignant lymphoma, large B-cell, diffuse, NOS" ], [ "9684", "3", "Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS" ], [ "9687", "3", "Burkitt lymphoma, NOS (see also M-9826/3)" ], [ "9689", "3", "Splenic marginal zone B-cell lymphoma (C42.2)" ], [ "9690", "3", "Follicular lymphoma, NOS (see also M-9675/3)" ], [ "9691", "3", "Follicular lymphoma, grade 2" ], [ "9695", "3", "Follicular lymphoma, grade 1" ], [ "9698", "3", "Follicular lymphoma, grade 3" ], [ "9699", "3", "Marginal zone B-cell lymphoma, NOS" ], [ "9700", "3", "Mycosis fungoides (C44._)" ], [ "9701", "3", "Sezary syndrome" ], [ "9702", "3", "Mature T-cell lymphoma, NOS" ], [ "9705", "3", "Angioimmunoblastic T-cell lymphoma" ], [ "9708", "3", "Subcutaneous panniculitis-like T-cell lymphoma" ], [ "9709", "3", "Cutaneous T-cell lymphoma, NOS (C44._)" ], [ "9714", "3", "Anaplastic large cell lymphoma, T cell and Null cell type" ], [ "9716", "3", "Hepatosplenic ?? (gamma-delta) cell lymphoma" ], [ "9717", "3", "Intestinal T-cell lymphoma" ], [ "9718", "3", "Primary cutaneous CD30+ T-cell lymphoproliferative disorder (C44._)" ], [ "9719", "3", "NK/T-cell lymphoma, nasal and nasal-type" ], [ "9731", "3", "Plasmacytoma, NOS" ], [ "9732", "3", "Multiple myeloma (C42.1)" ], [ "9733", "3", "Plasma cell leukemia (C42.1)" ], [ "9734", "3", "Plasmacytoma, extramedullary (not occurring in bone)" ], [ "9740", "1", "Mastocytoma, NOS" ], [ "9740", "3", "Mast cell sarcoma" ], [ "9741", "3", "Malignant mastocytosis" ], [ "9742", "3", "Mast cell leukemia (C42.1)" ], [ "9750", "3", "Malignant histiocytosis" ], [ "9751", "1", "Langerhans cell histiocytosis, NOS" ], [ "9752", "1", "Langerhans cell histiocytosis, unifocal" ], [ "9753", "1", "Langerhans cell histiocytosis, multifocal" ], [ "9754", "3", "Langerhans cell histiocytosis, disseminated" ], [ "9755", "3", "Histiocytic sarcoma" ], [ "9756", "3", "Langerhans cell sarcoma" ], [ "9757", "3", "Interdigitating dendritic cell sarcoma" ], [ "9758", "3", "Follicular dendritic cell sarcoma" ], [ "9760", "3", "Immunoproliferative disease, NOS" ], [ "9761", "3", "Waldenstrom macroglobulinemia (C42.0) (see also M-9671/3)" ], [ "9762", "3", "Heavy chain disease, NOS" ], [ "9764", "3", "Immunoproliferative small intestinal disease (C17._)" ], [ "9765", "1", "Monoclonal gammopathy of undetermined significance" ], [ "9766", "1", "Angiocentric immunoproliferative lesion" ], [ "9767", "1", "Angioimmunoblastic lymphadenopathy" ], [ "9768", "1", "T-gamma lymphoproliferative disease" ], [ "9769", "1", "Immunoglobulin deposition disease" ], [ "9800", "3", "Leukemia, NOS" ], [ "9801", "3", "Acute leukemia, NOS" ], [ "9805", "3", "Acute biphenotypic leukemia" ], [ "9820", "3", "Lymphoid leukemia, NOS" ], [ "9823", "3", "B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma (see also M-9670/3)" ], [ "9826", "3", "Burkitt cell leukemia (see also M-9687/3)" ], [ "9827", "3", "Adult T-cell leukemia/lymphoma (HTLV-1 positive) Includes all variants" ], [ "9831", "1", "T-cell large granular lymphocytic leukemia" ], [ "9832", "3", "Prolymphocytic leukemia, NOS" ], [ "9833", "3", "Prolymphocytic leukemia, B-cell type" ], [ "9834", "3", "Prolymphocytic leukemia, T-cell type" ], [ "9835", "3", "Precursor cell lymphoblastic leukemia, NOS (see also M-9727/3)" ], [ "9836", "3", "Precursor B-cell lymphoblastic leukemia (see also M-9728/3)" ], [ "9837", "3", "Precursor T-cell lymphoblastic leukemia (see also M-9729/3)" ], [ "9840", "3", "Acute myeloid leukemia, M6 type" ], [ "9860", "3", "Myeloid leukemia, NOS" ], [ "9861", "3", "Acute myeloid leukemia, NOS (FAB or WHO type not specified) (see also M-9930/3)" ], [ "9863", "3", "Chronic myeloid leukemia, NOS" ], [ "9866", "3", "Acute promyelocytic leukemia, t(15;17)(q22;q11-12)" ], [ "9867", "3", "Acute myelomonocytic leukemia" ], [ "9870", "3", "Acute basophilic leukemia" ], [ "9871", "3", "Acute myeloid leukemia with abnormal marrow eosinophils Includes all variants" ], [ "9872", "3", "Acute myeloid leukemia, minimal differentiation" ], [ "9873", "3", "Acute myeloid leukemia without maturation" ], [ "9874", "3", "Acute myeloid leukemia with maturation" ], [ "9875", "3", "Chronic myelogenous leukemia, BCR/ABL positive" ], [ "9876", "3", "Atypical chronic myeloid leukemia, BCR/ABL negative" ], [ "9891", "3", "Acute monocytic leukemia" ], [ "9895", "3", "Acute myeloid leukemia with multilineage dysplasia" ], [ "9896", "3", "Acute myeloid leukemia, t(8;21)(q22;q22)" ], [ "9897", "3", "Acute myeloid leukemia, 11q23 abnormalities" ], [ "9910", "3", "Acute megakaryoblastic leukemia" ], [ "9920", "3", "Therapy-related acute myeloid leukemia, NOS" ], [ "9930", "3", "Myeloid sarcoma (see also M-9861/3)" ], [ "9931", "3", "Acute panmyelosis with myelofibrosis (C42.1)" ], [ "9940", "3", "Hairy cell leukemia (C42.1)" ], [ "9945", "3", "Chronic myelomonocytic leukemia, NOS" ], [ "9946", "3", "Juvenile myelomonocytic leukemia" ], [ "9948", "3", "Aggressive NK-cell leukemia" ], [ "9950", "3", "Polycythemia vera" ], [ "9960", "3", "Chronic myeloproliferative disease, NOS" ], [ "9961", "3", "Myelosclerosis with myeloid metaplasia" ], [ "9962", "3", "Essential thrombocythemia" ], [ "9963", "3", "Chronic neutrophilic leukemia" ], [ "9964", "3", "Hypereosinophilic syndrome" ], [ "9970", "1", "Lymphoproliferative disorder, NOS" ], [ "9975", "1", "Myeloproliferative disease, NOS" ], [ "9980", "3", "Refractory anemia" ], [ "9982", "3", "Refractory anemia with sideroblasts" ], [ "9983", "3", "Refractory anemia with excess blasts" ], [ "9984", "3", "Refractory anemia with excess blasts in transformation [obs]" ], [ "9985", "3", "Refractory cytopenia with multilineage dysplasia" ], [ "9986", "3", "Myelodysplastic syndrome with 5q deletion (5q-) syndrome" ], [ "9987", "3", "Therapy-related myelodysplastic syndrome, NOS" ], [ "9989", "3", "Myelodysplastic syndrome, NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_m_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_m_codes.json
deleted file mode 100644
index 6e418ac9e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_m_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc6_m_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 6 M Codes",
- "title" : "AJCC 6 M Allowable Codes",
- "last_modified" : "2015-05-27T16:18:47.617Z",
- "definition" : [ {
- "key" : "ajcc6_m",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc6_m",
- "name" : "AJCC6 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "MX", "VALUE:99", "MX" ], [ "M0", "VALUE:00", "M0" ], [ "M0(i+)", "VALUE: ", "M0(i+)" ], [ "M1", "VALUE:10", "M1" ], [ "M1a", "VALUE:11", "M1a" ], [ "M1b", "VALUE:12", "M1b" ], [ "M1c", "VALUE:13", "M1c" ], [ "M1d", "VALUE: ", "M1d" ], [ "M1e", "VALUE: ", "M1e" ], [ "M1NOS", "VALUE:19", "M1 NOS" ], [ "NA", "VALUE:88", "Not applicable" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_n_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_n_codes.json
deleted file mode 100644
index 25aa403c6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_n_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc6_n_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 6 N Codes",
- "title" : "AJCC 6 N Allowable Codes",
- "last_modified" : "2015-05-27T16:18:47.663Z",
- "definition" : [ {
- "key" : "ajcc6_n",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc6_n",
- "name" : "AJCC6 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "NX", "VALUE:99", "NX" ], [ "N0", "VALUE:00", "N0" ], [ "N0(i-)", "VALUE:01", "N0(i-)" ], [ "N0(i+)", "VALUE:02", "N0(i+)" ], [ "N0(mol-)", "VALUE:03", "N0(mol-)" ], [ "N0(mol+)", "VALUE:04", "N0(mol+)" ], [ "N1", "VALUE:10", "N1" ], [ "N1NOS", "VALUE:19", "N1 NOS" ], [ "N1a", "VALUE:11", "N1a" ], [ "N1b", "VALUE:12", "N1b" ], [ "N1c", "VALUE:13", "N1c" ], [ "N1mi", "VALUE:18", "N1mi" ], [ "N2", "VALUE:20", "N2" ], [ "N2NOS", "VALUE:29", "N2 NOS" ], [ "N2a", "VALUE:21", "N2a" ], [ "N2b", "VALUE:22", "N2b" ], [ "N2c", "VALUE:23", "N2c" ], [ "N3", "VALUE:30", "N3" ], [ "N3NOS", "VALUE:39", "N3 NOS" ], [ "N3a", "VALUE:31", "N3a" ], [ "N3b", "VALUE:32", "N3b" ], [ "N3c", "VALUE:33", "N3c" ], [ "N4", "VALUE: ", "N4" ], [ "NA", "VALUE:88", "Not applicable" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_codes.json
deleted file mode 100644
index 6f55e1740..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc6_stage_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 6 Stage Codes",
- "title" : "AJCC 6 Stage Allowable Codes",
- "last_modified" : "2015-05-27T16:18:47.725Z",
- "definition" : [ {
- "key" : "ajcc6_stage",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc6_stage",
- "name" : "AJCC6 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "0", "VALUE:00", "Stage 0" ], [ "0a", "VALUE:01", "Stage 0a" ], [ "0is", "VALUE:02", "Stage 0is" ], [ "I", "VALUE:10", "Stage I" ], [ "INOS", "VALUE:11", "Stage I NOS" ], [ "IA", "VALUE:12", "Stage IA" ], [ "IA1", "VALUE:13", "Stage IA1" ], [ "IA2", "VALUE:14", "Stage IA2" ], [ "IANOS", "VALUE: ", "Stage IA NOS" ], [ "IB", "VALUE:15", "Stage IB" ], [ "IB1", "VALUE:16", "Stage IB1" ], [ "IB2", "VALUE:17", "Stage IB2" ], [ "IBNOS", "VALUE: ", "Stage IB NOS" ], [ "IC", "VALUE:18", "Stage IC" ], [ "IS", "VALUE:19", "Stage IS" ], [ "ISA", "VALUE:23", "Stage ISA (lymphoma only)" ], [ "ISB", "VALUE:24", "Stage ISB (lymphoma only)" ], [ "IEA", "VALUE:20", "Stage IEA (lymphoma only)" ], [ "IEB", "VALUE:21", "Stage IEB (lymphoma only)" ], [ "IE", "VALUE:22", "Stage IE (lymphoma only)" ], [ "II", "VALUE:30", "Stage II" ], [ "IINOS", "VALUE:31", "Stage II NOS" ], [ "IIA", "VALUE:32", "Stage IIA" ], [ "IIANOS", "VALUE: ", "Stage IIA NOS" ], [ "IIA1", "VALUE: ", "Stage IIA1" ], [ "IIA2", "VALUE: ", "Stage IIA2" ], [ "IIB", "VALUE:33", "Stage IIB" ], [ "IIC", "VALUE:34", "Stage IIC" ], [ "IIEA", "VALUE:35", "Stage IIEA (lymphoma only)" ], [ "IIEB", "VALUE:36", "Stage IIEB (lymphoma only)" ], [ "IIE", "VALUE:37", "Stage IIE (lymphoma only)" ], [ "IISA", "VALUE:38", "Stage IISA (lymphoma only)" ], [ "IISB", "VALUE:39", "Stage IISB (lymphoma only)" ], [ "IIS", "VALUE:40", "Stage IIS (lymphoma only)" ], [ "IIESA", "VALUE:41", "Stage IIESA (lymphoma only)" ], [ "IIESB", "VALUE:42", "Stage IIESB (lymphoma only)" ], [ "IIES", "VALUE:43", "Stage IIES (lymphoma only)" ], [ "III", "VALUE:50", "Stage III" ], [ "IIINOS", "VALUE:51", "Stage III NOS" ], [ "IIIA", "VALUE:52", "Stage IIIA" ], [ "IIIB", "VALUE:53", "Stage IIIB" ], [ "IIIC", "VALUE:54", "Stage IIIC" ], [ "IIIC1", "VALUE: ", "Stage IIIC1" ], [ "IIIC2", "VALUE: ", "Stage IIIC2" ], [ "IIIEA", "VALUE:55", "Stage IIIEA (lymphoma only)" ], [ "IIIEB", "VALUE:56", "Stage IIIEB (lymphoma only)" ], [ "IIIE", "VALUE:57", "Stage IIIE (lymphoma only)" ], [ "IIISA", "VALUE:58", "Stage IIISA (lymphoma only)" ], [ "IIISB", "VALUE:59", "Stage IIISB (lymphoma only)" ], [ "IIIS", "VALUE:60", "Stage IIIS (lymphoma only)" ], [ "IIIESA", "VALUE:61", "Stage IIIESA (lymphoma only)" ], [ "IIIESB", "VALUE:62", "Stage IIIESB (lymphoma only)" ], [ "IIIES", "VALUE:63", "Stage IIIES (lymphoma only)" ], [ "IV", "VALUE:70", "Stage IV" ], [ "IVNOS", "VALUE:71", "Stage IV NOS" ], [ "IVA", "VALUE:72", "Stage IVA" ], [ "IVA1", "VALUE: ", "Stage IVA1" ], [ "IVA2", "VALUE: ", "Stage IVA2" ], [ "IVB", "VALUE:73", "Stage IVB" ], [ "IVC", "VALUE:74", "Stage IVC" ], [ "NA", "VALUE:88", "Not applicable" ], [ "OCCULT", "VALUE:90", "Stage Occult" ], [ "UNK", "VALUE:99", "Stage Unknown" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_not_ewing_qai.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_not_ewing_qai.json
deleted file mode 100644
index 4f9dd9228..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_not_ewing_qai.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc6_stage_not_ewing_qai",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage Not Ewing",
- "last_modified" : "2015-05-27T16:18:47.778Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "4", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N1", "M0", "1", "VALUE:IVB" ], [ "T0", "N1", "M0", "2", "VALUE:IVB" ], [ "T0", "N1", "M0", "3", "VALUE:IVB" ], [ "T0", "N1", "M0", "4", "VALUE:IVB" ], [ "T0", "N1", "M0", "9", "VALUE:IVB" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "4", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "VALUE:UNK" ], [ "T1", "N0", "M0", "1", "VALUE:IA" ], [ "T1", "N0", "M0", "2", "VALUE:IA" ], [ "T1", "N0", "M0", "3", "VALUE:IIA" ], [ "T1", "N0", "M0", "4", "VALUE:IIA" ], [ "T1", "N0", "M0", "9", "VALUE:UNK" ], [ "T1", "N1", "M0", "1", "VALUE:IVB" ], [ "T1", "N1", "M0", "2", "VALUE:IVB" ], [ "T1", "N1", "M0", "3", "VALUE:IVB" ], [ "T1", "N1", "M0", "4", "VALUE:IVB" ], [ "T1", "N1", "M0", "9", "VALUE:IVB" ], [ "T1", "NX", "M0", "1", "VALUE:UNK" ], [ "T1", "NX", "M0", "2", "VALUE:UNK" ], [ "T1", "NX", "M0", "3", "VALUE:UNK" ], [ "T1", "NX", "M0", "4", "VALUE:UNK" ], [ "T1", "NX", "M0", "9", "VALUE:UNK" ], [ "T2", "N0", "M0", "1", "VALUE:IB" ], [ "T2", "N0", "M0", "2", "VALUE:IB" ], [ "T2", "N0", "M0", "3", "VALUE:IIB" ], [ "T2", "N0", "M0", "4", "VALUE:IIB" ], [ "T2", "N0", "M0", "9", "VALUE:UNK" ], [ "T2", "N1", "M0", "1", "VALUE:IVB" ], [ "T2", "N1", "M0", "2", "VALUE:IVB" ], [ "T2", "N1", "M0", "3", "VALUE:IVB" ], [ "T2", "N1", "M0", "4", "VALUE:IVB" ], [ "T2", "N1", "M0", "9", "VALUE:IVB" ], [ "T2", "NX", "M0", "1", "VALUE:UNK" ], [ "T2", "NX", "M0", "2", "VALUE:UNK" ], [ "T2", "NX", "M0", "3", "VALUE:UNK" ], [ "T2", "NX", "M0", "4", "VALUE:UNK" ], [ "T2", "NX", "M0", "9", "VALUE:UNK" ], [ "T3", "N0", "M0", "1", "VALUE:III" ], [ "T3", "N0", "M0", "2", "VALUE:III" ], [ "T3", "N0", "M0", "3", "VALUE:III" ], [ "T3", "N0", "M0", "4", "VALUE:III" ], [ "T3", "N0", "M0", "9", "VALUE:III" ], [ "T3", "N1", "M0", "1", "VALUE:IVB" ], [ "T3", "N1", "M0", "2", "VALUE:IVB" ], [ "T3", "N1", "M0", "3", "VALUE:IVB" ], [ "T3", "N1", "M0", "4", "VALUE:IVB" ], [ "T3", "N1", "M0", "9", "VALUE:IVB" ], [ "T3", "NX", "M0", "1", "VALUE:UNK" ], [ "T3", "NX", "M0", "2", "VALUE:UNK" ], [ "T3", "NX", "M0", "3", "VALUE:UNK" ], [ "T3", "NX", "M0", "4", "VALUE:UNK" ], [ "T3", "NX", "M0", "9", "VALUE:UNK" ], [ "TX", "N0", "M0", "1", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:UNK" ], [ "TX", "N1", "M0", "1", "VALUE:IVB" ], [ "TX", "N1", "M0", "2", "VALUE:IVB" ], [ "TX", "N1", "M0", "3", "VALUE:IVB" ], [ "TX", "N1", "M0", "4", "VALUE:IVB" ], [ "TX", "N1", "M0", "9", "VALUE:IVB" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "N0", "M1a", "1", "VALUE:IVA" ], [ "T0", "N0", "M1a", "2", "VALUE:IVA" ], [ "T0", "N0", "M1a", "3", "VALUE:IVA" ], [ "T0", "N0", "M1a", "4", "VALUE:IVA" ], [ "T0", "N0", "M1a", "9", "VALUE:IVA" ], [ "T0", "N1", "M1a", "1", "VALUE:IVB" ], [ "T0", "N1", "M1a", "2", "VALUE:IVB" ], [ "T0", "N1", "M1a", "3", "VALUE:IVB" ], [ "T0", "N1", "M1a", "4", "VALUE:IVB" ], [ "T0", "N1", "M1a", "9", "VALUE:IVB" ], [ "T0", "NX", "M1a", "1", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "2", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "3", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "4", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "9", "VALUE:IVNOS" ], [ "T1", "N0", "M1a", "1", "VALUE:IVA" ], [ "T1", "N0", "M1a", "2", "VALUE:IVA" ], [ "T1", "N0", "M1a", "3", "VALUE:IVA" ], [ "T1", "N0", "M1a", "4", "VALUE:IVA" ], [ "T1", "N0", "M1a", "9", "VALUE:IVA" ], [ "T1", "N1", "M1a", "1", "VALUE:IVB" ], [ "T1", "N1", "M1a", "2", "VALUE:IVB" ], [ "T1", "N1", "M1a", "3", "VALUE:IVB" ], [ "T1", "N1", "M1a", "4", "VALUE:IVB" ], [ "T1", "N1", "M1a", "9", "VALUE:IVB" ], [ "T1", "NX", "M1a", "1", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "2", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "3", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "4", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "9", "VALUE:IVNOS" ], [ "T2", "N0", "M1a", "1", "VALUE:IVA" ], [ "T2", "N0", "M1a", "2", "VALUE:IVA" ], [ "T2", "N0", "M1a", "3", "VALUE:IVA" ], [ "T2", "N0", "M1a", "4", "VALUE:IVA" ], [ "T2", "N0", "M1a", "9", "VALUE:IVA" ], [ "T2", "N1", "M1a", "1", "VALUE:IVB" ], [ "T2", "N1", "M1a", "2", "VALUE:IVB" ], [ "T2", "N1", "M1a", "3", "VALUE:IVB" ], [ "T2", "N1", "M1a", "4", "VALUE:IVB" ], [ "T2", "N1", "M1a", "9", "VALUE:IVB" ], [ "T2", "NX", "M1a", "1", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "2", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "3", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "4", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "9", "VALUE:IVNOS" ], [ "T3", "N0", "M1a", "1", "VALUE:IVA" ], [ "T3", "N0", "M1a", "2", "VALUE:IVA" ], [ "T3", "N0", "M1a", "3", "VALUE:IVA" ], [ "T3", "N0", "M1a", "4", "VALUE:IVA" ], [ "T3", "N0", "M1a", "9", "VALUE:IVA" ], [ "T3", "N1", "M1a", "1", "VALUE:IVB" ], [ "T3", "N1", "M1a", "2", "VALUE:IVB" ], [ "T3", "N1", "M1a", "3", "VALUE:IVB" ], [ "T3", "N1", "M1a", "4", "VALUE:IVB" ], [ "T3", "N1", "M1a", "9", "VALUE:IVB" ], [ "T3", "NX", "M1a", "1", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "2", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "3", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "4", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "9", "VALUE:IVNOS" ], [ "TX", "N0", "M1a", "1", "VALUE:IVA" ], [ "TX", "N0", "M1a", "2", "VALUE:IVA" ], [ "TX", "N0", "M1a", "3", "VALUE:IVA" ], [ "TX", "N0", "M1a", "4", "VALUE:IVA" ], [ "TX", "N0", "M1a", "9", "VALUE:IVA" ], [ "TX", "N1", "M1a", "1", "VALUE:IVB" ], [ "TX", "N1", "M1a", "2", "VALUE:IVB" ], [ "TX", "N1", "M1a", "3", "VALUE:IVB" ], [ "TX", "N1", "M1a", "4", "VALUE:IVB" ], [ "TX", "N1", "M1a", "9", "VALUE:IVB" ], [ "TX", "NX", "M1a", "1", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "2", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "3", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "4", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "9", "VALUE:IVNOS" ], [ "T0", "N0", "M1b", "1", "VALUE:IVB" ], [ "T0", "N0", "M1b", "2", "VALUE:IVB" ], [ "T0", "N0", "M1b", "3", "VALUE:IVB" ], [ "T0", "N0", "M1b", "4", "VALUE:IVB" ], [ "T0", "N0", "M1b", "9", "VALUE:IVB" ], [ "T0", "N1", "M1b", "1", "VALUE:IVB" ], [ "T0", "N1", "M1b", "2", "VALUE:IVB" ], [ "T0", "N1", "M1b", "3", "VALUE:IVB" ], [ "T0", "N1", "M1b", "4", "VALUE:IVB" ], [ "T0", "N1", "M1b", "9", "VALUE:IVB" ], [ "T0", "NX", "M1b", "1", "VALUE:IVB" ], [ "T0", "NX", "M1b", "2", "VALUE:IVB" ], [ "T0", "NX", "M1b", "3", "VALUE:IVB" ], [ "T0", "NX", "M1b", "4", "VALUE:IVB" ], [ "T0", "NX", "M1b", "9", "VALUE:IVB" ], [ "T1", "N0", "M1b", "1", "VALUE:IVB" ], [ "T1", "N0", "M1b", "2", "VALUE:IVB" ], [ "T1", "N0", "M1b", "3", "VALUE:IVB" ], [ "T1", "N0", "M1b", "4", "VALUE:IVB" ], [ "T1", "N0", "M1b", "9", "VALUE:IVB" ], [ "T1", "N1", "M1b", "1", "VALUE:IVB" ], [ "T1", "N1", "M1b", "2", "VALUE:IVB" ], [ "T1", "N1", "M1b", "3", "VALUE:IVB" ], [ "T1", "N1", "M1b", "4", "VALUE:IVB" ], [ "T1", "N1", "M1b", "9", "VALUE:IVB" ], [ "T1", "NX", "M1b", "1", "VALUE:IVB" ], [ "T1", "NX", "M1b", "2", "VALUE:IVB" ], [ "T1", "NX", "M1b", "3", "VALUE:IVB" ], [ "T1", "NX", "M1b", "4", "VALUE:IVB" ], [ "T1", "NX", "M1b", "9", "VALUE:IVB" ], [ "T2", "N0", "M1b", "1", "VALUE:IVB" ], [ "T2", "N0", "M1b", "2", "VALUE:IVB" ], [ "T2", "N0", "M1b", "3", "VALUE:IVB" ], [ "T2", "N0", "M1b", "4", "VALUE:IVB" ], [ "T2", "N0", "M1b", "9", "VALUE:IVB" ], [ "T2", "N1", "M1b", "1", "VALUE:IVB" ], [ "T2", "N1", "M1b", "2", "VALUE:IVB" ], [ "T2", "N1", "M1b", "3", "VALUE:IVB" ], [ "T2", "N1", "M1b", "4", "VALUE:IVB" ], [ "T2", "N1", "M1b", "9", "VALUE:IVB" ], [ "T2", "NX", "M1b", "1", "VALUE:IVB" ], [ "T2", "NX", "M1b", "2", "VALUE:IVB" ], [ "T2", "NX", "M1b", "3", "VALUE:IVB" ], [ "T2", "NX", "M1b", "4", "VALUE:IVB" ], [ "T2", "NX", "M1b", "9", "VALUE:IVB" ], [ "T3", "N0", "M1b", "1", "VALUE:IVB" ], [ "T3", "N0", "M1b", "2", "VALUE:IVB" ], [ "T3", "N0", "M1b", "3", "VALUE:IVB" ], [ "T3", "N0", "M1b", "4", "VALUE:IVB" ], [ "T3", "N0", "M1b", "9", "VALUE:IVB" ], [ "T3", "N1", "M1b", "1", "VALUE:IVB" ], [ "T3", "N1", "M1b", "2", "VALUE:IVB" ], [ "T3", "N1", "M1b", "3", "VALUE:IVB" ], [ "T3", "N1", "M1b", "4", "VALUE:IVB" ], [ "T3", "N1", "M1b", "9", "VALUE:IVB" ], [ "T3", "NX", "M1b", "1", "VALUE:IVB" ], [ "T3", "NX", "M1b", "2", "VALUE:IVB" ], [ "T3", "NX", "M1b", "3", "VALUE:IVB" ], [ "T3", "NX", "M1b", "4", "VALUE:IVB" ], [ "T3", "NX", "M1b", "9", "VALUE:IVB" ], [ "TX", "N0", "M1b", "1", "VALUE:IVB" ], [ "TX", "N0", "M1b", "2", "VALUE:IVB" ], [ "TX", "N0", "M1b", "3", "VALUE:IVB" ], [ "TX", "N0", "M1b", "4", "VALUE:IVB" ], [ "TX", "N0", "M1b", "9", "VALUE:IVB" ], [ "TX", "N1", "M1b", "1", "VALUE:IVB" ], [ "TX", "N1", "M1b", "2", "VALUE:IVB" ], [ "TX", "N1", "M1b", "3", "VALUE:IVB" ], [ "TX", "N1", "M1b", "4", "VALUE:IVB" ], [ "TX", "N1", "M1b", "9", "VALUE:IVB" ], [ "TX", "NX", "M1b", "1", "VALUE:IVB" ], [ "TX", "NX", "M1b", "2", "VALUE:IVB" ], [ "TX", "NX", "M1b", "3", "VALUE:IVB" ], [ "TX", "NX", "M1b", "4", "VALUE:IVB" ], [ "TX", "NX", "M1b", "9", "VALUE:IVB" ], [ "T0", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T0", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T1", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T2", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T3", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "TX", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "T0", "N0", "MX", "1", "VALUE:UNK" ], [ "T0", "N0", "MX", "2", "VALUE:UNK" ], [ "T0", "N0", "MX", "3", "VALUE:UNK" ], [ "T0", "N0", "MX", "4", "VALUE:UNK" ], [ "T0", "N0", "MX", "9", "VALUE:UNK" ], [ "T0", "N1", "MX", "1", "VALUE:IVB" ], [ "T0", "N1", "MX", "2", "VALUE:IVB" ], [ "T0", "N1", "MX", "3", "VALUE:IVB" ], [ "T0", "N1", "MX", "4", "VALUE:IVB" ], [ "T0", "N1", "MX", "9", "VALUE:IVB" ], [ "T0", "NX", "MX", "1", "VALUE:UNK" ], [ "T0", "NX", "MX", "2", "VALUE:UNK" ], [ "T0", "NX", "MX", "3", "VALUE:UNK" ], [ "T0", "NX", "MX", "4", "VALUE:UNK" ], [ "T0", "NX", "MX", "9", "VALUE:UNK" ], [ "T1", "N0", "MX", "1", "VALUE:UNK" ], [ "T1", "N0", "MX", "2", "VALUE:UNK" ], [ "T1", "N0", "MX", "3", "VALUE:UNK" ], [ "T1", "N0", "MX", "4", "VALUE:UNK" ], [ "T1", "N0", "MX", "9", "VALUE:UNK" ], [ "T1", "N1", "MX", "1", "VALUE:IVB" ], [ "T1", "N1", "MX", "2", "VALUE:IVB" ], [ "T1", "N1", "MX", "3", "VALUE:IVB" ], [ "T1", "N1", "MX", "4", "VALUE:IVB" ], [ "T1", "N1", "MX", "9", "VALUE:IVB" ], [ "T1", "NX", "MX", "1", "VALUE:UNK" ], [ "T1", "NX", "MX", "2", "VALUE:UNK" ], [ "T1", "NX", "MX", "3", "VALUE:UNK" ], [ "T1", "NX", "MX", "4", "VALUE:UNK" ], [ "T1", "NX", "MX", "9", "VALUE:UNK" ], [ "T2", "N0", "MX", "1", "VALUE:UNK" ], [ "T2", "N0", "MX", "2", "VALUE:UNK" ], [ "T2", "N0", "MX", "3", "VALUE:UNK" ], [ "T2", "N0", "MX", "4", "VALUE:UNK" ], [ "T2", "N0", "MX", "9", "VALUE:UNK" ], [ "T2", "N1", "MX", "1", "VALUE:IVB" ], [ "T2", "N1", "MX", "2", "VALUE:IVB" ], [ "T2", "N1", "MX", "3", "VALUE:IVB" ], [ "T2", "N1", "MX", "4", "VALUE:IVB" ], [ "T2", "N1", "MX", "9", "VALUE:IVB" ], [ "T2", "NX", "MX", "1", "VALUE:UNK" ], [ "T2", "NX", "MX", "2", "VALUE:UNK" ], [ "T2", "NX", "MX", "3", "VALUE:UNK" ], [ "T2", "NX", "MX", "4", "VALUE:UNK" ], [ "T2", "NX", "MX", "9", "VALUE:UNK" ], [ "T3", "N0", "MX", "1", "VALUE:UNK" ], [ "T3", "N0", "MX", "2", "VALUE:UNK" ], [ "T3", "N0", "MX", "3", "VALUE:UNK" ], [ "T3", "N0", "MX", "4", "VALUE:UNK" ], [ "T3", "N0", "MX", "9", "VALUE:UNK" ], [ "T3", "N1", "MX", "1", "VALUE:IVB" ], [ "T3", "N1", "MX", "2", "VALUE:IVB" ], [ "T3", "N1", "MX", "3", "VALUE:IVB" ], [ "T3", "N1", "MX", "4", "VALUE:IVB" ], [ "T3", "N1", "MX", "9", "VALUE:IVB" ], [ "T3", "NX", "MX", "1", "VALUE:UNK" ], [ "T3", "NX", "MX", "2", "VALUE:UNK" ], [ "T3", "NX", "MX", "3", "VALUE:UNK" ], [ "T3", "NX", "MX", "4", "VALUE:UNK" ], [ "T3", "NX", "MX", "9", "VALUE:UNK" ], [ "TX", "N0", "MX", "1", "VALUE:UNK" ], [ "TX", "N0", "MX", "2", "VALUE:UNK" ], [ "TX", "N0", "MX", "3", "VALUE:UNK" ], [ "TX", "N0", "MX", "4", "VALUE:UNK" ], [ "TX", "N0", "MX", "9", "VALUE:UNK" ], [ "TX", "N1", "MX", "1", "VALUE:IVB" ], [ "TX", "N1", "MX", "2", "VALUE:IVB" ], [ "TX", "N1", "MX", "3", "VALUE:IVB" ], [ "TX", "N1", "MX", "4", "VALUE:IVB" ], [ "TX", "N1", "MX", "9", "VALUE:IVB" ], [ "TX", "NX", "MX", "1", "VALUE:UNK" ], [ "TX", "NX", "MX", "2", "VALUE:UNK" ], [ "TX", "NX", "MX", "3", "VALUE:UNK" ], [ "TX", "NX", "MX", "4", "VALUE:UNK" ], [ "TX", "NX", "MX", "9", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qab.json
deleted file mode 100644
index 4a51bbeef..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qab.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:47.872Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIA" ], [ "T0", "N2", "M0", "VALUE:IIIA" ], [ "T0", "N3", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIA" ], [ "T1", "N2", "M0", "VALUE:IIIA" ], [ "T1", "N3", "M0", "VALUE:IIIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "N2", "M0", "VALUE:IIIA" ], [ "T2", "N3", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIA" ], [ "T3", "N3", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIB" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "N2", "M0", "VALUE:IIIB" ], [ "T4", "N3", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:IIIB" ], [ "TX", "N0", "M0", "VALUE:OCCULT" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IIIA" ], [ "TX", "N3", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "N3", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:UNK" ], [ "T1", "N3", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:UNK" ], [ "T2", "N3", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "N3", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "N2", "MX", "VALUE:UNK" ], [ "T4", "N3", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "N3", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qac.json
deleted file mode 100644
index 8082cb3fc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qac.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:47.930Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IC" ], [ "T1c", "N1", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIC" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIC" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:IIC" ], [ "T2c", "N1", "M0", "VALUE:IIIC" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3c", "N0", "M0", "VALUE:IIIC" ], [ "T3c", "N1", "M0", "VALUE:IIIC" ], [ "T3c", "NX", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2c", "N0", "M1", "VALUE:IV" ], [ "T2c", "N1", "M1", "VALUE:IV" ], [ "T2c", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3c", "N0", "M1", "VALUE:IV" ], [ "T3c", "N1", "M1", "VALUE:IV" ], [ "T3c", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1c", "N0", "MX", "VALUE:UNK" ], [ "T1c", "N1", "MX", "VALUE:UNK" ], [ "T1c", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:UNK" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:UNK" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2c", "N0", "MX", "VALUE:UNK" ], [ "T2c", "N1", "MX", "VALUE:UNK" ], [ "T2c", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:UNK" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3b", "N0", "MX", "VALUE:UNK" ], [ "T3b", "N1", "MX", "VALUE:UNK" ], [ "T3b", "NX", "MX", "VALUE:UNK" ], [ "T3c", "N0", "MX", "VALUE:UNK" ], [ "T3c", "N1", "MX", "VALUE:UNK" ], [ "T3c", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:UNK" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qad.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qad.json
deleted file mode 100644
index 07d67e51a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qad.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qad",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:47.994Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N0(i-)", "M0", "ERROR:" ], [ "T0", "N0(i+)", "M0", "ERROR:" ], [ "T0", "N0(mol-)", "M0", "ERROR:" ], [ "T0", "N0(mol+)", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIA" ], [ "T0", "N1a", "M0", "VALUE:IIA" ], [ "T0", "N1b", "M0", "VALUE:IIA" ], [ "T0", "N1c", "M0", "VALUE:IIA" ], [ "T0", "N1mi", "M0", "VALUE:IIA" ], [ "T0", "N1NOS", "M0", "VALUE:IIA" ], [ "T0", "N2a", "M0", "VALUE:IIIA" ], [ "T0", "N2b", "M0", "VALUE:IIIA" ], [ "T0", "N2NOS", "M0", "VALUE:IIIA" ], [ "T0", "N3a", "M0", "VALUE:IIIC" ], [ "T0", "N3b", "M0", "VALUE:IIIC" ], [ "T0", "N3c", "M0", "VALUE:IIIC" ], [ "T0", "N3NOS", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N0(i-)", "M0", "VALUE:0" ], [ "Tis", "N0(i+)", "M0", "VALUE:0" ], [ "Tis", "N0(mol-)", "M0", "VALUE:0" ], [ "Tis", "N0(mol+)", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N1a", "M0", "ERROR:" ], [ "Tis", "N1b", "M0", "ERROR:" ], [ "Tis", "N1c", "M0", "ERROR:" ], [ "Tis", "N1mi", "M0", "ERROR:" ], [ "Tis", "N1NOS", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3a", "M0", "ERROR:" ], [ "Tis", "N3b", "M0", "ERROR:" ], [ "Tis", "N3c", "M0", "ERROR:" ], [ "Tis", "N3NOS", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1mi", "N0", "M0", "VALUE:I" ], [ "T1mi", "N0(i-)", "M0", "VALUE:I" ], [ "T1mi", "N0(i+)", "M0", "VALUE:I" ], [ "T1mi", "N0(mol-)", "M0", "VALUE:I" ], [ "T1mi", "N0(mol+)", "M0", "VALUE:I" ], [ "T1mi", "N1", "M0", "VALUE:IIA" ], [ "T1mi", "N1a", "M0", "VALUE:IIA" ], [ "T1mi", "N1b", "M0", "VALUE:IIA" ], [ "T1mi", "N1c", "M0", "VALUE:IIA" ], [ "T1mi", "N1mi", "M0", "VALUE:IIA" ], [ "T1mi", "N1NOS", "M0", "VALUE:IIA" ], [ "T1mi", "N2a", "M0", "VALUE:IIIA" ], [ "T1mi", "N2b", "M0", "VALUE:IIIA" ], [ "T1mi", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1mi", "N3a", "M0", "VALUE:IIIC" ], [ "T1mi", "N3b", "M0", "VALUE:IIIC" ], [ "T1mi", "N3c", "M0", "VALUE:IIIC" ], [ "T1mi", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1mi", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N0(i-)", "M0", "VALUE:I" ], [ "T1a", "N0(i+)", "M0", "VALUE:I" ], [ "T1a", "N0(mol-)", "M0", "VALUE:I" ], [ "T1a", "N0(mol+)", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "VALUE:IIA" ], [ "T1a", "N1c", "M0", "VALUE:IIA" ], [ "T1a", "N1mi", "M0", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "VALUE:IIIA" ], [ "T1a", "N2b", "M0", "VALUE:IIIA" ], [ "T1a", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1a", "N3a", "M0", "VALUE:IIIC" ], [ "T1a", "N3b", "M0", "VALUE:IIIC" ], [ "T1a", "N3c", "M0", "VALUE:IIIC" ], [ "T1a", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N0(i-)", "M0", "VALUE:I" ], [ "T1b", "N0(i+)", "M0", "VALUE:I" ], [ "T1b", "N0(mol-)", "M0", "VALUE:I" ], [ "T1b", "N0(mol+)", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "VALUE:IIA" ], [ "T1b", "N1c", "M0", "VALUE:IIA" ], [ "T1b", "N1mi", "M0", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "VALUE:IIIA" ], [ "T1b", "N2b", "M0", "VALUE:IIIA" ], [ "T1b", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1b", "N3a", "M0", "VALUE:IIIC" ], [ "T1b", "N3b", "M0", "VALUE:IIIC" ], [ "T1b", "N3c", "M0", "VALUE:IIIC" ], [ "T1b", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:I" ], [ "T1c", "N0(i-)", "M0", "VALUE:I" ], [ "T1c", "N0(i+)", "M0", "VALUE:I" ], [ "T1c", "N0(mol-)", "M0", "VALUE:I" ], [ "T1c", "N0(mol+)", "M0", "VALUE:I" ], [ "T1c", "N1", "M0", "VALUE:IIA" ], [ "T1c", "N1a", "M0", "VALUE:IIA" ], [ "T1c", "N1b", "M0", "VALUE:IIA" ], [ "T1c", "N1c", "M0", "VALUE:IIA" ], [ "T1c", "N1mi", "M0", "VALUE:IIA" ], [ "T1c", "N1NOS", "M0", "VALUE:IIA" ], [ "T1c", "N2a", "M0", "VALUE:IIIA" ], [ "T1c", "N2b", "M0", "VALUE:IIIA" ], [ "T1c", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1c", "N3a", "M0", "VALUE:IIIC" ], [ "T1c", "N3b", "M0", "VALUE:IIIC" ], [ "T1c", "N3c", "M0", "VALUE:IIIC" ], [ "T1c", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N0(i-)", "M0", "VALUE:I" ], [ "T1NOS", "N0(i+)", "M0", "VALUE:I" ], [ "T1NOS", "N0(mol-)", "M0", "VALUE:I" ], [ "T1NOS", "N0(mol+)", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "VALUE:IIA" ], [ "T1NOS", "N1c", "M0", "VALUE:IIA" ], [ "T1NOS", "N1mi", "M0", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "VALUE:IIIA" ], [ "T1NOS", "N2b", "M0", "VALUE:IIIA" ], [ "T1NOS", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1NOS", "N3a", "M0", "VALUE:IIIC" ], [ "T1NOS", "N3b", "M0", "VALUE:IIIC" ], [ "T1NOS", "N3c", "M0", "VALUE:IIIC" ], [ "T1NOS", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IIA" ], [ "T2", "N0(i-)", "M0", "VALUE:IIA" ], [ "T2", "N0(i+)", "M0", "VALUE:IIA" ], [ "T2", "N0(mol-)", "M0", "VALUE:IIA" ], [ "T2", "N0(mol+)", "M0", "VALUE:IIA" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "N1a", "M0", "VALUE:IIB" ], [ "T2", "N1b", "M0", "VALUE:IIB" ], [ "T2", "N1c", "M0", "VALUE:IIB" ], [ "T2", "N1mi", "M0", "VALUE:IIB" ], [ "T2", "N1NOS", "M0", "VALUE:IIB" ], [ "T2", "N2a", "M0", "VALUE:IIIA" ], [ "T2", "N2b", "M0", "VALUE:IIIA" ], [ "T2", "N2NOS", "M0", "VALUE:IIIA" ], [ "T2", "N3a", "M0", "VALUE:IIIC" ], [ "T2", "N3b", "M0", "VALUE:IIIC" ], [ "T2", "N3c", "M0", "VALUE:IIIC" ], [ "T2", "N3NOS", "M0", "VALUE:IIIC" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N0(i-)", "M0", "VALUE:IIB" ], [ "T3", "N0(i+)", "M0", "VALUE:IIB" ], [ "T3", "N0(mol-)", "M0", "VALUE:IIB" ], [ "T3", "N0(mol+)", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N1a", "M0", "VALUE:IIIA" ], [ "T3", "N1b", "M0", "VALUE:IIIA" ], [ "T3", "N1c", "M0", "VALUE:IIIA" ], [ "T3", "N1mi", "M0", "VALUE:IIIA" ], [ "T3", "N1NOS", "M0", "VALUE:IIIA" ], [ "T3", "N2a", "M0", "VALUE:IIIA" ], [ "T3", "N2b", "M0", "VALUE:IIIA" ], [ "T3", "N2NOS", "M0", "VALUE:IIIA" ], [ "T3", "N3a", "M0", "VALUE:IIIC" ], [ "T3", "N3b", "M0", "VALUE:IIIC" ], [ "T3", "N3c", "M0", "VALUE:IIIC" ], [ "T3", "N3NOS", "M0", "VALUE:IIIC" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IIIB" ], [ "T4a", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4a", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4a", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4a", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4a", "N1", "M0", "VALUE:IIIB" ], [ "T4a", "N1a", "M0", "VALUE:IIIB" ], [ "T4a", "N1b", "M0", "VALUE:IIIB" ], [ "T4a", "N1c", "M0", "VALUE:IIIB" ], [ "T4a", "N1mi", "M0", "VALUE:IIIB" ], [ "T4a", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4a", "N2a", "M0", "VALUE:IIIB" ], [ "T4a", "N2b", "M0", "VALUE:IIIB" ], [ "T4a", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4a", "N3a", "M0", "VALUE:IIIC" ], [ "T4a", "N3b", "M0", "VALUE:IIIC" ], [ "T4a", "N3c", "M0", "VALUE:IIIC" ], [ "T4a", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4a", "NX", "M0", "VALUE:IIINOS" ], [ "T4b", "N0", "M0", "VALUE:IIIB" ], [ "T4b", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4b", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4b", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4b", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "VALUE:IIIB" ], [ "T4b", "N1a", "M0", "VALUE:IIIB" ], [ "T4b", "N1b", "M0", "VALUE:IIIB" ], [ "T4b", "N1c", "M0", "VALUE:IIIB" ], [ "T4b", "N1mi", "M0", "VALUE:IIIB" ], [ "T4b", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4b", "N2a", "M0", "VALUE:IIIB" ], [ "T4b", "N2b", "M0", "VALUE:IIIB" ], [ "T4b", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4b", "N3a", "M0", "VALUE:IIIC" ], [ "T4b", "N3b", "M0", "VALUE:IIIC" ], [ "T4b", "N3c", "M0", "VALUE:IIIC" ], [ "T4b", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "VALUE:IIINOS" ], [ "T4c", "N0", "M0", "VALUE:IIIB" ], [ "T4c", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4c", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4c", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4c", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4c", "N1", "M0", "VALUE:IIIB" ], [ "T4c", "N1a", "M0", "VALUE:IIIB" ], [ "T4c", "N1b", "M0", "VALUE:IIIB" ], [ "T4c", "N1c", "M0", "VALUE:IIIB" ], [ "T4c", "N1mi", "M0", "VALUE:IIIB" ], [ "T4c", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4c", "N2a", "M0", "VALUE:IIIB" ], [ "T4c", "N2b", "M0", "VALUE:IIIB" ], [ "T4c", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4c", "N3a", "M0", "VALUE:IIIC" ], [ "T4c", "N3b", "M0", "VALUE:IIIC" ], [ "T4c", "N3c", "M0", "VALUE:IIIC" ], [ "T4c", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4c", "NX", "M0", "VALUE:IIINOS" ], [ "T4d", "N0", "M0", "VALUE:IIIB" ], [ "T4d", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4d", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4d", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4d", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4d", "N1", "M0", "VALUE:IIIB" ], [ "T4d", "N1a", "M0", "VALUE:IIIB" ], [ "T4d", "N1b", "M0", "VALUE:IIIB" ], [ "T4d", "N1c", "M0", "VALUE:IIIB" ], [ "T4d", "N1mi", "M0", "VALUE:IIIB" ], [ "T4d", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4d", "N2a", "M0", "VALUE:IIIB" ], [ "T4d", "N2b", "M0", "VALUE:IIIB" ], [ "T4d", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4d", "N3a", "M0", "VALUE:IIIC" ], [ "T4d", "N3b", "M0", "VALUE:IIIC" ], [ "T4d", "N3c", "M0", "VALUE:IIIC" ], [ "T4d", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4d", "NX", "M0", "VALUE:IIINOS" ], [ "T4NOS", "N0", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1a", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1b", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1c", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1mi", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4NOS", "N2a", "M0", "VALUE:IIIB" ], [ "T4NOS", "N2b", "M0", "VALUE:IIIB" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4NOS", "N3a", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3b", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3c", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N0(i-)", "M0", "VALUE:UNK" ], [ "TX", "N0(i+)", "M0", "VALUE:UNK" ], [ "TX", "N0(mol-)", "M0", "VALUE:UNK" ], [ "TX", "N0(mol+)", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M0", "VALUE:UNK" ], [ "TX", "N1b", "M0", "VALUE:UNK" ], [ "TX", "N1c", "M0", "VALUE:UNK" ], [ "TX", "N1mi", "M0", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IIINOS" ], [ "TX", "N2b", "M0", "VALUE:IIINOS" ], [ "TX", "N2NOS", "M0", "VALUE:IIINOS" ], [ "TX", "N3a", "M0", "VALUE:IIIC" ], [ "TX", "N3b", "M0", "VALUE:IIIC" ], [ "TX", "N3c", "M0", "VALUE:IIIC" ], [ "TX", "N3NOS", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N0(i-)", "M1", "VALUE:IV" ], [ "T0", "N0(i+)", "M1", "VALUE:IV" ], [ "T0", "N0(mol-)", "M1", "VALUE:IV" ], [ "T0", "N0(mol+)", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N1a", "M1", "VALUE:IV" ], [ "T0", "N1b", "M1", "VALUE:IV" ], [ "T0", "N1c", "M1", "VALUE:IV" ], [ "T0", "N1mi", "M1", "VALUE:IV" ], [ "T0", "N1NOS", "M1", "VALUE:IV" ], [ "T0", "N2a", "M1", "VALUE:IV" ], [ "T0", "N2b", "M1", "VALUE:IV" ], [ "T0", "N2NOS", "M1", "VALUE:IV" ], [ "T0", "N3a", "M1", "VALUE:IV" ], [ "T0", "N3b", "M1", "VALUE:IV" ], [ "T0", "N3c", "M1", "VALUE:IV" ], [ "T0", "N3NOS", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N0(i-)", "M1", "ERROR:" ], [ "Tis", "N0(i+)", "M1", "ERROR:" ], [ "Tis", "N0(mol-)", "M1", "ERROR:" ], [ "Tis", "N0(mol+)", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N1a", "M1", "ERROR:" ], [ "Tis", "N1b", "M1", "ERROR:" ], [ "Tis", "N1c", "M1", "ERROR:" ], [ "Tis", "N1mi", "M1", "ERROR:" ], [ "Tis", "N1NOS", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3a", "M1", "ERROR:" ], [ "Tis", "N3b", "M1", "ERROR:" ], [ "Tis", "N3c", "M1", "ERROR:" ], [ "Tis", "N3NOS", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1mi", "N0", "M1", "VALUE:IV" ], [ "T1mi", "N0(i-)", "M1", "VALUE:IV" ], [ "T1mi", "N0(i+)", "M1", "VALUE:IV" ], [ "T1mi", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1mi", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1mi", "N1", "M1", "VALUE:IV" ], [ "T1mi", "N1a", "M1", "VALUE:IV" ], [ "T1mi", "N1b", "M1", "VALUE:IV" ], [ "T1mi", "N1c", "M1", "VALUE:IV" ], [ "T1mi", "N1mi", "M1", "VALUE:IV" ], [ "T1mi", "N1NOS", "M1", "VALUE:IV" ], [ "T1mi", "N2a", "M1", "VALUE:IV" ], [ "T1mi", "N2b", "M1", "VALUE:IV" ], [ "T1mi", "N2NOS", "M1", "VALUE:IV" ], [ "T1mi", "N3a", "M1", "VALUE:IV" ], [ "T1mi", "N3b", "M1", "VALUE:IV" ], [ "T1mi", "N3c", "M1", "VALUE:IV" ], [ "T1mi", "N3NOS", "M1", "VALUE:IV" ], [ "T1mi", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N0(i-)", "M1", "VALUE:IV" ], [ "T1a", "N0(i+)", "M1", "VALUE:IV" ], [ "T1a", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1a", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N1a", "M1", "VALUE:IV" ], [ "T1a", "N1b", "M1", "VALUE:IV" ], [ "T1a", "N1c", "M1", "VALUE:IV" ], [ "T1a", "N1mi", "M1", "VALUE:IV" ], [ "T1a", "N1NOS", "M1", "VALUE:IV" ], [ "T1a", "N2a", "M1", "VALUE:IV" ], [ "T1a", "N2b", "M1", "VALUE:IV" ], [ "T1a", "N2NOS", "M1", "VALUE:IV" ], [ "T1a", "N3a", "M1", "VALUE:IV" ], [ "T1a", "N3b", "M1", "VALUE:IV" ], [ "T1a", "N3c", "M1", "VALUE:IV" ], [ "T1a", "N3NOS", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N0(i-)", "M1", "VALUE:IV" ], [ "T1b", "N0(i+)", "M1", "VALUE:IV" ], [ "T1b", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1b", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N1a", "M1", "VALUE:IV" ], [ "T1b", "N1b", "M1", "VALUE:IV" ], [ "T1b", "N1c", "M1", "VALUE:IV" ], [ "T1b", "N1mi", "M1", "VALUE:IV" ], [ "T1b", "N1NOS", "M1", "VALUE:IV" ], [ "T1b", "N2a", "M1", "VALUE:IV" ], [ "T1b", "N2b", "M1", "VALUE:IV" ], [ "T1b", "N2NOS", "M1", "VALUE:IV" ], [ "T1b", "N3a", "M1", "VALUE:IV" ], [ "T1b", "N3b", "M1", "VALUE:IV" ], [ "T1b", "N3c", "M1", "VALUE:IV" ], [ "T1b", "N3NOS", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N0(i-)", "M1", "VALUE:IV" ], [ "T1c", "N0(i+)", "M1", "VALUE:IV" ], [ "T1c", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1c", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "N1a", "M1", "VALUE:IV" ], [ "T1c", "N1b", "M1", "VALUE:IV" ], [ "T1c", "N1c", "M1", "VALUE:IV" ], [ "T1c", "N1mi", "M1", "VALUE:IV" ], [ "T1c", "N1NOS", "M1", "VALUE:IV" ], [ "T1c", "N2a", "M1", "VALUE:IV" ], [ "T1c", "N2b", "M1", "VALUE:IV" ], [ "T1c", "N2NOS", "M1", "VALUE:IV" ], [ "T1c", "N3a", "M1", "VALUE:IV" ], [ "T1c", "N3b", "M1", "VALUE:IV" ], [ "T1c", "N3c", "M1", "VALUE:IV" ], [ "T1c", "N3NOS", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N0(i-)", "M1", "VALUE:IV" ], [ "T1NOS", "N0(i+)", "M1", "VALUE:IV" ], [ "T1NOS", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1NOS", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N1a", "M1", "VALUE:IV" ], [ "T1NOS", "N1b", "M1", "VALUE:IV" ], [ "T1NOS", "N1c", "M1", "VALUE:IV" ], [ "T1NOS", "N1mi", "M1", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1", "VALUE:IV" ], [ "T1NOS", "N2a", "M1", "VALUE:IV" ], [ "T1NOS", "N2b", "M1", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1", "VALUE:IV" ], [ "T1NOS", "N3a", "M1", "VALUE:IV" ], [ "T1NOS", "N3b", "M1", "VALUE:IV" ], [ "T1NOS", "N3c", "M1", "VALUE:IV" ], [ "T1NOS", "N3NOS", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N0(i-)", "M1", "VALUE:IV" ], [ "T2", "N0(i+)", "M1", "VALUE:IV" ], [ "T2", "N0(mol-)", "M1", "VALUE:IV" ], [ "T2", "N0(mol+)", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N1a", "M1", "VALUE:IV" ], [ "T2", "N1b", "M1", "VALUE:IV" ], [ "T2", "N1c", "M1", "VALUE:IV" ], [ "T2", "N1mi", "M1", "VALUE:IV" ], [ "T2", "N1NOS", "M1", "VALUE:IV" ], [ "T2", "N2a", "M1", "VALUE:IV" ], [ "T2", "N2b", "M1", "VALUE:IV" ], [ "T2", "N2NOS", "M1", "VALUE:IV" ], [ "T2", "N3a", "M1", "VALUE:IV" ], [ "T2", "N3b", "M1", "VALUE:IV" ], [ "T2", "N3c", "M1", "VALUE:IV" ], [ "T2", "N3NOS", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N0(i-)", "M1", "VALUE:IV" ], [ "T3", "N0(i+)", "M1", "VALUE:IV" ], [ "T3", "N0(mol-)", "M1", "VALUE:IV" ], [ "T3", "N0(mol+)", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N1a", "M1", "VALUE:IV" ], [ "T3", "N1b", "M1", "VALUE:IV" ], [ "T3", "N1c", "M1", "VALUE:IV" ], [ "T3", "N1mi", "M1", "VALUE:IV" ], [ "T3", "N1NOS", "M1", "VALUE:IV" ], [ "T3", "N2a", "M1", "VALUE:IV" ], [ "T3", "N2b", "M1", "VALUE:IV" ], [ "T3", "N2NOS", "M1", "VALUE:IV" ], [ "T3", "N3a", "M1", "VALUE:IV" ], [ "T3", "N3b", "M1", "VALUE:IV" ], [ "T3", "N3c", "M1", "VALUE:IV" ], [ "T3", "N3NOS", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4a", "N0", "M1", "VALUE:IV" ], [ "T4a", "N0(i-)", "M1", "VALUE:IV" ], [ "T4a", "N0(i+)", "M1", "VALUE:IV" ], [ "T4a", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4a", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4a", "N1", "M1", "VALUE:IV" ], [ "T4a", "N1a", "M1", "VALUE:IV" ], [ "T4a", "N1b", "M1", "VALUE:IV" ], [ "T4a", "N1c", "M1", "VALUE:IV" ], [ "T4a", "N1mi", "M1", "VALUE:IV" ], [ "T4a", "N1NOS", "M1", "VALUE:IV" ], [ "T4a", "N2a", "M1", "VALUE:IV" ], [ "T4a", "N2b", "M1", "VALUE:IV" ], [ "T4a", "N2NOS", "M1", "VALUE:IV" ], [ "T4a", "N3a", "M1", "VALUE:IV" ], [ "T4a", "N3b", "M1", "VALUE:IV" ], [ "T4a", "N3c", "M1", "VALUE:IV" ], [ "T4a", "N3NOS", "M1", "VALUE:IV" ], [ "T4a", "NX", "M1", "VALUE:IV" ], [ "T4b", "N0", "M1", "VALUE:IV" ], [ "T4b", "N0(i-)", "M1", "VALUE:IV" ], [ "T4b", "N0(i+)", "M1", "VALUE:IV" ], [ "T4b", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4b", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4b", "N1", "M1", "VALUE:IV" ], [ "T4b", "N1a", "M1", "VALUE:IV" ], [ "T4b", "N1b", "M1", "VALUE:IV" ], [ "T4b", "N1c", "M1", "VALUE:IV" ], [ "T4b", "N1mi", "M1", "VALUE:IV" ], [ "T4b", "N1NOS", "M1", "VALUE:IV" ], [ "T4b", "N2a", "M1", "VALUE:IV" ], [ "T4b", "N2b", "M1", "VALUE:IV" ], [ "T4b", "N2NOS", "M1", "VALUE:IV" ], [ "T4b", "N3a", "M1", "VALUE:IV" ], [ "T4b", "N3b", "M1", "VALUE:IV" ], [ "T4b", "N3c", "M1", "VALUE:IV" ], [ "T4b", "N3NOS", "M1", "VALUE:IV" ], [ "T4b", "NX", "M1", "VALUE:IV" ], [ "T4c", "N0", "M1", "VALUE:IV" ], [ "T4c", "N0(i-)", "M1", "VALUE:IV" ], [ "T4c", "N0(i+)", "M1", "VALUE:IV" ], [ "T4c", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4c", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4c", "N1", "M1", "VALUE:IV" ], [ "T4c", "N1a", "M1", "VALUE:IV" ], [ "T4c", "N1b", "M1", "VALUE:IV" ], [ "T4c", "N1c", "M1", "VALUE:IV" ], [ "T4c", "N1mi", "M1", "VALUE:IV" ], [ "T4c", "N1NOS", "M1", "VALUE:IV" ], [ "T4c", "N2a", "M1", "VALUE:IV" ], [ "T4c", "N2b", "M1", "VALUE:IV" ], [ "T4c", "N2NOS", "M1", "VALUE:IV" ], [ "T4c", "N3a", "M1", "VALUE:IV" ], [ "T4c", "N3b", "M1", "VALUE:IV" ], [ "T4c", "N3c", "M1", "VALUE:IV" ], [ "T4c", "N3NOS", "M1", "VALUE:IV" ], [ "T4c", "NX", "M1", "VALUE:IV" ], [ "T4d", "N0", "M1", "VALUE:IV" ], [ "T4d", "N0(i-)", "M1", "VALUE:IV" ], [ "T4d", "N0(i+)", "M1", "VALUE:IV" ], [ "T4d", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4d", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4d", "N1", "M1", "VALUE:IV" ], [ "T4d", "N1a", "M1", "VALUE:IV" ], [ "T4d", "N1b", "M1", "VALUE:IV" ], [ "T4d", "N1c", "M1", "VALUE:IV" ], [ "T4d", "N1mi", "M1", "VALUE:IV" ], [ "T4d", "N1NOS", "M1", "VALUE:IV" ], [ "T4d", "N2a", "M1", "VALUE:IV" ], [ "T4d", "N2b", "M1", "VALUE:IV" ], [ "T4d", "N2NOS", "M1", "VALUE:IV" ], [ "T4d", "N3a", "M1", "VALUE:IV" ], [ "T4d", "N3b", "M1", "VALUE:IV" ], [ "T4d", "N3c", "M1", "VALUE:IV" ], [ "T4d", "N3NOS", "M1", "VALUE:IV" ], [ "T4d", "NX", "M1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "VALUE:IV" ], [ "T4NOS", "N0(i-)", "M1", "VALUE:IV" ], [ "T4NOS", "N0(i+)", "M1", "VALUE:IV" ], [ "T4NOS", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4NOS", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "VALUE:IV" ], [ "T4NOS", "N1a", "M1", "VALUE:IV" ], [ "T4NOS", "N1b", "M1", "VALUE:IV" ], [ "T4NOS", "N1c", "M1", "VALUE:IV" ], [ "T4NOS", "N1mi", "M1", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IV" ], [ "T4NOS", "N2a", "M1", "VALUE:IV" ], [ "T4NOS", "N2b", "M1", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IV" ], [ "T4NOS", "N3a", "M1", "VALUE:IV" ], [ "T4NOS", "N3b", "M1", "VALUE:IV" ], [ "T4NOS", "N3c", "M1", "VALUE:IV" ], [ "T4NOS", "N3NOS", "M1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N0(i-)", "M1", "VALUE:IV" ], [ "TX", "N0(i+)", "M1", "VALUE:IV" ], [ "TX", "N0(mol-)", "M1", "VALUE:IV" ], [ "TX", "N0(mol+)", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N1a", "M1", "VALUE:IV" ], [ "TX", "N1b", "M1", "VALUE:IV" ], [ "TX", "N1c", "M1", "VALUE:IV" ], [ "TX", "N1mi", "M1", "VALUE:IV" ], [ "TX", "N1NOS", "M1", "VALUE:IV" ], [ "TX", "N2a", "M1", "VALUE:IV" ], [ "TX", "N2b", "M1", "VALUE:IV" ], [ "TX", "N2NOS", "M1", "VALUE:IV" ], [ "TX", "N3a", "M1", "VALUE:IV" ], [ "TX", "N3b", "M1", "VALUE:IV" ], [ "TX", "N3c", "M1", "VALUE:IV" ], [ "TX", "N3NOS", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N0(i-)", "MX", "VALUE:UNK" ], [ "T0", "N0(i+)", "MX", "VALUE:UNK" ], [ "T0", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T0", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N1a", "MX", "VALUE:UNK" ], [ "T0", "N1b", "MX", "VALUE:UNK" ], [ "T0", "N1c", "MX", "VALUE:UNK" ], [ "T0", "N1mi", "MX", "VALUE:UNK" ], [ "T0", "N1NOS", "MX", "VALUE:UNK" ], [ "T0", "N2a", "MX", "VALUE:UNK" ], [ "T0", "N2b", "MX", "VALUE:UNK" ], [ "T0", "N2NOS", "MX", "VALUE:UNK" ], [ "T0", "N3a", "MX", "VALUE:UNK" ], [ "T0", "N3b", "MX", "VALUE:UNK" ], [ "T0", "N3c", "MX", "VALUE:UNK" ], [ "T0", "N3NOS", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N0(i-)", "MX", "VALUE:0" ], [ "Tis", "N0(i+)", "MX", "VALUE:0" ], [ "Tis", "N0(mol-)", "MX", "VALUE:0" ], [ "Tis", "N0(mol+)", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N1a", "MX", "ERROR:" ], [ "Tis", "N1b", "MX", "ERROR:" ], [ "Tis", "N1c", "MX", "ERROR:" ], [ "Tis", "N1mi", "MX", "ERROR:" ], [ "Tis", "N1NOS", "MX", "ERROR:" ], [ "Tis", "N2a", "MX", "ERROR:" ], [ "Tis", "N2b", "MX", "ERROR:" ], [ "Tis", "N2NOS", "MX", "ERROR:" ], [ "Tis", "N3a", "MX", "ERROR:" ], [ "Tis", "N3b", "MX", "ERROR:" ], [ "Tis", "N3c", "MX", "ERROR:" ], [ "Tis", "N3NOS", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1mi", "N0", "MX", "VALUE:UNK" ], [ "T1mi", "N0(i-)", "MX", "VALUE:UNK" ], [ "T1mi", "N0(i+)", "MX", "VALUE:UNK" ], [ "T1mi", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T1mi", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T1mi", "N1", "MX", "VALUE:UNK" ], [ "T1mi", "N1a", "MX", "VALUE:UNK" ], [ "T1mi", "N1b", "MX", "VALUE:UNK" ], [ "T1mi", "N1c", "MX", "VALUE:UNK" ], [ "T1mi", "N1mi", "MX", "VALUE:UNK" ], [ "T1mi", "N1NOS", "MX", "VALUE:UNK" ], [ "T1mi", "N2a", "MX", "VALUE:UNK" ], [ "T1mi", "N2b", "MX", "VALUE:UNK" ], [ "T1mi", "N2NOS", "MX", "VALUE:UNK" ], [ "T1mi", "N3a", "MX", "VALUE:UNK" ], [ "T1mi", "N3b", "MX", "VALUE:UNK" ], [ "T1mi", "N3c", "MX", "VALUE:UNK" ], [ "T1mi", "N3NOS", "MX", "VALUE:UNK" ], [ "T1mi", "NX", "MX", "VALUE:UNK" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N0(i-)", "MX", "VALUE:UNK" ], [ "T1a", "N0(i+)", "MX", "VALUE:UNK" ], [ "T1a", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T1a", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "N1a", "MX", "VALUE:UNK" ], [ "T1a", "N1b", "MX", "VALUE:UNK" ], [ "T1a", "N1c", "MX", "VALUE:UNK" ], [ "T1a", "N1mi", "MX", "VALUE:UNK" ], [ "T1a", "N1NOS", "MX", "VALUE:UNK" ], [ "T1a", "N2a", "MX", "VALUE:UNK" ], [ "T1a", "N2b", "MX", "VALUE:UNK" ], [ "T1a", "N2NOS", "MX", "VALUE:UNK" ], [ "T1a", "N3a", "MX", "VALUE:UNK" ], [ "T1a", "N3b", "MX", "VALUE:UNK" ], [ "T1a", "N3c", "MX", "VALUE:UNK" ], [ "T1a", "N3NOS", "MX", "VALUE:UNK" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N0(i-)", "MX", "VALUE:UNK" ], [ "T1b", "N0(i+)", "MX", "VALUE:UNK" ], [ "T1b", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T1b", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "N1a", "MX", "VALUE:UNK" ], [ "T1b", "N1b", "MX", "VALUE:UNK" ], [ "T1b", "N1c", "MX", "VALUE:UNK" ], [ "T1b", "N1mi", "MX", "VALUE:UNK" ], [ "T1b", "N1NOS", "MX", "VALUE:UNK" ], [ "T1b", "N2a", "MX", "VALUE:UNK" ], [ "T1b", "N2b", "MX", "VALUE:UNK" ], [ "T1b", "N2NOS", "MX", "VALUE:UNK" ], [ "T1b", "N3a", "MX", "VALUE:UNK" ], [ "T1b", "N3b", "MX", "VALUE:UNK" ], [ "T1b", "N3c", "MX", "VALUE:UNK" ], [ "T1b", "N3NOS", "MX", "VALUE:UNK" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1c", "N0", "MX", "VALUE:UNK" ], [ "T1c", "N0(i-)", "MX", "VALUE:UNK" ], [ "T1c", "N0(i+)", "MX", "VALUE:UNK" ], [ "T1c", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T1c", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T1c", "N1", "MX", "VALUE:UNK" ], [ "T1c", "N1a", "MX", "VALUE:UNK" ], [ "T1c", "N1b", "MX", "VALUE:UNK" ], [ "T1c", "N1c", "MX", "VALUE:UNK" ], [ "T1c", "N1mi", "MX", "VALUE:UNK" ], [ "T1c", "N1NOS", "MX", "VALUE:UNK" ], [ "T1c", "N2a", "MX", "VALUE:UNK" ], [ "T1c", "N2b", "MX", "VALUE:UNK" ], [ "T1c", "N2NOS", "MX", "VALUE:UNK" ], [ "T1c", "N3a", "MX", "VALUE:UNK" ], [ "T1c", "N3b", "MX", "VALUE:UNK" ], [ "T1c", "N3c", "MX", "VALUE:UNK" ], [ "T1c", "N3NOS", "MX", "VALUE:UNK" ], [ "T1c", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N0(i-)", "MX", "VALUE:UNK" ], [ "T1NOS", "N0(i+)", "MX", "VALUE:UNK" ], [ "T1NOS", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T1NOS", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "N1a", "MX", "VALUE:UNK" ], [ "T1NOS", "N1b", "MX", "VALUE:UNK" ], [ "T1NOS", "N1c", "MX", "VALUE:UNK" ], [ "T1NOS", "N1mi", "MX", "VALUE:UNK" ], [ "T1NOS", "N1NOS", "MX", "VALUE:UNK" ], [ "T1NOS", "N2a", "MX", "VALUE:UNK" ], [ "T1NOS", "N2b", "MX", "VALUE:UNK" ], [ "T1NOS", "N2NOS", "MX", "VALUE:UNK" ], [ "T1NOS", "N3a", "MX", "VALUE:UNK" ], [ "T1NOS", "N3b", "MX", "VALUE:UNK" ], [ "T1NOS", "N3c", "MX", "VALUE:UNK" ], [ "T1NOS", "N3NOS", "MX", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N0(i-)", "MX", "VALUE:UNK" ], [ "T2", "N0(i+)", "MX", "VALUE:UNK" ], [ "T2", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T2", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N1a", "MX", "VALUE:UNK" ], [ "T2", "N1b", "MX", "VALUE:UNK" ], [ "T2", "N1c", "MX", "VALUE:UNK" ], [ "T2", "N1mi", "MX", "VALUE:UNK" ], [ "T2", "N1NOS", "MX", "VALUE:UNK" ], [ "T2", "N2a", "MX", "VALUE:UNK" ], [ "T2", "N2b", "MX", "VALUE:UNK" ], [ "T2", "N2NOS", "MX", "VALUE:UNK" ], [ "T2", "N3a", "MX", "VALUE:UNK" ], [ "T2", "N3b", "MX", "VALUE:UNK" ], [ "T2", "N3c", "MX", "VALUE:UNK" ], [ "T2", "N3NOS", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N0(i-)", "MX", "VALUE:UNK" ], [ "T3", "N0(i+)", "MX", "VALUE:UNK" ], [ "T3", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T3", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N1a", "MX", "VALUE:UNK" ], [ "T3", "N1b", "MX", "VALUE:UNK" ], [ "T3", "N1c", "MX", "VALUE:UNK" ], [ "T3", "N1mi", "MX", "VALUE:UNK" ], [ "T3", "N1NOS", "MX", "VALUE:UNK" ], [ "T3", "N2a", "MX", "VALUE:UNK" ], [ "T3", "N2b", "MX", "VALUE:UNK" ], [ "T3", "N2NOS", "MX", "VALUE:UNK" ], [ "T3", "N3a", "MX", "VALUE:UNK" ], [ "T3", "N3b", "MX", "VALUE:UNK" ], [ "T3", "N3c", "MX", "VALUE:UNK" ], [ "T3", "N3NOS", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "MX", "VALUE:UNK" ], [ "T4a", "N0(i-)", "MX", "VALUE:UNK" ], [ "T4a", "N0(i+)", "MX", "VALUE:UNK" ], [ "T4a", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T4a", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T4a", "N1", "MX", "VALUE:UNK" ], [ "T4a", "N1a", "MX", "VALUE:UNK" ], [ "T4a", "N1b", "MX", "VALUE:UNK" ], [ "T4a", "N1c", "MX", "VALUE:UNK" ], [ "T4a", "N1mi", "MX", "VALUE:UNK" ], [ "T4a", "N1NOS", "MX", "VALUE:UNK" ], [ "T4a", "N2a", "MX", "VALUE:UNK" ], [ "T4a", "N2b", "MX", "VALUE:UNK" ], [ "T4a", "N2NOS", "MX", "VALUE:UNK" ], [ "T4a", "N3a", "MX", "VALUE:UNK" ], [ "T4a", "N3b", "MX", "VALUE:UNK" ], [ "T4a", "N3c", "MX", "VALUE:UNK" ], [ "T4a", "N3NOS", "MX", "VALUE:UNK" ], [ "T4a", "NX", "MX", "VALUE:UNK" ], [ "T4b", "N0", "MX", "VALUE:UNK" ], [ "T4b", "N0(i-)", "MX", "VALUE:UNK" ], [ "T4b", "N0(i+)", "MX", "VALUE:UNK" ], [ "T4b", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T4b", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T4b", "N1", "MX", "VALUE:UNK" ], [ "T4b", "N1a", "MX", "VALUE:UNK" ], [ "T4b", "N1b", "MX", "VALUE:UNK" ], [ "T4b", "N1c", "MX", "VALUE:UNK" ], [ "T4b", "N1mi", "MX", "VALUE:UNK" ], [ "T4b", "N1NOS", "MX", "VALUE:UNK" ], [ "T4b", "N2a", "MX", "VALUE:UNK" ], [ "T4b", "N2b", "MX", "VALUE:UNK" ], [ "T4b", "N2NOS", "MX", "VALUE:UNK" ], [ "T4b", "N3a", "MX", "VALUE:UNK" ], [ "T4b", "N3b", "MX", "VALUE:UNK" ], [ "T4b", "N3c", "MX", "VALUE:UNK" ], [ "T4b", "N3NOS", "MX", "VALUE:UNK" ], [ "T4b", "NX", "MX", "VALUE:UNK" ], [ "T4c", "N0", "MX", "VALUE:UNK" ], [ "T4c", "N0(i-)", "MX", "VALUE:UNK" ], [ "T4c", "N0(i+)", "MX", "VALUE:UNK" ], [ "T4c", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T4c", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T4c", "N1", "MX", "VALUE:UNK" ], [ "T4c", "N1a", "MX", "VALUE:UNK" ], [ "T4c", "N1b", "MX", "VALUE:UNK" ], [ "T4c", "N1c", "MX", "VALUE:UNK" ], [ "T4c", "N1mi", "MX", "VALUE:UNK" ], [ "T4c", "N1NOS", "MX", "VALUE:UNK" ], [ "T4c", "N2a", "MX", "VALUE:UNK" ], [ "T4c", "N2b", "MX", "VALUE:UNK" ], [ "T4c", "N2NOS", "MX", "VALUE:UNK" ], [ "T4c", "N3a", "MX", "VALUE:UNK" ], [ "T4c", "N3b", "MX", "VALUE:UNK" ], [ "T4c", "N3c", "MX", "VALUE:UNK" ], [ "T4c", "N3NOS", "MX", "VALUE:UNK" ], [ "T4c", "NX", "MX", "VALUE:UNK" ], [ "T4d", "N0", "MX", "VALUE:UNK" ], [ "T4d", "N0(i-)", "MX", "VALUE:UNK" ], [ "T4d", "N0(i+)", "MX", "VALUE:UNK" ], [ "T4d", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T4d", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T4d", "N1", "MX", "VALUE:UNK" ], [ "T4d", "N1a", "MX", "VALUE:UNK" ], [ "T4d", "N1b", "MX", "VALUE:UNK" ], [ "T4d", "N1c", "MX", "VALUE:UNK" ], [ "T4d", "N1mi", "MX", "VALUE:UNK" ], [ "T4d", "N1NOS", "MX", "VALUE:UNK" ], [ "T4d", "N2a", "MX", "VALUE:UNK" ], [ "T4d", "N2b", "MX", "VALUE:UNK" ], [ "T4d", "N2NOS", "MX", "VALUE:UNK" ], [ "T4d", "N3a", "MX", "VALUE:UNK" ], [ "T4d", "N3b", "MX", "VALUE:UNK" ], [ "T4d", "N3c", "MX", "VALUE:UNK" ], [ "T4d", "N3NOS", "MX", "VALUE:UNK" ], [ "T4d", "NX", "MX", "VALUE:UNK" ], [ "T4NOS", "N0", "MX", "VALUE:UNK" ], [ "T4NOS", "N0(i-)", "MX", "VALUE:UNK" ], [ "T4NOS", "N0(i+)", "MX", "VALUE:UNK" ], [ "T4NOS", "N0(mol-)", "MX", "VALUE:UNK" ], [ "T4NOS", "N0(mol+)", "MX", "VALUE:UNK" ], [ "T4NOS", "N1", "MX", "VALUE:UNK" ], [ "T4NOS", "N1a", "MX", "VALUE:UNK" ], [ "T4NOS", "N1b", "MX", "VALUE:UNK" ], [ "T4NOS", "N1c", "MX", "VALUE:UNK" ], [ "T4NOS", "N1mi", "MX", "VALUE:UNK" ], [ "T4NOS", "N1NOS", "MX", "VALUE:UNK" ], [ "T4NOS", "N2a", "MX", "VALUE:UNK" ], [ "T4NOS", "N2b", "MX", "VALUE:UNK" ], [ "T4NOS", "N2NOS", "MX", "VALUE:UNK" ], [ "T4NOS", "N3a", "MX", "VALUE:UNK" ], [ "T4NOS", "N3b", "MX", "VALUE:UNK" ], [ "T4NOS", "N3c", "MX", "VALUE:UNK" ], [ "T4NOS", "N3NOS", "MX", "VALUE:UNK" ], [ "T4NOS", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N0(i-)", "MX", "VALUE:UNK" ], [ "TX", "N0(i+)", "MX", "VALUE:UNK" ], [ "TX", "N0(mol-)", "MX", "VALUE:UNK" ], [ "TX", "N0(mol+)", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N1a", "MX", "VALUE:UNK" ], [ "TX", "N1b", "MX", "VALUE:UNK" ], [ "TX", "N1c", "MX", "VALUE:UNK" ], [ "TX", "N1mi", "MX", "VALUE:UNK" ], [ "TX", "N1NOS", "MX", "VALUE:UNK" ], [ "TX", "N2a", "MX", "VALUE:UNK" ], [ "TX", "N2b", "MX", "VALUE:UNK" ], [ "TX", "N2NOS", "MX", "VALUE:UNK" ], [ "TX", "N3a", "MX", "VALUE:UNK" ], [ "TX", "N3b", "MX", "VALUE:UNK" ], [ "TX", "N3c", "MX", "VALUE:UNK" ], [ "TX", "N3NOS", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qag.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qag.json
deleted file mode 100644
index acda515c3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qag.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qag",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.132Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IA" ], [ "T1b", "N1", "M0", "VALUE:IIB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:IA" ], [ "T1NOS", "N1", "M0", "VALUE:IIB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qah.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qah.json
deleted file mode 100644
index 98812f2e6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qah.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qah",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.187Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IIA" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1a", "VALUE:IVA" ], [ "T0", "N1", "M1a", "VALUE:IVA" ], [ "T0", "NX", "M1a", "VALUE:IVA" ], [ "Tis", "N0", "M1a", "ERROR:" ], [ "Tis", "N1", "M1a", "ERROR:" ], [ "Tis", "NX", "M1a", "ERROR:" ], [ "T1", "N0", "M1a", "VALUE:IVA" ], [ "T1", "N1", "M1a", "VALUE:IVA" ], [ "T1", "NX", "M1a", "VALUE:IVA" ], [ "T2", "N0", "M1a", "VALUE:IVA" ], [ "T2", "N1", "M1a", "VALUE:IVA" ], [ "T2", "NX", "M1a", "VALUE:IVA" ], [ "T3", "N0", "M1a", "VALUE:IVA" ], [ "T3", "N1", "M1a", "VALUE:IVA" ], [ "T3", "NX", "M1a", "VALUE:IVA" ], [ "T4", "N0", "M1a", "VALUE:IVA" ], [ "T4", "N1", "M1a", "VALUE:IVA" ], [ "T4", "NX", "M1a", "VALUE:IVA" ], [ "TX", "N0", "M1a", "VALUE:IVA" ], [ "TX", "N1", "M1a", "VALUE:IVA" ], [ "TX", "NX", "M1a", "VALUE:IVA" ], [ "T0", "N0", "M1b", "VALUE:IVB" ], [ "T0", "N1", "M1b", "VALUE:IVB" ], [ "T0", "NX", "M1b", "VALUE:IVB" ], [ "Tis", "N0", "M1b", "ERROR:" ], [ "Tis", "N1", "M1b", "ERROR:" ], [ "Tis", "NX", "M1b", "ERROR:" ], [ "T1", "N0", "M1b", "VALUE:IVB" ], [ "T1", "N1", "M1b", "VALUE:IVB" ], [ "T1", "NX", "M1b", "VALUE:IVB" ], [ "T2", "N0", "M1b", "VALUE:IVB" ], [ "T2", "N1", "M1b", "VALUE:IVB" ], [ "T2", "NX", "M1b", "VALUE:IVB" ], [ "T3", "N0", "M1b", "VALUE:IVB" ], [ "T3", "N1", "M1b", "VALUE:IVB" ], [ "T3", "NX", "M1b", "VALUE:IVB" ], [ "T4", "N0", "M1b", "VALUE:IVB" ], [ "T4", "N1", "M1b", "VALUE:IVB" ], [ "T4", "NX", "M1b", "VALUE:IVB" ], [ "TX", "N0", "M1b", "VALUE:IVB" ], [ "TX", "N1", "M1b", "VALUE:IVB" ], [ "TX", "NX", "M1b", "VALUE:IVB" ], [ "T0", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "VALUE:IVNOS" ], [ "Tis", "N0", "M1NOS", "ERROR:" ], [ "Tis", "N1", "M1NOS", "ERROR:" ], [ "Tis", "NX", "M1NOS", "ERROR:" ], [ "T1", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T4", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T4", "N1", "M1NOS", "VALUE:IVNOS" ], [ "T4", "NX", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaj.json
deleted file mode 100644
index 8f637bb84..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaj.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "ajcc6_stage_qaj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "footnotes" : "- For T1a N0 M0, stage is based on grade as follows: if grade is 1, stage is I; if grade is 2, 3, or 4, stage is II; if grade is 9, stage is UNK.",
- "last_modified" : "2015-05-27T16:18:48.244Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "JUMP:ajcc6_stage_qaj_grade" ], [ "T1a", "N1", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:II" ], [ "T1b", "N1", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:II" ], [ "T1c", "N1", "M0", "VALUE:IV" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:II" ], [ "T1NOS", "N1", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:II" ], [ "T2c", "N1", "M0", "VALUE:IV" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:III" ], [ "T3a", "N1", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:III" ], [ "T3b", "N1", "M0", "VALUE:IV" ], [ "T3b", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:III" ], [ "T3NOS", "N1", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1a", "VALUE:IV" ], [ "T0", "N1", "M1a", "VALUE:IV" ], [ "T0", "NX", "M1a", "VALUE:IV" ], [ "T1a", "N0", "M1a", "VALUE:IV" ], [ "T1a", "N1", "M1a", "VALUE:IV" ], [ "T1a", "NX", "M1a", "VALUE:IV" ], [ "T1b", "N0", "M1a", "VALUE:IV" ], [ "T1b", "N1", "M1a", "VALUE:IV" ], [ "T1b", "NX", "M1a", "VALUE:IV" ], [ "T1c", "N0", "M1a", "VALUE:IV" ], [ "T1c", "N1", "M1a", "VALUE:IV" ], [ "T1c", "NX", "M1a", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "VALUE:IV" ], [ "T2a", "N0", "M1a", "VALUE:IV" ], [ "T2a", "N1", "M1a", "VALUE:IV" ], [ "T2a", "NX", "M1a", "VALUE:IV" ], [ "T2b", "N0", "M1a", "VALUE:IV" ], [ "T2b", "N1", "M1a", "VALUE:IV" ], [ "T2b", "NX", "M1a", "VALUE:IV" ], [ "T2c", "N0", "M1a", "VALUE:IV" ], [ "T2c", "N1", "M1a", "VALUE:IV" ], [ "T2c", "NX", "M1a", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "VALUE:IV" ], [ "T3a", "N0", "M1a", "VALUE:IV" ], [ "T3a", "N1", "M1a", "VALUE:IV" ], [ "T3a", "NX", "M1a", "VALUE:IV" ], [ "T3b", "N0", "M1a", "VALUE:IV" ], [ "T3b", "N1", "M1a", "VALUE:IV" ], [ "T3b", "NX", "M1a", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "VALUE:IV" ], [ "T4", "N0", "M1a", "VALUE:IV" ], [ "T4", "N1", "M1a", "VALUE:IV" ], [ "T4", "NX", "M1a", "VALUE:IV" ], [ "TX", "N0", "M1a", "VALUE:IV" ], [ "TX", "N1", "M1a", "VALUE:IV" ], [ "TX", "NX", "M1a", "VALUE:IV" ], [ "T0", "N0", "M1b", "VALUE:IV" ], [ "T0", "N1", "M1b", "VALUE:IV" ], [ "T0", "NX", "M1b", "VALUE:IV" ], [ "T1a", "N0", "M1b", "VALUE:IV" ], [ "T1a", "N1", "M1b", "VALUE:IV" ], [ "T1a", "NX", "M1b", "VALUE:IV" ], [ "T1b", "N0", "M1b", "VALUE:IV" ], [ "T1b", "N1", "M1b", "VALUE:IV" ], [ "T1b", "NX", "M1b", "VALUE:IV" ], [ "T1c", "N0", "M1b", "VALUE:IV" ], [ "T1c", "N1", "M1b", "VALUE:IV" ], [ "T1c", "NX", "M1b", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "VALUE:IV" ], [ "T2a", "N0", "M1b", "VALUE:IV" ], [ "T2a", "N1", "M1b", "VALUE:IV" ], [ "T2a", "NX", "M1b", "VALUE:IV" ], [ "T2b", "N0", "M1b", "VALUE:IV" ], [ "T2b", "N1", "M1b", "VALUE:IV" ], [ "T2b", "NX", "M1b", "VALUE:IV" ], [ "T2c", "N0", "M1b", "VALUE:IV" ], [ "T2c", "N1", "M1b", "VALUE:IV" ], [ "T2c", "NX", "M1b", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "VALUE:IV" ], [ "T3a", "N0", "M1b", "VALUE:IV" ], [ "T3a", "N1", "M1b", "VALUE:IV" ], [ "T3a", "NX", "M1b", "VALUE:IV" ], [ "T3b", "N0", "M1b", "VALUE:IV" ], [ "T3b", "N1", "M1b", "VALUE:IV" ], [ "T3b", "NX", "M1b", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "VALUE:IV" ], [ "T4", "N0", "M1b", "VALUE:IV" ], [ "T4", "N1", "M1b", "VALUE:IV" ], [ "T4", "NX", "M1b", "VALUE:IV" ], [ "TX", "N0", "M1b", "VALUE:IV" ], [ "TX", "N1", "M1b", "VALUE:IV" ], [ "TX", "NX", "M1b", "VALUE:IV" ], [ "T0", "N0", "M1c", "VALUE:IV" ], [ "T0", "N1", "M1c", "VALUE:IV" ], [ "T0", "NX", "M1c", "VALUE:IV" ], [ "T1a", "N0", "M1c", "VALUE:IV" ], [ "T1a", "N1", "M1c", "VALUE:IV" ], [ "T1a", "NX", "M1c", "VALUE:IV" ], [ "T1b", "N0", "M1c", "VALUE:IV" ], [ "T1b", "N1", "M1c", "VALUE:IV" ], [ "T1b", "NX", "M1c", "VALUE:IV" ], [ "T1c", "N0", "M1c", "VALUE:IV" ], [ "T1c", "N1", "M1c", "VALUE:IV" ], [ "T1c", "NX", "M1c", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "VALUE:IV" ], [ "T2a", "N0", "M1c", "VALUE:IV" ], [ "T2a", "N1", "M1c", "VALUE:IV" ], [ "T2a", "NX", "M1c", "VALUE:IV" ], [ "T2b", "N0", "M1c", "VALUE:IV" ], [ "T2b", "N1", "M1c", "VALUE:IV" ], [ "T2b", "NX", "M1c", "VALUE:IV" ], [ "T2c", "N0", "M1c", "VALUE:IV" ], [ "T2c", "N1", "M1c", "VALUE:IV" ], [ "T2c", "NX", "M1c", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "VALUE:IV" ], [ "T3a", "N0", "M1c", "VALUE:IV" ], [ "T3a", "N1", "M1c", "VALUE:IV" ], [ "T3a", "NX", "M1c", "VALUE:IV" ], [ "T3b", "N0", "M1c", "VALUE:IV" ], [ "T3b", "N1", "M1c", "VALUE:IV" ], [ "T3b", "NX", "M1c", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "VALUE:IV" ], [ "T4", "N0", "M1c", "VALUE:IV" ], [ "T4", "N1", "M1c", "VALUE:IV" ], [ "T4", "NX", "M1c", "VALUE:IV" ], [ "TX", "N0", "M1c", "VALUE:IV" ], [ "TX", "N1", "M1c", "VALUE:IV" ], [ "TX", "NX", "M1c", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:IV" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:IV" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1c", "N0", "MX", "VALUE:UNK" ], [ "T1c", "N1", "MX", "VALUE:IV" ], [ "T1c", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:IV" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:IV" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:IV" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2c", "N0", "MX", "VALUE:UNK" ], [ "T2c", "N1", "MX", "VALUE:IV" ], [ "T2c", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:IV" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:IV" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3b", "N0", "MX", "VALUE:UNK" ], [ "T3b", "N1", "MX", "VALUE:IV" ], [ "T3b", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:IV" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:IV" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaj_grade.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaj_grade.json
deleted file mode 100644
index 70c0271ee..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaj_grade.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "ajcc6_stage_qaj_grade",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage - Footnote",
- "title" : "AJCC TNM 6 Stage - Footnote: Stage Group determined by Grade",
- "footnotes" : "- For T1a N0 M0, stage is based on grade as follows: if grade is 1, stage is I; if grade is 2, 3, or 4, stage is II; if grade is 9, stage is UNK.",
- "last_modified" : "2015-05-27T16:18:48.314Z",
- "definition" : [ {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1", "VALUE:I" ], [ "2,3,4", "VALUE:II" ], [ "9", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qak.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qak.json
deleted file mode 100644
index 07226bc52..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qak.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qak",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.363Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2", "M0", "VALUE:UNK" ], [ "T0", "N3a", "M0", "VALUE:IVB" ], [ "T0", "N3b", "M0", "VALUE:IVB" ], [ "T0", "N3NOS", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3a", "M0", "ERROR:" ], [ "Tis", "N3b", "M0", "ERROR:" ], [ "Tis", "N3NOS", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "N2", "M0", "VALUE:III" ], [ "T1", "N3a", "M0", "VALUE:IVB" ], [ "T1", "N3b", "M0", "VALUE:IVB" ], [ "T1", "N3NOS", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIB" ], [ "T2a", "N2", "M0", "VALUE:III" ], [ "T2a", "N3a", "M0", "VALUE:IVB" ], [ "T2a", "N3b", "M0", "VALUE:IVB" ], [ "T2a", "N3NOS", "M0", "VALUE:IVB" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIB" ], [ "T2b", "N2", "M0", "VALUE:III" ], [ "T2b", "N3a", "M0", "VALUE:IVB" ], [ "T2b", "N3b", "M0", "VALUE:IVB" ], [ "T2b", "N3NOS", "M0", "VALUE:IVB" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIB" ], [ "T2NOS", "N2", "M0", "VALUE:III" ], [ "T2NOS", "N3a", "M0", "VALUE:IVB" ], [ "T2NOS", "N3b", "M0", "VALUE:IVB" ], [ "T2NOS", "N3NOS", "M0", "VALUE:IVB" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:III" ], [ "T3", "N3a", "M0", "VALUE:IVB" ], [ "T3", "N3b", "M0", "VALUE:IVB" ], [ "T3", "N3NOS", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "N2", "M0", "VALUE:IVA" ], [ "T4", "N3a", "M0", "VALUE:IVB" ], [ "T4", "N3b", "M0", "VALUE:IVB" ], [ "T4", "N3NOS", "M0", "VALUE:IVB" ], [ "T4", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3a", "M0", "VALUE:IVB" ], [ "TX", "N3b", "M0", "VALUE:IVB" ], [ "TX", "N3NOS", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2", "M1", "VALUE:IVC" ], [ "T0", "N3a", "M1", "VALUE:IVC" ], [ "T0", "N3b", "M1", "VALUE:IVC" ], [ "T0", "N3NOS", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3a", "M1", "ERROR:" ], [ "Tis", "N3b", "M1", "ERROR:" ], [ "Tis", "N3NOS", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N1", "M1", "VALUE:IVC" ], [ "T1", "N2", "M1", "VALUE:IVC" ], [ "T1", "N3a", "M1", "VALUE:IVC" ], [ "T1", "N3b", "M1", "VALUE:IVC" ], [ "T1", "N3NOS", "M1", "VALUE:IVC" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T2a", "N0", "M1", "VALUE:IVC" ], [ "T2a", "N1", "M1", "VALUE:IVC" ], [ "T2a", "N2", "M1", "VALUE:IVC" ], [ "T2a", "N3a", "M1", "VALUE:IVC" ], [ "T2a", "N3b", "M1", "VALUE:IVC" ], [ "T2a", "N3NOS", "M1", "VALUE:IVC" ], [ "T2a", "NX", "M1", "VALUE:IVC" ], [ "T2b", "N0", "M1", "VALUE:IVC" ], [ "T2b", "N1", "M1", "VALUE:IVC" ], [ "T2b", "N2", "M1", "VALUE:IVC" ], [ "T2b", "N3a", "M1", "VALUE:IVC" ], [ "T2b", "N3b", "M1", "VALUE:IVC" ], [ "T2b", "N3NOS", "M1", "VALUE:IVC" ], [ "T2b", "NX", "M1", "VALUE:IVC" ], [ "T2NOS", "N0", "M1", "VALUE:IVC" ], [ "T2NOS", "N1", "M1", "VALUE:IVC" ], [ "T2NOS", "N2", "M1", "VALUE:IVC" ], [ "T2NOS", "N3a", "M1", "VALUE:IVC" ], [ "T2NOS", "N3b", "M1", "VALUE:IVC" ], [ "T2NOS", "N3NOS", "M1", "VALUE:IVC" ], [ "T2NOS", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2", "M1", "VALUE:IVC" ], [ "T3", "N3a", "M1", "VALUE:IVC" ], [ "T3", "N3b", "M1", "VALUE:IVC" ], [ "T3", "N3NOS", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4", "N0", "M1", "VALUE:IVC" ], [ "T4", "N1", "M1", "VALUE:IVC" ], [ "T4", "N2", "M1", "VALUE:IVC" ], [ "T4", "N3a", "M1", "VALUE:IVC" ], [ "T4", "N3b", "M1", "VALUE:IVC" ], [ "T4", "N3NOS", "M1", "VALUE:IVC" ], [ "T4", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2", "M1", "VALUE:IVC" ], [ "TX", "N3a", "M1", "VALUE:IVC" ], [ "TX", "N3b", "M1", "VALUE:IVC" ], [ "TX", "N3NOS", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "N3a", "MX", "VALUE:IVNOS" ], [ "T0", "N3b", "MX", "VALUE:IVNOS" ], [ "T0", "N3NOS", "MX", "VALUE:IVNOS" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3a", "MX", "ERROR:" ], [ "Tis", "N3b", "MX", "ERROR:" ], [ "Tis", "N3NOS", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:UNK" ], [ "T1", "N3a", "MX", "VALUE:IVNOS" ], [ "T1", "N3b", "MX", "VALUE:IVNOS" ], [ "T1", "N3NOS", "MX", "VALUE:IVNOS" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:UNK" ], [ "T2a", "N2", "MX", "VALUE:UNK" ], [ "T2a", "N3a", "MX", "VALUE:IVNOS" ], [ "T2a", "N3b", "MX", "VALUE:IVNOS" ], [ "T2a", "N3NOS", "MX", "VALUE:IVNOS" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:UNK" ], [ "T2b", "N2", "MX", "VALUE:UNK" ], [ "T2b", "N3a", "MX", "VALUE:IVNOS" ], [ "T2b", "N3b", "MX", "VALUE:IVNOS" ], [ "T2b", "N3NOS", "MX", "VALUE:IVNOS" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:UNK" ], [ "T2NOS", "N2", "MX", "VALUE:UNK" ], [ "T2NOS", "N3a", "MX", "VALUE:IVNOS" ], [ "T2NOS", "N3b", "MX", "VALUE:IVNOS" ], [ "T2NOS", "N3NOS", "MX", "VALUE:IVNOS" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "N3a", "MX", "VALUE:IVNOS" ], [ "T3", "N3b", "MX", "VALUE:IVNOS" ], [ "T3", "N3NOS", "MX", "VALUE:IVNOS" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IVNOS" ], [ "T4", "N1", "MX", "VALUE:IVNOS" ], [ "T4", "N2", "MX", "VALUE:IVNOS" ], [ "T4", "N3a", "MX", "VALUE:IVNOS" ], [ "T4", "N3b", "MX", "VALUE:IVNOS" ], [ "T4", "N3NOS", "MX", "VALUE:IVNOS" ], [ "T4", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "N3a", "MX", "VALUE:IVNOS" ], [ "TX", "N3b", "MX", "VALUE:IVNOS" ], [ "TX", "N3NOS", "MX", "VALUE:IVNOS" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qal.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qal.json
deleted file mode 100644
index 5d7ac635e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qal.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qal",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.425Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "N2", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "N2", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "N2", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:III" ], [ "T3a", "N1", "M0", "VALUE:III" ], [ "T3a", "N2", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:III" ], [ "T3b", "N1", "M0", "VALUE:III" ], [ "T3b", "N2", "M0", "VALUE:IV" ], [ "T3b", "NX", "M0", "VALUE:UNK" ], [ "T3c", "N0", "M0", "VALUE:III" ], [ "T3c", "N1", "M0", "VALUE:III" ], [ "T3c", "N2", "M0", "VALUE:IV" ], [ "T3c", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:III" ], [ "T3NOS", "N1", "M0", "VALUE:III" ], [ "T3NOS", "N2", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N2", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N2", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "N2", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "N2", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3c", "N0", "M1", "VALUE:IV" ], [ "T3c", "N1", "M1", "VALUE:IV" ], [ "T3c", "N2", "M1", "VALUE:IV" ], [ "T3c", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "N2", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "N2", "MX", "VALUE:IV" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "N2", "MX", "VALUE:IV" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "N2", "MX", "VALUE:IV" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:IV" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:UNK" ], [ "T3a", "N2", "MX", "VALUE:IV" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3b", "N0", "MX", "VALUE:UNK" ], [ "T3b", "N1", "MX", "VALUE:UNK" ], [ "T3b", "N2", "MX", "VALUE:IV" ], [ "T3b", "NX", "MX", "VALUE:UNK" ], [ "T3c", "N0", "MX", "VALUE:UNK" ], [ "T3c", "N1", "MX", "VALUE:UNK" ], [ "T3c", "N2", "MX", "VALUE:IV" ], [ "T3c", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:UNK" ], [ "T3NOS", "N2", "MX", "VALUE:IV" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "N2", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:IV" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qam.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qam.json
deleted file mode 100644
index 1810ac891..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qam.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qam",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.483Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2", "M0", "VALUE:III" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "N2", "M0", "VALUE:III" ], [ "T1a", "N3", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "N2", "M0", "VALUE:III" ], [ "T1b", "N3", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "N2", "M0", "VALUE:III" ], [ "T1NOS", "N3", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2", "M0", "VALUE:III" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:III" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N2", "M1", "VALUE:IV" ], [ "T1a", "N3", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N2", "M1", "VALUE:IV" ], [ "T1b", "N3", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "N3", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "N2", "MX", "VALUE:UNK" ], [ "T1a", "N3", "MX", "VALUE:IV" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "N2", "MX", "VALUE:UNK" ], [ "T1b", "N3", "MX", "VALUE:IV" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "N2", "MX", "VALUE:UNK" ], [ "T1NOS", "N3", "MX", "VALUE:IV" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:UNK" ], [ "T2", "N3", "MX", "VALUE:IV" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "N3", "MX", "VALUE:IV" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "N2", "MX", "VALUE:IV" ], [ "T4", "N3", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:IV" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "N3", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qao.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qao.json
deleted file mode 100644
index d0d5d4962..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qao.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qao",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.543Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "N2", "M0", "VALUE:IV" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0a" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "N3", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0a" ], [ "Tis", "N0", "M0", "VALUE:0is" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0is" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IV" ], [ "T1", "N2", "M0", "VALUE:IV" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IV" ], [ "T2", "N2", "M0", "VALUE:IV" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:IV" ], [ "T3", "N2", "M0", "VALUE:IV" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "N2", "M0", "VALUE:IV" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "N3", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:IV" ], [ "T0", "N2", "MX", "VALUE:IV" ], [ "T0", "N3", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Ta", "N0", "MX", "VALUE:0a" ], [ "Ta", "N1", "MX", "ERROR:" ], [ "Ta", "N2", "MX", "ERROR:" ], [ "Ta", "N3", "MX", "ERROR:" ], [ "Ta", "NX", "MX", "VALUE:0a" ], [ "Tis", "N0", "MX", "VALUE:0is" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0is" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:IV" ], [ "T1", "N2", "MX", "VALUE:IV" ], [ "T1", "N3", "MX", "VALUE:IV" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:IV" ], [ "T2", "N2", "MX", "VALUE:IV" ], [ "T2", "N3", "MX", "VALUE:IV" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:IV" ], [ "T3", "N2", "MX", "VALUE:IV" ], [ "T3", "N3", "MX", "VALUE:IV" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "N2", "MX", "VALUE:IV" ], [ "T4", "N3", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:IV" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:IV" ], [ "TX", "N2", "MX", "VALUE:IV" ], [ "TX", "N3", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qar.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qar.json
deleted file mode 100644
index 64c42fb6d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qar.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qar",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.606Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qas.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qas.json
deleted file mode 100644
index b99c9a1c8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qas.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qas",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.655Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qat.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qat.json
deleted file mode 100644
index 631f7260c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qat.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qat",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.705Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qau.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qau.json
deleted file mode 100644
index 07e42b291..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qau.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qau",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.758Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "SSF1",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "M0", "000", "ERROR:" ], [ "T0", "M0", "001", "ERROR:" ], [ "T0", "M0", "002", "ERROR:" ], [ "T0", "M0", "010", "ERROR:" ], [ "T0", "M0", "050", "ERROR:" ], [ "T0", "M0", "110", "ERROR:" ], [ "T0", "M0", "150", "ERROR:" ], [ "T0", "M0", "200", "ERROR:" ], [ "T0", "M0", "988", "ERROR:" ], [ "T0", "M0", "999", "ERROR:" ], [ "T1", "M0", "000", "VALUE:IA" ], [ "T1", "M0", "001", "VALUE:IA" ], [ "T1", "M0", "002", "VALUE:IB" ], [ "T1", "M0", "010", "VALUE:IA" ], [ "T1", "M0", "050", "VALUE:IA" ], [ "T1", "M0", "110", "VALUE:IB" ], [ "T1", "M0", "150", "VALUE:IB" ], [ "T1", "M0", "200", "VALUE:IA" ], [ "T1", "M0", "988", "VALUE:INOS" ], [ "T1", "M0", "999", "VALUE:INOS" ], [ "T2", "M0", "000", "VALUE:IIA" ], [ "T2", "M0", "001", "VALUE:IIA" ], [ "T2", "M0", "002", "VALUE:IIB" ], [ "T2", "M0", "010", "VALUE:IIA" ], [ "T2", "M0", "050", "VALUE:IIA" ], [ "T2", "M0", "110", "VALUE:IIB" ], [ "T2", "M0", "150", "VALUE:IIB" ], [ "T2", "M0", "200", "VALUE:IIA" ], [ "T2", "M0", "988", "VALUE:IINOS" ], [ "T2", "M0", "999", "VALUE:IINOS" ], [ "TX", "M0", "000", "VALUE:UNK" ], [ "TX", "M0", "001", "VALUE:UNK" ], [ "TX", "M0", "002", "VALUE:UNK" ], [ "TX", "M0", "010", "VALUE:UNK" ], [ "TX", "M0", "050", "VALUE:UNK" ], [ "TX", "M0", "110", "VALUE:UNK" ], [ "TX", "M0", "150", "VALUE:UNK" ], [ "TX", "M0", "200", "VALUE:UNK" ], [ "TX", "M0", "988", "VALUE:UNK" ], [ "TX", "M0", "999", "VALUE:UNK" ], [ "T0", "M1a", "000", "VALUE:IIIA" ], [ "T0", "M1a", "001", "VALUE:IIIA" ], [ "T0", "M1a", "002", "VALUE:IIIB" ], [ "T0", "M1a", "010", "VALUE:IIIA" ], [ "T0", "M1a", "050", "VALUE:IIIA" ], [ "T0", "M1a", "110", "VALUE:IIIB" ], [ "T0", "M1a", "150", "VALUE:IIIB" ], [ "T0", "M1a", "200", "VALUE:IIIA" ], [ "T0", "M1a", "988", "VALUE:IIINOS" ], [ "T0", "M1a", "999", "VALUE:IIINOS" ], [ "T1", "M1a", "000", "VALUE:IIIA" ], [ "T1", "M1a", "001", "VALUE:IIIA" ], [ "T1", "M1a", "002", "VALUE:IIIB" ], [ "T1", "M1a", "010", "VALUE:IIIA" ], [ "T1", "M1a", "050", "VALUE:IIIA" ], [ "T1", "M1a", "110", "VALUE:IIIB" ], [ "T1", "M1a", "150", "VALUE:IIIB" ], [ "T1", "M1a", "200", "VALUE:IIIA" ], [ "T1", "M1a", "988", "VALUE:IIINOS" ], [ "T1", "M1a", "999", "VALUE:IIINOS" ], [ "T2", "M1a", "000", "VALUE:IIIA" ], [ "T2", "M1a", "001", "VALUE:IIIA" ], [ "T2", "M1a", "002", "VALUE:IIIB" ], [ "T2", "M1a", "010", "VALUE:IIIA" ], [ "T2", "M1a", "050", "VALUE:IIIA" ], [ "T2", "M1a", "110", "VALUE:IIIB" ], [ "T2", "M1a", "150", "VALUE:IIIB" ], [ "T2", "M1a", "200", "VALUE:IIIA" ], [ "T2", "M1a", "988", "VALUE:IIINOS" ], [ "T2", "M1a", "999", "VALUE:IIINOS" ], [ "TX", "M1a", "000", "VALUE:IIIA" ], [ "TX", "M1a", "001", "VALUE:IIIA" ], [ "TX", "M1a", "002", "VALUE:IIIB" ], [ "TX", "M1a", "010", "VALUE:IIIA" ], [ "TX", "M1a", "050", "VALUE:IIIA" ], [ "TX", "M1a", "110", "VALUE:IIIB" ], [ "TX", "M1a", "150", "VALUE:IIIB" ], [ "TX", "M1a", "200", "VALUE:IIIA" ], [ "TX", "M1a", "988", "VALUE:IIINOS" ], [ "TX", "M1a", "999", "VALUE:IIINOS" ], [ "T0", "M1b", "000", "VALUE:IVA" ], [ "T0", "M1b", "001", "VALUE:IVA" ], [ "T0", "M1b", "002", "VALUE:IVB" ], [ "T0", "M1b", "010", "VALUE:IVA" ], [ "T0", "M1b", "050", "VALUE:IVA" ], [ "T0", "M1b", "110", "VALUE:IVB" ], [ "T0", "M1b", "150", "VALUE:IVB" ], [ "T0", "M1b", "200", "VALUE:IVA" ], [ "T0", "M1b", "988", "VALUE:IVNOS" ], [ "T0", "M1b", "999", "VALUE:IVNOS" ], [ "T1", "M1b", "000", "VALUE:IVA" ], [ "T1", "M1b", "001", "VALUE:IVA" ], [ "T1", "M1b", "002", "VALUE:IVB" ], [ "T1", "M1b", "010", "VALUE:IVA" ], [ "T1", "M1b", "050", "VALUE:IVA" ], [ "T1", "M1b", "110", "VALUE:IVB" ], [ "T1", "M1b", "150", "VALUE:IVB" ], [ "T1", "M1b", "200", "VALUE:IVA" ], [ "T1", "M1b", "988", "VALUE:IVNOS" ], [ "T1", "M1b", "999", "VALUE:IVNOS" ], [ "T2", "M1b", "000", "VALUE:IVA" ], [ "T2", "M1b", "001", "VALUE:IVA" ], [ "T2", "M1b", "002", "VALUE:IVB" ], [ "T2", "M1b", "010", "VALUE:IVA" ], [ "T2", "M1b", "050", "VALUE:IVA" ], [ "T2", "M1b", "110", "VALUE:IVB" ], [ "T2", "M1b", "150", "VALUE:IVB" ], [ "T2", "M1b", "200", "VALUE:IVA" ], [ "T2", "M1b", "988", "VALUE:IVNOS" ], [ "T2", "M1b", "999", "VALUE:IVNOS" ], [ "TX", "M1b", "000", "VALUE:IVA" ], [ "TX", "M1b", "001", "VALUE:IVA" ], [ "TX", "M1b", "002", "VALUE:IVB" ], [ "TX", "M1b", "010", "VALUE:IVA" ], [ "TX", "M1b", "050", "VALUE:IVA" ], [ "TX", "M1b", "110", "VALUE:IVB" ], [ "TX", "M1b", "150", "VALUE:IVB" ], [ "TX", "M1b", "200", "VALUE:IVA" ], [ "TX", "M1b", "988", "VALUE:IVNOS" ], [ "TX", "M1b", "999", "VALUE:IVNOS" ], [ "T0", "M1NOS", "000", "VALUE:UNK" ], [ "T0", "M1NOS", "001", "VALUE:UNK" ], [ "T0", "M1NOS", "002", "VALUE:UNK" ], [ "T0", "M1NOS", "010", "VALUE:UNK" ], [ "T0", "M1NOS", "050", "VALUE:UNK" ], [ "T0", "M1NOS", "110", "VALUE:UNK" ], [ "T0", "M1NOS", "150", "VALUE:UNK" ], [ "T0", "M1NOS", "200", "VALUE:UNK" ], [ "T0", "M1NOS", "988", "VALUE:UNK" ], [ "T0", "M1NOS", "999", "VALUE:UNK" ], [ "T1", "M1NOS", "000", "VALUE:UNK" ], [ "T1", "M1NOS", "001", "VALUE:UNK" ], [ "T1", "M1NOS", "002", "VALUE:UNK" ], [ "T1", "M1NOS", "010", "VALUE:UNK" ], [ "T1", "M1NOS", "050", "VALUE:UNK" ], [ "T1", "M1NOS", "110", "VALUE:UNK" ], [ "T1", "M1NOS", "150", "VALUE:UNK" ], [ "T1", "M1NOS", "200", "VALUE:UNK" ], [ "T1", "M1NOS", "988", "VALUE:UNK" ], [ "T1", "M1NOS", "999", "VALUE:UNK" ], [ "T2", "M1NOS", "000", "VALUE:UNK" ], [ "T2", "M1NOS", "001", "VALUE:UNK" ], [ "T2", "M1NOS", "002", "VALUE:UNK" ], [ "T2", "M1NOS", "010", "VALUE:UNK" ], [ "T2", "M1NOS", "050", "VALUE:UNK" ], [ "T2", "M1NOS", "110", "VALUE:UNK" ], [ "T2", "M1NOS", "150", "VALUE:UNK" ], [ "T2", "M1NOS", "200", "VALUE:UNK" ], [ "T2", "M1NOS", "988", "VALUE:UNK" ], [ "T2", "M1NOS", "999", "VALUE:UNK" ], [ "TX", "M1NOS", "000", "VALUE:UNK" ], [ "TX", "M1NOS", "001", "VALUE:UNK" ], [ "TX", "M1NOS", "002", "VALUE:UNK" ], [ "TX", "M1NOS", "010", "VALUE:UNK" ], [ "TX", "M1NOS", "050", "VALUE:UNK" ], [ "TX", "M1NOS", "110", "VALUE:UNK" ], [ "TX", "M1NOS", "150", "VALUE:UNK" ], [ "TX", "M1NOS", "200", "VALUE:UNK" ], [ "TX", "M1NOS", "988", "VALUE:UNK" ], [ "TX", "M1NOS", "999", "VALUE:UNK" ], [ "T0", "MX", "000", "VALUE:UNK" ], [ "T0", "MX", "001", "VALUE:UNK" ], [ "T0", "MX", "002", "VALUE:UNK" ], [ "T0", "MX", "010", "VALUE:UNK" ], [ "T0", "MX", "050", "VALUE:UNK" ], [ "T0", "MX", "110", "VALUE:UNK" ], [ "T0", "MX", "150", "VALUE:UNK" ], [ "T0", "MX", "200", "VALUE:UNK" ], [ "T0", "MX", "988", "VALUE:UNK" ], [ "T0", "MX", "999", "VALUE:UNK" ], [ "T1", "MX", "000", "VALUE:UNK" ], [ "T1", "MX", "001", "VALUE:UNK" ], [ "T1", "MX", "002", "VALUE:UNK" ], [ "T1", "MX", "010", "VALUE:UNK" ], [ "T1", "MX", "050", "VALUE:UNK" ], [ "T1", "MX", "110", "VALUE:UNK" ], [ "T1", "MX", "150", "VALUE:UNK" ], [ "T1", "MX", "200", "VALUE:UNK" ], [ "T1", "MX", "988", "VALUE:UNK" ], [ "T1", "MX", "999", "VALUE:UNK" ], [ "T2", "MX", "000", "VALUE:UNK" ], [ "T2", "MX", "001", "VALUE:UNK" ], [ "T2", "MX", "002", "VALUE:UNK" ], [ "T2", "MX", "010", "VALUE:UNK" ], [ "T2", "MX", "050", "VALUE:UNK" ], [ "T2", "MX", "110", "VALUE:UNK" ], [ "T2", "MX", "150", "VALUE:UNK" ], [ "T2", "MX", "200", "VALUE:UNK" ], [ "T2", "MX", "988", "VALUE:UNK" ], [ "T2", "MX", "999", "VALUE:UNK" ], [ "TX", "MX", "000", "VALUE:UNK" ], [ "TX", "MX", "001", "VALUE:UNK" ], [ "TX", "MX", "002", "VALUE:UNK" ], [ "TX", "MX", "010", "VALUE:UNK" ], [ "TX", "MX", "050", "VALUE:UNK" ], [ "TX", "MX", "110", "VALUE:UNK" ], [ "TX", "MX", "150", "VALUE:UNK" ], [ "TX", "MX", "200", "VALUE:UNK" ], [ "TX", "MX", "988", "VALUE:UNK" ], [ "TX", "MX", "999", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qav.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qav.json
deleted file mode 100644
index eba124613..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qav.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qav",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.822Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:III" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaw.json
deleted file mode 100644
index c8b299cdc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaw.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qaw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.874Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0a" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0a" ], [ "Tis", "N0", "M0", "VALUE:0is" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0is" ], [ "Tispu", "N0", "M0", "VALUE:0is" ], [ "Tispu", "N1", "M0", "ERROR:" ], [ "Tispu", "N2", "M0", "ERROR:" ], [ "Tispu", "NX", "M0", "VALUE:0is" ], [ "Tispd", "N0", "M0", "VALUE:0is" ], [ "Tispd", "N1", "M0", "ERROR:" ], [ "Tispd", "N2", "M0", "ERROR:" ], [ "Tispd", "NX", "M0", "VALUE:0is" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "Tispu", "N0", "M1", "ERROR:" ], [ "Tispu", "N1", "M1", "ERROR:" ], [ "Tispu", "N2", "M1", "ERROR:" ], [ "Tispu", "NX", "M1", "ERROR:" ], [ "Tispd", "N0", "M1", "ERROR:" ], [ "Tispd", "N1", "M1", "ERROR:" ], [ "Tispd", "N2", "M1", "ERROR:" ], [ "Tispd", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Ta", "N0", "MX", "VALUE:0a" ], [ "Ta", "N1", "MX", "ERROR:" ], [ "Ta", "N2", "MX", "ERROR:" ], [ "Ta", "NX", "MX", "VALUE:0a" ], [ "Tis", "N0", "MX", "VALUE:0is" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0is" ], [ "Tispu", "N0", "MX", "VALUE:0is" ], [ "Tispu", "N1", "MX", "ERROR:" ], [ "Tispu", "N2", "MX", "ERROR:" ], [ "Tispu", "NX", "MX", "VALUE:0is" ], [ "Tispd", "N0", "MX", "VALUE:0is" ], [ "Tispd", "N1", "MX", "ERROR:" ], [ "Tispd", "N2", "MX", "ERROR:" ], [ "Tispd", "NX", "MX", "VALUE:0is" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:IV" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:IV" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:IV" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "N2", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:IV" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qax.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qax.json
deleted file mode 100644
index 133dfa779..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qax.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qax",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage-Thyroid: Papillary and Follicular Age less than 45",
- "last_modified" : "2015-05-27T16:18:48.930Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_stage",
- "name" : "Stage Table 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1a", "M0", "VALUE:I" ], [ "T0", "N1b", "M0", "VALUE:I" ], [ "T0", "N1NOS", "M0", "VALUE:I" ], [ "T0", "NX", "M0", "VALUE:I" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1a", "M0", "VALUE:I" ], [ "T1", "N1b", "M0", "VALUE:I" ], [ "T1", "N1NOS", "M0", "VALUE:I" ], [ "T1", "NX", "M0", "VALUE:I" ], [ "T2", "N0", "M0", "VALUE:I" ], [ "T2", "N1a", "M0", "VALUE:I" ], [ "T2", "N1b", "M0", "VALUE:I" ], [ "T2", "N1NOS", "M0", "VALUE:I" ], [ "T2", "NX", "M0", "VALUE:I" ], [ "T3", "N0", "M0", "VALUE:I" ], [ "T3", "N1a", "M0", "VALUE:I" ], [ "T3", "N1b", "M0", "VALUE:I" ], [ "T3", "N1NOS", "M0", "VALUE:I" ], [ "T3", "NX", "M0", "VALUE:I" ], [ "T4a", "N0", "M0", "VALUE:I" ], [ "T4a", "N1a", "M0", "VALUE:I" ], [ "T4a", "N1b", "M0", "VALUE:I" ], [ "T4a", "N1NOS", "M0", "VALUE:I" ], [ "T4a", "NX", "M0", "VALUE:I" ], [ "T4b", "N0", "M0", "VALUE:I" ], [ "T4b", "N1a", "M0", "VALUE:I" ], [ "T4b", "N1b", "M0", "VALUE:I" ], [ "T4b", "N1NOS", "M0", "VALUE:I" ], [ "T4b", "NX", "M0", "VALUE:I" ], [ "T4NOS", "N0", "M0", "VALUE:I" ], [ "T4NOS", "N1a", "M0", "VALUE:I" ], [ "T4NOS", "N1b", "M0", "VALUE:I" ], [ "T4NOS", "N1NOS", "M0", "VALUE:I" ], [ "T4NOS", "NX", "M0", "VALUE:I" ], [ "TX", "N0", "M0", "VALUE:I" ], [ "TX", "N1a", "M0", "VALUE:I" ], [ "TX", "N1b", "M0", "VALUE:I" ], [ "TX", "N1NOS", "M0", "VALUE:I" ], [ "TX", "NX", "M0", "VALUE:I" ], [ "T0", "N0", "M1", "VALUE:II" ], [ "T0", "N1a", "M1", "VALUE:II" ], [ "T0", "N1b", "M1", "VALUE:II" ], [ "T0", "N1NOS", "M1", "VALUE:II" ], [ "T0", "NX", "M1", "VALUE:II" ], [ "T1", "N0", "M1", "VALUE:II" ], [ "T1", "N1a", "M1", "VALUE:II" ], [ "T1", "N1b", "M1", "VALUE:II" ], [ "T1", "N1NOS", "M1", "VALUE:II" ], [ "T1", "NX", "M1", "VALUE:II" ], [ "T2", "N0", "M1", "VALUE:II" ], [ "T2", "N1a", "M1", "VALUE:II" ], [ "T2", "N1b", "M1", "VALUE:II" ], [ "T2", "N1NOS", "M1", "VALUE:II" ], [ "T2", "NX", "M1", "VALUE:II" ], [ "T3", "N0", "M1", "VALUE:II" ], [ "T3", "N1a", "M1", "VALUE:II" ], [ "T3", "N1b", "M1", "VALUE:II" ], [ "T3", "N1NOS", "M1", "VALUE:II" ], [ "T3", "NX", "M1", "VALUE:II" ], [ "T4a", "N0", "M1", "VALUE:II" ], [ "T4a", "N1a", "M1", "VALUE:II" ], [ "T4a", "N1b", "M1", "VALUE:II" ], [ "T4a", "N1NOS", "M1", "VALUE:II" ], [ "T4a", "NX", "M1", "VALUE:II" ], [ "T4b", "N0", "M1", "VALUE:II" ], [ "T4b", "N1a", "M1", "VALUE:II" ], [ "T4b", "N1b", "M1", "VALUE:II" ], [ "T4b", "N1NOS", "M1", "VALUE:II" ], [ "T4b", "NX", "M1", "VALUE:II" ], [ "T4NOS", "N0", "M1", "VALUE:II" ], [ "T4NOS", "N1a", "M1", "VALUE:II" ], [ "T4NOS", "N1b", "M1", "VALUE:II" ], [ "T4NOS", "N1NOS", "M1", "VALUE:II" ], [ "T4NOS", "NX", "M1", "VALUE:II" ], [ "TX", "N0", "M1", "VALUE:II" ], [ "TX", "N1a", "M1", "VALUE:II" ], [ "TX", "N1b", "M1", "VALUE:II" ], [ "TX", "N1NOS", "M1", "VALUE:II" ], [ "TX", "NX", "M1", "VALUE:II" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1a", "MX", "VALUE:UNK" ], [ "T0", "N1b", "MX", "VALUE:UNK" ], [ "T0", "N1NOS", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1a", "MX", "VALUE:UNK" ], [ "T1", "N1b", "MX", "VALUE:UNK" ], [ "T1", "N1NOS", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1a", "MX", "VALUE:UNK" ], [ "T2", "N1b", "MX", "VALUE:UNK" ], [ "T2", "N1NOS", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1a", "MX", "VALUE:UNK" ], [ "T3", "N1b", "MX", "VALUE:UNK" ], [ "T3", "N1NOS", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "MX", "VALUE:UNK" ], [ "T4a", "N1a", "MX", "VALUE:UNK" ], [ "T4a", "N1b", "MX", "VALUE:UNK" ], [ "T4a", "N1NOS", "MX", "VALUE:UNK" ], [ "T4a", "NX", "MX", "VALUE:UNK" ], [ "T4b", "N0", "MX", "VALUE:UNK" ], [ "T4b", "N1a", "MX", "VALUE:UNK" ], [ "T4b", "N1b", "MX", "VALUE:UNK" ], [ "T4b", "N1NOS", "MX", "VALUE:UNK" ], [ "T4b", "NX", "MX", "VALUE:UNK" ], [ "T4NOS", "N0", "MX", "VALUE:UNK" ], [ "T4NOS", "N1a", "MX", "VALUE:UNK" ], [ "T4NOS", "N1b", "MX", "VALUE:UNK" ], [ "T4NOS", "N1NOS", "MX", "VALUE:UNK" ], [ "T4NOS", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1a", "MX", "VALUE:UNK" ], [ "TX", "N1b", "MX", "VALUE:UNK" ], [ "TX", "N1NOS", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaz.json
deleted file mode 100644
index c65747f12..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qaz.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qaz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:48.988Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a1", "N0", "M0", "VALUE:IA1" ], [ "T1a1", "N1", "M0", "VALUE:IIIB" ], [ "T1a1", "NX", "M0", "VALUE:UNK" ], [ "T1a2", "N0", "M0", "VALUE:IA2" ], [ "T1a2", "N1", "M0", "VALUE:IIIB" ], [ "T1a2", "NX", "M0", "VALUE:UNK" ], [ "T1b1", "N0", "M0", "VALUE:IB1" ], [ "T1b1", "N1", "M0", "VALUE:IIIB" ], [ "T1b1", "NX", "M0", "VALUE:UNK" ], [ "T1b2", "N0", "M0", "VALUE:IB2" ], [ "T1b2", "N1", "M0", "VALUE:IIIB" ], [ "T1b2", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIB" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIB" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIB" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIB" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIB" ], [ "T3b", "NX", "M0", "VALUE:IIIB" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIB" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "T1aNOS", "N0", "M0", "VALUE:IA" ], [ "T1aNOS", "N1", "M0", "VALUE:IIIB" ], [ "T1aNOS", "NX", "M0", "VALUE:UNK" ], [ "T1bNOS", "N0", "M0", "VALUE:IB" ], [ "T1bNOS", "N1", "M0", "VALUE:IIIB" ], [ "T1bNOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a1", "N0", "M1", "VALUE:IVB" ], [ "T1a1", "N1", "M1", "VALUE:IVB" ], [ "T1a1", "NX", "M1", "VALUE:IVB" ], [ "T1a2", "N0", "M1", "VALUE:IVB" ], [ "T1a2", "N1", "M1", "VALUE:IVB" ], [ "T1a2", "NX", "M1", "VALUE:IVB" ], [ "T1b1", "N0", "M1", "VALUE:IVB" ], [ "T1b1", "N1", "M1", "VALUE:IVB" ], [ "T1b1", "NX", "M1", "VALUE:IVB" ], [ "T1b2", "N0", "M1", "VALUE:IVB" ], [ "T1b2", "N1", "M1", "VALUE:IVB" ], [ "T1b2", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2a", "N0", "M1", "VALUE:IVB" ], [ "T2a", "N1", "M1", "VALUE:IVB" ], [ "T2a", "NX", "M1", "VALUE:IVB" ], [ "T2b", "N0", "M1", "VALUE:IVB" ], [ "T2b", "N1", "M1", "VALUE:IVB" ], [ "T2b", "NX", "M1", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "VALUE:IVB" ], [ "T2NOS", "N1", "M1", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "VALUE:IVB" ], [ "T3a", "N0", "M1", "VALUE:IVB" ], [ "T3a", "N1", "M1", "VALUE:IVB" ], [ "T3a", "NX", "M1", "VALUE:IVB" ], [ "T3b", "N0", "M1", "VALUE:IVB" ], [ "T3b", "N1", "M1", "VALUE:IVB" ], [ "T3b", "NX", "M1", "VALUE:IVB" ], [ "T3NOS", "N0", "M1", "VALUE:IVB" ], [ "T3NOS", "N1", "M1", "VALUE:IVB" ], [ "T3NOS", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "T1aNOS", "N0", "M1", "VALUE:IVB" ], [ "T1aNOS", "N1", "M1", "VALUE:IVB" ], [ "T1aNOS", "NX", "M1", "VALUE:IVB" ], [ "T1bNOS", "N0", "M1", "VALUE:IVB" ], [ "T1bNOS", "N1", "M1", "VALUE:IVB" ], [ "T1bNOS", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1a1", "N0", "MX", "VALUE:UNK" ], [ "T1a1", "N1", "MX", "VALUE:UNK" ], [ "T1a1", "NX", "MX", "VALUE:UNK" ], [ "T1a2", "N0", "MX", "VALUE:UNK" ], [ "T1a2", "N1", "MX", "VALUE:UNK" ], [ "T1a2", "NX", "MX", "VALUE:UNK" ], [ "T1b1", "N0", "MX", "VALUE:UNK" ], [ "T1b1", "N1", "MX", "VALUE:UNK" ], [ "T1b1", "NX", "MX", "VALUE:UNK" ], [ "T1b2", "N0", "MX", "VALUE:UNK" ], [ "T1b2", "N1", "MX", "VALUE:UNK" ], [ "T1b2", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:UNK" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:UNK" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:UNK" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3b", "N0", "MX", "VALUE:UNK" ], [ "T3b", "N1", "MX", "VALUE:UNK" ], [ "T3b", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:UNK" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IVNOS" ], [ "T4", "N1", "MX", "VALUE:IVNOS" ], [ "T4", "NX", "MX", "VALUE:IVNOS" ], [ "T1aNOS", "N0", "MX", "VALUE:UNK" ], [ "T1aNOS", "N1", "MX", "VALUE:UNK" ], [ "T1aNOS", "NX", "MX", "VALUE:UNK" ], [ "T1bNOS", "N0", "MX", "VALUE:UNK" ], [ "T1bNOS", "N1", "MX", "VALUE:UNK" ], [ "T1bNOS", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbb.json
deleted file mode 100644
index c1d99e057..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbb.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qbb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:49.051Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIA" ], [ "T0", "N2", "M0", "VALUE:IVA" ], [ "T0", "N3", "M0", "VALUE:IVA" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIA" ], [ "T1", "N2", "M0", "VALUE:IVA" ], [ "T1", "N3", "M0", "VALUE:IVA" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIA" ], [ "T2", "N2", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVA" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "N2", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVA" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "N2", "M0", "VALUE:IVA" ], [ "T4", "N3", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3", "M0", "VALUE:IVNOS" ], [ "TX", "NX", "M0", "VALUE:IVNOS" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "N2", "M1", "VALUE:IVB" ], [ "T0", "N3", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "T1", "N0", "M1", "VALUE:IVB" ], [ "T1", "N1", "M1", "VALUE:IVB" ], [ "T1", "N2", "M1", "VALUE:IVB" ], [ "T1", "N3", "M1", "VALUE:IVB" ], [ "T1", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1", "M1", "VALUE:IVB" ], [ "T2", "N2", "M1", "VALUE:IVB" ], [ "T2", "N3", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1", "M1", "VALUE:IVB" ], [ "T3", "N2", "M1", "VALUE:IVB" ], [ "T3", "N3", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "N2", "M1", "VALUE:IVB" ], [ "T4", "N3", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "N2", "M1", "VALUE:IVB" ], [ "TX", "N3", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:IVNOS" ], [ "T0", "N3", "MX", "VALUE:IVNOS" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:IVNOS" ], [ "T1", "N3", "MX", "VALUE:IVNOS" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:IVNOS" ], [ "T2", "N3", "MX", "VALUE:IVNOS" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:IVNOS" ], [ "T3", "N3", "MX", "VALUE:IVNOS" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "N2", "MX", "VALUE:IVNOS" ], [ "T4", "N3", "MX", "VALUE:IVNOS" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:IVNOS" ], [ "TX", "N3", "MX", "VALUE:IVNOS" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbh.json
deleted file mode 100644
index db7c049ac..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbh.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qbh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:49.100Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "N2", "M0", "VALUE:IV" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0a" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "N3", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0a" ], [ "Tis", "N0", "M0", "VALUE:0is" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0is" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IV" ], [ "T1", "N2", "M0", "VALUE:IV" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:IV" ], [ "T2a", "N2", "M0", "VALUE:IV" ], [ "T2a", "N3", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:IV" ], [ "T2b", "N2", "M0", "VALUE:IV" ], [ "T2b", "N3", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:IV" ], [ "T2NOS", "N2", "M0", "VALUE:IV" ], [ "T2NOS", "N3", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:III" ], [ "T3a", "N1", "M0", "VALUE:IV" ], [ "T3a", "N2", "M0", "VALUE:IV" ], [ "T3a", "N3", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:III" ], [ "T3b", "N1", "M0", "VALUE:IV" ], [ "T3b", "N2", "M0", "VALUE:IV" ], [ "T3b", "N3", "M0", "VALUE:IV" ], [ "T3b", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:III" ], [ "T3NOS", "N1", "M0", "VALUE:IV" ], [ "T3NOS", "N2", "M0", "VALUE:IV" ], [ "T3NOS", "N3", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:III" ], [ "T4a", "N1", "M0", "VALUE:IV" ], [ "T4a", "N2", "M0", "VALUE:IV" ], [ "T4a", "N3", "M0", "VALUE:IV" ], [ "T4a", "NX", "M0", "VALUE:UNK" ], [ "T4b", "N0", "M0", "VALUE:IV" ], [ "T4b", "N1", "M0", "VALUE:IV" ], [ "T4b", "N2", "M0", "VALUE:IV" ], [ "T4b", "N3", "M0", "VALUE:IV" ], [ "T4b", "NX", "M0", "VALUE:IV" ], [ "T4NOS", "N0", "M0", "VALUE:UNK" ], [ "T4NOS", "N1", "M0", "VALUE:IV" ], [ "T4NOS", "N2", "M0", "VALUE:IV" ], [ "T4NOS", "N3", "M0", "VALUE:IV" ], [ "T4NOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "N2", "M0", "VALUE:IV" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "N3", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "N2", "M1", "VALUE:IV" ], [ "T2a", "N3", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "N2", "M1", "VALUE:IV" ], [ "T2b", "N3", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "N2", "M1", "VALUE:IV" ], [ "T2NOS", "N3", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "N2", "M1", "VALUE:IV" ], [ "T3a", "N3", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "N2", "M1", "VALUE:IV" ], [ "T3b", "N3", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "N2", "M1", "VALUE:IV" ], [ "T3NOS", "N3", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "T4a", "N0", "M1", "VALUE:IV" ], [ "T4a", "N1", "M1", "VALUE:IV" ], [ "T4a", "N2", "M1", "VALUE:IV" ], [ "T4a", "N3", "M1", "VALUE:IV" ], [ "T4a", "NX", "M1", "VALUE:IV" ], [ "T4b", "N0", "M1", "VALUE:IV" ], [ "T4b", "N1", "M1", "VALUE:IV" ], [ "T4b", "N2", "M1", "VALUE:IV" ], [ "T4b", "N3", "M1", "VALUE:IV" ], [ "T4b", "NX", "M1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:IV" ], [ "T0", "N2", "MX", "VALUE:IV" ], [ "T0", "N3", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Ta", "N0", "MX", "VALUE:0a" ], [ "Ta", "N1", "MX", "ERROR:" ], [ "Ta", "N2", "MX", "ERROR:" ], [ "Ta", "N3", "MX", "ERROR:" ], [ "Ta", "NX", "MX", "VALUE:0a" ], [ "Tis", "N0", "MX", "VALUE:0is" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0is" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:IV" ], [ "T1", "N2", "MX", "VALUE:IV" ], [ "T1", "N3", "MX", "VALUE:IV" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:IV" ], [ "T2a", "N2", "MX", "VALUE:IV" ], [ "T2a", "N3", "MX", "VALUE:IV" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:IV" ], [ "T2b", "N2", "MX", "VALUE:IV" ], [ "T2b", "N3", "MX", "VALUE:IV" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:IV" ], [ "T2NOS", "N2", "MX", "VALUE:IV" ], [ "T2NOS", "N3", "MX", "VALUE:IV" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:IV" ], [ "T3a", "N2", "MX", "VALUE:IV" ], [ "T3a", "N3", "MX", "VALUE:IV" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3b", "N0", "MX", "VALUE:UNK" ], [ "T3b", "N1", "MX", "VALUE:IV" ], [ "T3b", "N2", "MX", "VALUE:IV" ], [ "T3b", "N3", "MX", "VALUE:IV" ], [ "T3b", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:IV" ], [ "T3NOS", "N2", "MX", "VALUE:IV" ], [ "T3NOS", "N3", "MX", "VALUE:IV" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "MX", "VALUE:UNK" ], [ "T4a", "N1", "MX", "VALUE:IV" ], [ "T4a", "N2", "MX", "VALUE:IV" ], [ "T4a", "N3", "MX", "VALUE:IV" ], [ "T4a", "NX", "MX", "VALUE:UNK" ], [ "T4b", "N0", "MX", "VALUE:IV" ], [ "T4b", "N1", "MX", "VALUE:IV" ], [ "T4b", "N2", "MX", "VALUE:IV" ], [ "T4b", "N3", "MX", "VALUE:IV" ], [ "T4b", "NX", "MX", "VALUE:IV" ], [ "T4NOS", "N0", "MX", "VALUE:UNK" ], [ "T4NOS", "N1", "MX", "VALUE:IV" ], [ "T4NOS", "N2", "MX", "VALUE:IV" ], [ "T4NOS", "N3", "MX", "VALUE:IV" ], [ "T4NOS", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:IV" ], [ "TX", "N2", "MX", "VALUE:IV" ], [ "TX", "N3", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbi.json
deleted file mode 100644
index cfa285818..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbi.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qbi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:49.176Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IC" ], [ "T1c", "N1", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIC" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIC" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:IIC" ], [ "T2c", "N1", "M0", "VALUE:IIIC" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3c", "N0", "M0", "VALUE:IIIC" ], [ "T3c", "N1", "M0", "VALUE:IIIC" ], [ "T3c", "NX", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2c", "N0", "M1", "VALUE:IV" ], [ "T2c", "N1", "M1", "VALUE:IV" ], [ "T2c", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3c", "N0", "M1", "VALUE:IV" ], [ "T3c", "N1", "M1", "VALUE:IV" ], [ "T3c", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1c", "N0", "MX", "VALUE:UNK" ], [ "T1c", "N1", "MX", "VALUE:UNK" ], [ "T1c", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:UNK" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:UNK" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2c", "N0", "MX", "VALUE:UNK" ], [ "T2c", "N1", "MX", "VALUE:UNK" ], [ "T2c", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:UNK" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3b", "N0", "MX", "VALUE:UNK" ], [ "T3b", "N1", "MX", "VALUE:UNK" ], [ "T3b", "NX", "MX", "VALUE:UNK" ], [ "T3c", "N0", "MX", "VALUE:UNK" ], [ "T3c", "N1", "MX", "VALUE:UNK" ], [ "T3c", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:UNK" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbj.json
deleted file mode 100644
index b3d98af24..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbj.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qbj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:49.252Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIA" ], [ "T0", "N2", "M0", "VALUE:IIIB" ], [ "T0", "N3", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIA" ], [ "T1", "N2", "M0", "VALUE:IIIB" ], [ "T1", "N3", "M0", "VALUE:IIIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IIIA" ], [ "T2", "N2", "M0", "VALUE:IIIB" ], [ "T2", "N3", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIB" ], [ "T3", "N3", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "N2", "M0", "VALUE:IIIB" ], [ "T4", "N3", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IIIB" ], [ "TX", "N3", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "N3", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:UNK" ], [ "T1", "N3", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:UNK" ], [ "T2", "N3", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "N3", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "N2", "MX", "VALUE:UNK" ], [ "T4", "N3", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "N3", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbk.json
deleted file mode 100644
index 7b4b1f3a1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbk.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qbk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:49.308Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbl.json
deleted file mode 100644
index 711e350f3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbl.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qbl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:49.360Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2a", "M0", "VALUE:IVA" ], [ "T0", "N2b", "M0", "VALUE:IVA" ], [ "T0", "N2c", "M0", "VALUE:IVA" ], [ "T0", "N2NOS", "M0", "VALUE:IVA" ], [ "T0", "N3", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "N2a", "M0", "VALUE:IVA" ], [ "T1a", "N2b", "M0", "VALUE:IVA" ], [ "T1a", "N2c", "M0", "VALUE:IVA" ], [ "T1a", "N2NOS", "M0", "VALUE:IVA" ], [ "T1a", "N3", "M0", "VALUE:IVB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "N2a", "M0", "VALUE:IVA" ], [ "T1b", "N2b", "M0", "VALUE:IVA" ], [ "T1b", "N2c", "M0", "VALUE:IVA" ], [ "T1b", "N2NOS", "M0", "VALUE:IVA" ], [ "T1b", "N3", "M0", "VALUE:IVB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "N2a", "M0", "VALUE:IVA" ], [ "T1NOS", "N2b", "M0", "VALUE:IVA" ], [ "T1NOS", "N2c", "M0", "VALUE:IVA" ], [ "T1NOS", "N2NOS", "M0", "VALUE:IVA" ], [ "T1NOS", "N3", "M0", "VALUE:IVB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IVA" ], [ "T2", "N2b", "M0", "VALUE:IVA" ], [ "T2", "N2c", "M0", "VALUE:IVA" ], [ "T2", "N2NOS", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "N2a", "M0", "VALUE:IVA" ], [ "T4a", "N2b", "M0", "VALUE:IVA" ], [ "T4a", "N2c", "M0", "VALUE:IVA" ], [ "T4a", "N2NOS", "M0", "VALUE:IVA" ], [ "T4a", "N3", "M0", "VALUE:IVB" ], [ "T4a", "NX", "M0", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "N2a", "M0", "VALUE:IVB" ], [ "T4b", "N2b", "M0", "VALUE:IVB" ], [ "T4b", "N2c", "M0", "VALUE:IVB" ], [ "T4b", "N2NOS", "M0", "VALUE:IVB" ], [ "T4b", "N3", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N3", "M0", "VALUE:IVB" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IVNOS" ], [ "TX", "N2b", "M0", "VALUE:IVNOS" ], [ "TX", "N2c", "M0", "VALUE:IVNOS" ], [ "TX", "N2NOS", "M0", "VALUE:IVNOS" ], [ "TX", "N3", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2a", "M1", "VALUE:IVC" ], [ "T0", "N2b", "M1", "VALUE:IVC" ], [ "T0", "N2c", "M1", "VALUE:IVC" ], [ "T0", "N2NOS", "M1", "VALUE:IVC" ], [ "T0", "N3", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IVC" ], [ "T1a", "N1", "M1", "VALUE:IVC" ], [ "T1a", "N2a", "M1", "VALUE:IVC" ], [ "T1a", "N2b", "M1", "VALUE:IVC" ], [ "T1a", "N2c", "M1", "VALUE:IVC" ], [ "T1a", "N2NOS", "M1", "VALUE:IVC" ], [ "T1a", "N3", "M1", "VALUE:IVC" ], [ "T1a", "NX", "M1", "VALUE:IVC" ], [ "T1b", "N0", "M1", "VALUE:IVC" ], [ "T1b", "N1", "M1", "VALUE:IVC" ], [ "T1b", "N2a", "M1", "VALUE:IVC" ], [ "T1b", "N2b", "M1", "VALUE:IVC" ], [ "T1b", "N2c", "M1", "VALUE:IVC" ], [ "T1b", "N2NOS", "M1", "VALUE:IVC" ], [ "T1b", "N3", "M1", "VALUE:IVC" ], [ "T1b", "NX", "M1", "VALUE:IVC" ], [ "T1NOS", "N0", "M1", "VALUE:IVC" ], [ "T1NOS", "N1", "M1", "VALUE:IVC" ], [ "T1NOS", "N2a", "M1", "VALUE:IVC" ], [ "T1NOS", "N2b", "M1", "VALUE:IVC" ], [ "T1NOS", "N2c", "M1", "VALUE:IVC" ], [ "T1NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T1NOS", "N3", "M1", "VALUE:IVC" ], [ "T1NOS", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2a", "M1", "VALUE:IVC" ], [ "T2", "N2b", "M1", "VALUE:IVC" ], [ "T2", "N2c", "M1", "VALUE:IVC" ], [ "T2", "N2NOS", "M1", "VALUE:IVC" ], [ "T2", "N3", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2a", "M1", "VALUE:IVC" ], [ "T3", "N2b", "M1", "VALUE:IVC" ], [ "T3", "N2c", "M1", "VALUE:IVC" ], [ "T3", "N2NOS", "M1", "VALUE:IVC" ], [ "T3", "N3", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "N2a", "M1", "VALUE:IVC" ], [ "T4a", "N2b", "M1", "VALUE:IVC" ], [ "T4a", "N2c", "M1", "VALUE:IVC" ], [ "T4a", "N2NOS", "M1", "VALUE:IVC" ], [ "T4a", "N3", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "N2a", "M1", "VALUE:IVC" ], [ "T4b", "N2b", "M1", "VALUE:IVC" ], [ "T4b", "N2c", "M1", "VALUE:IVC" ], [ "T4b", "N2NOS", "M1", "VALUE:IVC" ], [ "T4b", "N3", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "N2a", "M1", "VALUE:IVC" ], [ "T4NOS", "N2b", "M1", "VALUE:IVC" ], [ "T4NOS", "N2c", "M1", "VALUE:IVC" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N3", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2a", "M1", "VALUE:IVC" ], [ "TX", "N2b", "M1", "VALUE:IVC" ], [ "TX", "N2c", "M1", "VALUE:IVC" ], [ "TX", "N2NOS", "M1", "VALUE:IVC" ], [ "TX", "N3", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2a", "MX", "VALUE:IVNOS" ], [ "T0", "N2b", "MX", "VALUE:IVNOS" ], [ "T0", "N2c", "MX", "VALUE:IVNOS" ], [ "T0", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T0", "N3", "MX", "VALUE:IVNOS" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2a", "MX", "ERROR:" ], [ "Tis", "N2b", "MX", "ERROR:" ], [ "Tis", "N2c", "MX", "ERROR:" ], [ "Tis", "N2NOS", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "N2a", "MX", "VALUE:IVNOS" ], [ "T1a", "N2b", "MX", "VALUE:IVNOS" ], [ "T1a", "N2c", "MX", "VALUE:IVNOS" ], [ "T1a", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T1a", "N3", "MX", "VALUE:IVNOS" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "N2a", "MX", "VALUE:IVNOS" ], [ "T1b", "N2b", "MX", "VALUE:IVNOS" ], [ "T1b", "N2c", "MX", "VALUE:IVNOS" ], [ "T1b", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T1b", "N3", "MX", "VALUE:IVNOS" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "N2a", "MX", "VALUE:IVNOS" ], [ "T1NOS", "N2b", "MX", "VALUE:IVNOS" ], [ "T1NOS", "N2c", "MX", "VALUE:IVNOS" ], [ "T1NOS", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T1NOS", "N3", "MX", "VALUE:IVNOS" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2a", "MX", "VALUE:IVNOS" ], [ "T2", "N2b", "MX", "VALUE:IVNOS" ], [ "T2", "N2c", "MX", "VALUE:IVNOS" ], [ "T2", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T2", "N3", "MX", "VALUE:IVNOS" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2a", "MX", "VALUE:IVNOS" ], [ "T3", "N2b", "MX", "VALUE:IVNOS" ], [ "T3", "N2c", "MX", "VALUE:IVNOS" ], [ "T3", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T3", "N3", "MX", "VALUE:IVNOS" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "MX", "VALUE:IVNOS" ], [ "T4a", "N1", "MX", "VALUE:IVNOS" ], [ "T4a", "N2a", "MX", "VALUE:IVNOS" ], [ "T4a", "N2b", "MX", "VALUE:IVNOS" ], [ "T4a", "N2c", "MX", "VALUE:IVNOS" ], [ "T4a", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4a", "N3", "MX", "VALUE:IVNOS" ], [ "T4a", "NX", "MX", "VALUE:IVNOS" ], [ "T4b", "N0", "MX", "VALUE:IVNOS" ], [ "T4b", "N1", "MX", "VALUE:IVNOS" ], [ "T4b", "N2a", "MX", "VALUE:IVNOS" ], [ "T4b", "N2b", "MX", "VALUE:IVNOS" ], [ "T4b", "N2c", "MX", "VALUE:IVNOS" ], [ "T4b", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4b", "N3", "MX", "VALUE:IVNOS" ], [ "T4b", "NX", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N3", "MX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2a", "MX", "VALUE:IVNOS" ], [ "TX", "N2b", "MX", "VALUE:IVNOS" ], [ "TX", "N2c", "MX", "VALUE:IVNOS" ], [ "TX", "N2NOS", "MX", "VALUE:IVNOS" ], [ "TX", "N3", "MX", "VALUE:IVNOS" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbq.json
deleted file mode 100644
index d3e778cd6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbq.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc6_stage_qbq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:49.441Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "nodes_eval",
- "name" : "Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", " ", "ERROR:" ], [ "T0", "N0", "M0", "0,1,5,9", "ERROR:" ], [ "T0", "N0", "M0", "2,3,6,8", "ERROR:" ], [ "T0", "N1", "M0", " ", "VALUE:III" ], [ "T0", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2", "M0", " ", "VALUE:III" ], [ "T0", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T0", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T0", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T0", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N3", "M0", " ", "VALUE:IIIC" ], [ "T0", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T0", "NX", "M0", " ", "VALUE:UNK" ], [ "T0", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T0", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "Tis", "N0", "M0", " ", "VALUE:0" ], [ "Tis", "N0", "M0", "0,1,5,9", "VALUE:0" ], [ "Tis", "N0", "M0", "2,3,6,8", "VALUE:0" ], [ "Tis", "N1", "M0", " ", "ERROR:" ], [ "Tis", "N1", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M0", " ", "ERROR:" ], [ "Tis", "N1a", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M0", " ", "ERROR:" ], [ "Tis", "N1b", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M0", " ", "ERROR:" ], [ "Tis", "N1NOS", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M0", " ", "ERROR:" ], [ "Tis", "N2", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M0", " ", "ERROR:" ], [ "Tis", "N2a", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M0", " ", "ERROR:" ], [ "Tis", "N2b", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M0", " ", "ERROR:" ], [ "Tis", "N2c", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M0", " ", "ERROR:" ], [ "Tis", "N2NOS", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M0", " ", "ERROR:" ], [ "Tis", "N3", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M0", " ", "VALUE:0" ], [ "Tis", "NX", "M0", "0,1,5,9", "VALUE:0" ], [ "Tis", "NX", "M0", "2,3,6,8", "VALUE:0" ], [ "T1a", "N0", "M0", " ", "VALUE:IA" ], [ "T1a", "N0", "M0", "0,1,5,9", "VALUE:IA" ], [ "T1a", "N0", "M0", "2,3,6,8", "VALUE:IA" ], [ "T1a", "N1", "M0", " ", "VALUE:III" ], [ "T1a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T1a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T1a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T1a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T1a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1a", "N2", "M0", " ", "VALUE:III" ], [ "T1a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T1a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T1a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T1a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T1a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T1a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1a", "NX", "M0", " ", "VALUE:UNK" ], [ "T1a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N0", "M0", " ", "VALUE:IB" ], [ "T1b", "N0", "M0", "0,1,5,9", "VALUE:IB" ], [ "T1b", "N0", "M0", "2,3,6,8", "VALUE:IB" ], [ "T1b", "N1", "M0", " ", "VALUE:III" ], [ "T1b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T1b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T1b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T1b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1b", "N2", "M0", " ", "VALUE:III" ], [ "T1b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T1b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T1b", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T1b", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1b", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T1b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1b", "NX", "M0", " ", "VALUE:UNK" ], [ "T1b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", " ", "VALUE:INOS" ], [ "T1NOS", "N0", "M0", "0,1,5,9", "VALUE:INOS" ], [ "T1NOS", "N0", "M0", "2,3,6,8", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", " ", "VALUE:III" ], [ "T1NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T1NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N2", "M0", " ", "VALUE:III" ], [ "T1NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T1NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T1NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N0", "M0", " ", "VALUE:IB" ], [ "T2a", "N0", "M0", "0,1,5,9", "VALUE:IB" ], [ "T2a", "N0", "M0", "2,3,6,8", "VALUE:IB" ], [ "T2a", "N1", "M0", " ", "VALUE:III" ], [ "T2a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T2a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T2a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T2a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T2a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2a", "N2", "M0", " ", "VALUE:III" ], [ "T2a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T2a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T2a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T2a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T2a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T2a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T2a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2a", "NX", "M0", " ", "VALUE:UNK" ], [ "T2a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N0", "M0", " ", "VALUE:IIA" ], [ "T2b", "N0", "M0", "0,1,5,9", "VALUE:IIA" ], [ "T2b", "N0", "M0", "2,3,6,8", "VALUE:IIA" ], [ "T2b", "N1", "M0", " ", "VALUE:III" ], [ "T2b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T2b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T2b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T2b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2b", "N2", "M0", " ", "VALUE:III" ], [ "T2b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T2b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T2b", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T2b", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2b", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T2b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T2b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2b", "NX", "M0", " ", "VALUE:UNK" ], [ "T2b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", " ", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N1", "M0", " ", "VALUE:III" ], [ "T2NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T2NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N2", "M0", " ", "VALUE:III" ], [ "T2NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T2NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T2NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T2NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N0", "M0", " ", "VALUE:IIA" ], [ "T3a", "N0", "M0", "0,1,5,9", "VALUE:IIA" ], [ "T3a", "N0", "M0", "2,3,6,8", "VALUE:IIA" ], [ "T3a", "N1", "M0", " ", "VALUE:III" ], [ "T3a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T3a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T3a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T3a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T3a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3a", "N2", "M0", " ", "VALUE:III" ], [ "T3a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T3a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T3a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T3a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T3a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T3a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T3a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3a", "NX", "M0", " ", "VALUE:UNK" ], [ "T3a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N0", "M0", " ", "VALUE:IIB" ], [ "T3b", "N0", "M0", "0,1,5,9", "VALUE:IIB" ], [ "T3b", "N0", "M0", "2,3,6,8", "VALUE:IIB" ], [ "T3b", "N1", "M0", " ", "VALUE:III" ], [ "T3b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T3b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T3b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T3b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3b", "N2", "M0", " ", "VALUE:III" ], [ "T3b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T3b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T3b", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T3b", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3b", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T3b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T3b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3b", "NX", "M0", " ", "VALUE:UNK" ], [ "T3b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", " ", "VALUE:IINOS" ], [ "T3NOS", "N0", "M0", "0,1,5,9", "VALUE:IINOS" ], [ "T3NOS", "N0", "M0", "2,3,6,8", "VALUE:IINOS" ], [ "T3NOS", "N1", "M0", " ", "VALUE:III" ], [ "T3NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T3NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N2", "M0", " ", "VALUE:III" ], [ "T3NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T3NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T3NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T3NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N0", "M0", " ", "VALUE:IIB" ], [ "T4a", "N0", "M0", "0,1,5,9", "VALUE:IIB" ], [ "T4a", "N0", "M0", "2,3,6,8", "VALUE:IIB" ], [ "T4a", "N1", "M0", " ", "VALUE:III" ], [ "T4a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T4a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T4a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T4a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T4a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4a", "N2", "M0", " ", "VALUE:III" ], [ "T4a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T4a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T4a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T4a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T4a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T4a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4a", "NX", "M0", " ", "VALUE:UNK" ], [ "T4a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N0", "M0", " ", "VALUE:IIC" ], [ "T4b", "N0", "M0", "0,1,5,9", "VALUE:IIC" ], [ "T4b", "N0", "M0", "2,3,6,8", "VALUE:IIC" ], [ "T4b", "N1", "M0", " ", "VALUE:III" ], [ "T4b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T4b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T4b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T4b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4b", "N2", "M0", " ", "VALUE:III" ], [ "T4b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T4b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T4b", "N2a", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T4b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T4b", "N2b", "M0", "0,1,5,9", "VALUE:IIIC" ], [ "T4b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4b", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T4b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4b", "NX", "M0", " ", "VALUE:UNK" ], [ "T4b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N0", "M0", " ", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "0,1,5,9", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "2,3,6,8", "VALUE:IINOS" ], [ "T4NOS", "N1", "M0", " ", "VALUE:III" ], [ "T4NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T4NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N2", "M0", " ", "VALUE:III" ], [ "T4NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T4NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T4NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N0", "M0", " ", "VALUE:UNK" ], [ "TX", "N0", "M0", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N0", "M0", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N1", "M0", " ", "VALUE:III" ], [ "TX", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "TX", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2", "M0", " ", "VALUE:III" ], [ "TX", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "TX", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2c", "M0", " ", "VALUE:IIIB" ], [ "TX", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "TX", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N3", "M0", " ", "VALUE:IIIC" ], [ "TX", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "TX", "NX", "M0", " ", "VALUE:UNK" ], [ "TX", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "TX", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N0", "M1a", " ", "VALUE:IV" ], [ "T0", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1a", " ", "VALUE:IV" ], [ "T0", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1a", " ", "VALUE:IV" ], [ "T0", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1a", " ", "VALUE:IV" ], [ "T0", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1a", " ", "VALUE:IV" ], [ "T0", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1a", " ", "VALUE:IV" ], [ "T0", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1a", " ", "VALUE:IV" ], [ "T0", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1a", " ", "VALUE:IV" ], [ "T0", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1a", " ", "VALUE:IV" ], [ "T0", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1a", " ", "VALUE:IV" ], [ "T0", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1a", " ", "ERROR:" ], [ "Tis", "N0", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1a", " ", "ERROR:" ], [ "Tis", "N1", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1a", " ", "ERROR:" ], [ "Tis", "N1a", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1a", " ", "ERROR:" ], [ "Tis", "N1b", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1a", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1a", " ", "ERROR:" ], [ "Tis", "N2", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1a", " ", "ERROR:" ], [ "Tis", "N2a", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1a", " ", "ERROR:" ], [ "Tis", "N2b", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1a", " ", "ERROR:" ], [ "Tis", "N2c", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1a", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1a", " ", "ERROR:" ], [ "Tis", "N3", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1a", " ", "ERROR:" ], [ "Tis", "NX", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1a", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1a", " ", "VALUE:IV" ], [ "T1a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1a", " ", "VALUE:IV" ], [ "T1a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1a", " ", "VALUE:IV" ], [ "T1a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1a", " ", "VALUE:IV" ], [ "T1b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1a", " ", "VALUE:IV" ], [ "T1b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1a", " ", "VALUE:IV" ], [ "T1b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1a", " ", "VALUE:IV" ], [ "T2a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1a", " ", "VALUE:IV" ], [ "T2a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1a", " ", "VALUE:IV" ], [ "T2a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1a", " ", "VALUE:IV" ], [ "T2b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1a", " ", "VALUE:IV" ], [ "T2b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1a", " ", "VALUE:IV" ], [ "T2b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1a", " ", "VALUE:IV" ], [ "T3a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1a", " ", "VALUE:IV" ], [ "T3a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1a", " ", "VALUE:IV" ], [ "T3a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1a", " ", "VALUE:IV" ], [ "T3b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1a", " ", "VALUE:IV" ], [ "T3b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1a", " ", "VALUE:IV" ], [ "T3b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1a", " ", "VALUE:IV" ], [ "T4a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1a", " ", "VALUE:IV" ], [ "T4a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1a", " ", "VALUE:IV" ], [ "T4a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1a", " ", "VALUE:IV" ], [ "T4b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1a", " ", "VALUE:IV" ], [ "T4b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1a", " ", "VALUE:IV" ], [ "T4b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1a", " ", "VALUE:IV" ], [ "TX", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1a", " ", "VALUE:IV" ], [ "TX", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1a", " ", "VALUE:IV" ], [ "TX", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1a", " ", "VALUE:IV" ], [ "TX", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1a", " ", "VALUE:IV" ], [ "TX", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1a", " ", "VALUE:IV" ], [ "TX", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1a", " ", "VALUE:IV" ], [ "TX", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1a", " ", "VALUE:IV" ], [ "TX", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1a", " ", "VALUE:IV" ], [ "TX", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1a", " ", "VALUE:IV" ], [ "TX", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1b", " ", "VALUE:IV" ], [ "T0", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1b", " ", "VALUE:IV" ], [ "T0", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1b", " ", "VALUE:IV" ], [ "T0", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1b", " ", "VALUE:IV" ], [ "T0", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1b", " ", "VALUE:IV" ], [ "T0", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1b", " ", "VALUE:IV" ], [ "T0", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1b", " ", "VALUE:IV" ], [ "T0", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1b", " ", "VALUE:IV" ], [ "T0", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1b", " ", "VALUE:IV" ], [ "T0", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1b", " ", "VALUE:IV" ], [ "T0", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1b", " ", "ERROR:" ], [ "Tis", "N0", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1b", " ", "ERROR:" ], [ "Tis", "N1", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1b", " ", "ERROR:" ], [ "Tis", "N1a", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1b", " ", "ERROR:" ], [ "Tis", "N1b", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1b", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1b", " ", "ERROR:" ], [ "Tis", "N2", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1b", " ", "ERROR:" ], [ "Tis", "N2a", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1b", " ", "ERROR:" ], [ "Tis", "N2b", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1b", " ", "ERROR:" ], [ "Tis", "N2c", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1b", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1b", " ", "ERROR:" ], [ "Tis", "N3", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1b", " ", "ERROR:" ], [ "Tis", "NX", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1b", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1b", " ", "VALUE:IV" ], [ "T1a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1b", " ", "VALUE:IV" ], [ "T1a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1b", " ", "VALUE:IV" ], [ "T1a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1b", " ", "VALUE:IV" ], [ "T1b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1b", " ", "VALUE:IV" ], [ "T1b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1b", " ", "VALUE:IV" ], [ "T1b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1b", " ", "VALUE:IV" ], [ "T2a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1b", " ", "VALUE:IV" ], [ "T2a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1b", " ", "VALUE:IV" ], [ "T2a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1b", " ", "VALUE:IV" ], [ "T2b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1b", " ", "VALUE:IV" ], [ "T2b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1b", " ", "VALUE:IV" ], [ "T2b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1b", " ", "VALUE:IV" ], [ "T3a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1b", " ", "VALUE:IV" ], [ "T3a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1b", " ", "VALUE:IV" ], [ "T3a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1b", " ", "VALUE:IV" ], [ "T3b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1b", " ", "VALUE:IV" ], [ "T3b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1b", " ", "VALUE:IV" ], [ "T3b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1b", " ", "VALUE:IV" ], [ "T4a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1b", " ", "VALUE:IV" ], [ "T4a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1b", " ", "VALUE:IV" ], [ "T4a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1b", " ", "VALUE:IV" ], [ "T4b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1b", " ", "VALUE:IV" ], [ "T4b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1b", " ", "VALUE:IV" ], [ "T4b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1b", " ", "VALUE:IV" ], [ "TX", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1b", " ", "VALUE:IV" ], [ "TX", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1b", " ", "VALUE:IV" ], [ "TX", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1b", " ", "VALUE:IV" ], [ "TX", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1b", " ", "VALUE:IV" ], [ "TX", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1b", " ", "VALUE:IV" ], [ "TX", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1b", " ", "VALUE:IV" ], [ "TX", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1b", " ", "VALUE:IV" ], [ "TX", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1b", " ", "VALUE:IV" ], [ "TX", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1b", " ", "VALUE:IV" ], [ "TX", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1c", " ", "VALUE:IV" ], [ "T0", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1c", " ", "VALUE:IV" ], [ "T0", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1c", " ", "VALUE:IV" ], [ "T0", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1c", " ", "VALUE:IV" ], [ "T0", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1c", " ", "VALUE:IV" ], [ "T0", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1c", " ", "VALUE:IV" ], [ "T0", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1c", " ", "VALUE:IV" ], [ "T0", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1c", " ", "VALUE:IV" ], [ "T0", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1c", " ", "VALUE:IV" ], [ "T0", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1c", " ", "VALUE:IV" ], [ "T0", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1c", " ", "ERROR:" ], [ "Tis", "N0", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1c", " ", "ERROR:" ], [ "Tis", "N1", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1c", " ", "ERROR:" ], [ "Tis", "N1a", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1c", " ", "ERROR:" ], [ "Tis", "N1b", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1c", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1c", " ", "ERROR:" ], [ "Tis", "N2", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1c", " ", "ERROR:" ], [ "Tis", "N2a", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1c", " ", "ERROR:" ], [ "Tis", "N2b", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1c", " ", "ERROR:" ], [ "Tis", "N2c", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1c", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1c", " ", "ERROR:" ], [ "Tis", "N3", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1c", " ", "ERROR:" ], [ "Tis", "NX", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1c", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1c", " ", "VALUE:IV" ], [ "T1a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1c", " ", "VALUE:IV" ], [ "T1a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1c", " ", "VALUE:IV" ], [ "T1a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1c", " ", "VALUE:IV" ], [ "T1b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1c", " ", "VALUE:IV" ], [ "T1b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1c", " ", "VALUE:IV" ], [ "T1b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1c", " ", "VALUE:IV" ], [ "T2a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1c", " ", "VALUE:IV" ], [ "T2a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1c", " ", "VALUE:IV" ], [ "T2a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1c", " ", "VALUE:IV" ], [ "T2b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1c", " ", "VALUE:IV" ], [ "T2b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1c", " ", "VALUE:IV" ], [ "T2b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1c", " ", "VALUE:IV" ], [ "T3a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1c", " ", "VALUE:IV" ], [ "T3a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1c", " ", "VALUE:IV" ], [ "T3a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1c", " ", "VALUE:IV" ], [ "T3b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1c", " ", "VALUE:IV" ], [ "T3b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1c", " ", "VALUE:IV" ], [ "T3b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1c", " ", "VALUE:IV" ], [ "T4a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1c", " ", "VALUE:IV" ], [ "T4a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1c", " ", "VALUE:IV" ], [ "T4a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1c", " ", "VALUE:IV" ], [ "T4b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1c", " ", "VALUE:IV" ], [ "T4b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1c", " ", "VALUE:IV" ], [ "T4b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1c", " ", "VALUE:IV" ], [ "TX", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1c", " ", "VALUE:IV" ], [ "TX", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1c", " ", "VALUE:IV" ], [ "TX", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1c", " ", "VALUE:IV" ], [ "TX", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1c", " ", "VALUE:IV" ], [ "TX", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1c", " ", "VALUE:IV" ], [ "TX", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1c", " ", "VALUE:IV" ], [ "TX", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1c", " ", "VALUE:IV" ], [ "TX", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1c", " ", "VALUE:IV" ], [ "TX", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1c", " ", "VALUE:IV" ], [ "TX", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1NOS", " ", "ERROR:" ], [ "Tis", "N0", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1a", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1b", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2a", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2b", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2c", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1NOS", " ", "ERROR:" ], [ "Tis", "N3", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1NOS", " ", "ERROR:" ], [ "Tis", "NX", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1NOS", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1NOS", " ", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "MX", " ", "VALUE:UNK" ], [ "T0", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N1", "MX", " ", "VALUE:UNK" ], [ "T0", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N1a", "MX", " ", "VALUE:UNK" ], [ "T0", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N1b", "MX", " ", "VALUE:UNK" ], [ "T0", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T0", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N2", "MX", " ", "VALUE:UNK" ], [ "T0", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N2a", "MX", " ", "VALUE:UNK" ], [ "T0", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N2b", "MX", " ", "VALUE:UNK" ], [ "T0", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N2c", "MX", " ", "VALUE:UNK" ], [ "T0", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T0", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N3", "MX", " ", "VALUE:UNK" ], [ "T0", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T0", "NX", "MX", " ", "VALUE:UNK" ], [ "T0", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T0", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "Tis", "N0", "MX", " ", "VALUE:0" ], [ "Tis", "N0", "MX", "0,1,5,9", "VALUE:0" ], [ "Tis", "N0", "MX", "2,3,6,8", "VALUE:0" ], [ "Tis", "N1", "MX", " ", "ERROR:" ], [ "Tis", "N1", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "MX", " ", "ERROR:" ], [ "Tis", "N1a", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "MX", " ", "ERROR:" ], [ "Tis", "N1b", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "MX", " ", "ERROR:" ], [ "Tis", "N1NOS", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "MX", " ", "ERROR:" ], [ "Tis", "N2", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "MX", " ", "ERROR:" ], [ "Tis", "N2a", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "MX", " ", "ERROR:" ], [ "Tis", "N2b", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "MX", " ", "ERROR:" ], [ "Tis", "N2c", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "MX", " ", "ERROR:" ], [ "Tis", "N2NOS", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "MX", " ", "ERROR:" ], [ "Tis", "N3", "MX", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "MX", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "MX", " ", "VALUE:0" ], [ "Tis", "NX", "MX", "0,1,5,9", "VALUE:0" ], [ "Tis", "NX", "MX", "2,3,6,8", "VALUE:0" ], [ "T1a", "N0", "MX", " ", "VALUE:UNK" ], [ "T1a", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N1", "MX", " ", "VALUE:UNK" ], [ "T1a", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N1a", "MX", " ", "VALUE:UNK" ], [ "T1a", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N1b", "MX", " ", "VALUE:UNK" ], [ "T1a", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T1a", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N2", "MX", " ", "VALUE:UNK" ], [ "T1a", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N2a", "MX", " ", "VALUE:UNK" ], [ "T1a", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N2b", "MX", " ", "VALUE:UNK" ], [ "T1a", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N2c", "MX", " ", "VALUE:UNK" ], [ "T1a", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T1a", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "N3", "MX", " ", "VALUE:UNK" ], [ "T1a", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1a", "NX", "MX", " ", "VALUE:UNK" ], [ "T1a", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N0", "MX", " ", "VALUE:UNK" ], [ "T1b", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N1", "MX", " ", "VALUE:UNK" ], [ "T1b", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N1a", "MX", " ", "VALUE:UNK" ], [ "T1b", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N1b", "MX", " ", "VALUE:UNK" ], [ "T1b", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T1b", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N2", "MX", " ", "VALUE:UNK" ], [ "T1b", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N2a", "MX", " ", "VALUE:UNK" ], [ "T1b", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N2b", "MX", " ", "VALUE:UNK" ], [ "T1b", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N2c", "MX", " ", "VALUE:UNK" ], [ "T1b", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T1b", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N3", "MX", " ", "VALUE:UNK" ], [ "T1b", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "NX", "MX", " ", "VALUE:UNK" ], [ "T1b", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N1a", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N1b", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N2", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N2a", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N2b", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N2c", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N3", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", " ", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N0", "MX", " ", "VALUE:UNK" ], [ "T2a", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N1", "MX", " ", "VALUE:UNK" ], [ "T2a", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N1a", "MX", " ", "VALUE:UNK" ], [ "T2a", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N1b", "MX", " ", "VALUE:UNK" ], [ "T2a", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T2a", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N2", "MX", " ", "VALUE:UNK" ], [ "T2a", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N2a", "MX", " ", "VALUE:UNK" ], [ "T2a", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N2b", "MX", " ", "VALUE:UNK" ], [ "T2a", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N2c", "MX", " ", "VALUE:UNK" ], [ "T2a", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T2a", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N3", "MX", " ", "VALUE:UNK" ], [ "T2a", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "NX", "MX", " ", "VALUE:UNK" ], [ "T2a", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N0", "MX", " ", "VALUE:UNK" ], [ "T2b", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N1", "MX", " ", "VALUE:UNK" ], [ "T2b", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N1a", "MX", " ", "VALUE:UNK" ], [ "T2b", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N1b", "MX", " ", "VALUE:UNK" ], [ "T2b", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T2b", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N2", "MX", " ", "VALUE:UNK" ], [ "T2b", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N2a", "MX", " ", "VALUE:UNK" ], [ "T2b", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N2b", "MX", " ", "VALUE:UNK" ], [ "T2b", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N2c", "MX", " ", "VALUE:UNK" ], [ "T2b", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T2b", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N3", "MX", " ", "VALUE:UNK" ], [ "T2b", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "NX", "MX", " ", "VALUE:UNK" ], [ "T2b", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N1a", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N1b", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N2", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N2a", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N2b", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N2c", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N3", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", " ", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N0", "MX", " ", "VALUE:UNK" ], [ "T3a", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N1", "MX", " ", "VALUE:UNK" ], [ "T3a", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N1a", "MX", " ", "VALUE:UNK" ], [ "T3a", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N1b", "MX", " ", "VALUE:UNK" ], [ "T3a", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T3a", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N2", "MX", " ", "VALUE:UNK" ], [ "T3a", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N2a", "MX", " ", "VALUE:UNK" ], [ "T3a", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N2b", "MX", " ", "VALUE:UNK" ], [ "T3a", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N2c", "MX", " ", "VALUE:UNK" ], [ "T3a", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T3a", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N3", "MX", " ", "VALUE:UNK" ], [ "T3a", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "NX", "MX", " ", "VALUE:UNK" ], [ "T3a", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N0", "MX", " ", "VALUE:UNK" ], [ "T3b", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N1", "MX", " ", "VALUE:UNK" ], [ "T3b", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N1a", "MX", " ", "VALUE:UNK" ], [ "T3b", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N1b", "MX", " ", "VALUE:UNK" ], [ "T3b", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T3b", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N2", "MX", " ", "VALUE:UNK" ], [ "T3b", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N2a", "MX", " ", "VALUE:UNK" ], [ "T3b", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N2b", "MX", " ", "VALUE:UNK" ], [ "T3b", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N2c", "MX", " ", "VALUE:UNK" ], [ "T3b", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T3b", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N3", "MX", " ", "VALUE:UNK" ], [ "T3b", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "NX", "MX", " ", "VALUE:UNK" ], [ "T3b", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N1a", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N1b", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N2", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N2a", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N2b", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N2c", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N3", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "NX", "MX", " ", "VALUE:UNK" ], [ "T3NOS", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N0", "MX", " ", "VALUE:UNK" ], [ "T4a", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N1", "MX", " ", "VALUE:UNK" ], [ "T4a", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N1a", "MX", " ", "VALUE:UNK" ], [ "T4a", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N1b", "MX", " ", "VALUE:UNK" ], [ "T4a", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T4a", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N2", "MX", " ", "VALUE:UNK" ], [ "T4a", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N2a", "MX", " ", "VALUE:UNK" ], [ "T4a", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N2b", "MX", " ", "VALUE:UNK" ], [ "T4a", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N2c", "MX", " ", "VALUE:UNK" ], [ "T4a", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T4a", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N3", "MX", " ", "VALUE:UNK" ], [ "T4a", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "NX", "MX", " ", "VALUE:UNK" ], [ "T4a", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N0", "MX", " ", "VALUE:UNK" ], [ "T4b", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N1", "MX", " ", "VALUE:UNK" ], [ "T4b", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N1a", "MX", " ", "VALUE:UNK" ], [ "T4b", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N1b", "MX", " ", "VALUE:UNK" ], [ "T4b", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T4b", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N2", "MX", " ", "VALUE:UNK" ], [ "T4b", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N2a", "MX", " ", "VALUE:UNK" ], [ "T4b", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N2b", "MX", " ", "VALUE:UNK" ], [ "T4b", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N2c", "MX", " ", "VALUE:UNK" ], [ "T4b", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T4b", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N3", "MX", " ", "VALUE:UNK" ], [ "T4b", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "NX", "MX", " ", "VALUE:UNK" ], [ "T4b", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N0", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N1", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N1a", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N1b", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N2", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N2a", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N2b", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N2c", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N3", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "NX", "MX", " ", "VALUE:UNK" ], [ "T4NOS", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "NX", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N0", "MX", " ", "VALUE:UNK" ], [ "TX", "N0", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N0", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N1", "MX", " ", "VALUE:UNK" ], [ "TX", "N1", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N1", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N1a", "MX", " ", "VALUE:UNK" ], [ "TX", "N1a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N1a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N1b", "MX", " ", "VALUE:UNK" ], [ "TX", "N1b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N1b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N1NOS", "MX", " ", "VALUE:UNK" ], [ "TX", "N1NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N1NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N2", "MX", " ", "VALUE:UNK" ], [ "TX", "N2", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N2", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N2a", "MX", " ", "VALUE:UNK" ], [ "TX", "N2a", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N2a", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N2b", "MX", " ", "VALUE:UNK" ], [ "TX", "N2b", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N2b", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N2c", "MX", " ", "VALUE:UNK" ], [ "TX", "N2c", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N2c", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N2NOS", "MX", " ", "VALUE:UNK" ], [ "TX", "N2NOS", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N2NOS", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N3", "MX", " ", "VALUE:UNK" ], [ "TX", "N3", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N3", "MX", "2,3,6,8", "VALUE:UNK" ], [ "TX", "NX", "MX", " ", "VALUE:UNK" ], [ "TX", "NX", "MX", "0,1,5,9", "VALUE:UNK" ], [ "TX", "NX", "MX", "2,3,6,8", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbr.json
deleted file mode 100644
index 386f2dc30..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbr.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qbr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.028Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:III" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:III" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVB" ], [ "T1", "N1", "M1", "VALUE:IVB" ], [ "T1", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IVNOS" ], [ "T4", "N1", "MX", "VALUE:IVNOS" ], [ "T4", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbv.json
deleted file mode 100644
index 0a1b2a4a7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qbv.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc6_stage_qbv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.079Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "4", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N1", "M0", "1", "VALUE:IV" ], [ "T0", "N1", "M0", "2", "VALUE:IV" ], [ "T0", "N1", "M0", "3", "VALUE:IV" ], [ "T0", "N1", "M0", "4", "VALUE:IV" ], [ "T0", "N1", "M0", "9", "VALUE:IV" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "4", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "VALUE:UNK" ], [ "T1a", "N0", "M0", "1", "VALUE:IA" ], [ "T1a", "N0", "M0", "2", "VALUE:IA" ], [ "T1a", "N0", "M0", "3", "VALUE:IIA" ], [ "T1a", "N0", "M0", "4", "VALUE:IIA" ], [ "T1a", "N0", "M0", "9", "VALUE:UNK" ], [ "T1a", "N1", "M0", "1", "VALUE:IV" ], [ "T1a", "N1", "M0", "2", "VALUE:IV" ], [ "T1a", "N1", "M0", "3", "VALUE:IV" ], [ "T1a", "N1", "M0", "4", "VALUE:IV" ], [ "T1a", "N1", "M0", "9", "VALUE:IV" ], [ "T1a", "NX", "M0", "1", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2", "VALUE:UNK" ], [ "T1a", "NX", "M0", "3", "VALUE:UNK" ], [ "T1a", "NX", "M0", "4", "VALUE:UNK" ], [ "T1a", "NX", "M0", "9", "VALUE:UNK" ], [ "T1b", "N0", "M0", "1", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "VALUE:IA" ], [ "T1b", "N0", "M0", "3", "VALUE:IIA" ], [ "T1b", "N0", "M0", "4", "VALUE:IIA" ], [ "T1b", "N0", "M0", "9", "VALUE:UNK" ], [ "T1b", "N1", "M0", "1", "VALUE:IV" ], [ "T1b", "N1", "M0", "2", "VALUE:IV" ], [ "T1b", "N1", "M0", "3", "VALUE:IV" ], [ "T1b", "N1", "M0", "4", "VALUE:IV" ], [ "T1b", "N1", "M0", "9", "VALUE:IV" ], [ "T1b", "NX", "M0", "1", "VALUE:IA" ], [ "T1b", "NX", "M0", "2", "VALUE:IA" ], [ "T1b", "NX", "M0", "3", "VALUE:IIA" ], [ "T1b", "NX", "M0", "4", "VALUE:IIA" ], [ "T1b", "NX", "M0", "9", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "1", "VALUE:INOS" ], [ "T1NOS", "N0", "M0", "2", "VALUE:INOS" ], [ "T1NOS", "N0", "M0", "3", "VALUE:IINOS" ], [ "T1NOS", "N0", "M0", "4", "VALUE:IINOS" ], [ "T1NOS", "N0", "M0", "9", "VALUE:UNK" ], [ "T1NOS", "N1", "M0", "1", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "2", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "3", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "4", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "9", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "4", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "T2a", "N0", "M0", "1", "VALUE:IB" ], [ "T2a", "N0", "M0", "2", "VALUE:IB" ], [ "T2a", "N0", "M0", "3", "VALUE:IIB" ], [ "T2a", "N0", "M0", "4", "VALUE:IIB" ], [ "T2a", "N0", "M0", "9", "VALUE:UNK" ], [ "T2a", "N1", "M0", "1", "VALUE:IV" ], [ "T2a", "N1", "M0", "2", "VALUE:IV" ], [ "T2a", "N1", "M0", "3", "VALUE:IV" ], [ "T2a", "N1", "M0", "4", "VALUE:IV" ], [ "T2a", "N1", "M0", "9", "VALUE:IV" ], [ "T2a", "NX", "M0", "1", "VALUE:UNK" ], [ "T2a", "NX", "M0", "2", "VALUE:UNK" ], [ "T2a", "NX", "M0", "3", "VALUE:UNK" ], [ "T2a", "NX", "M0", "4", "VALUE:UNK" ], [ "T2a", "NX", "M0", "9", "VALUE:UNK" ], [ "T2b", "N0", "M0", "1", "VALUE:IB" ], [ "T2b", "N0", "M0", "2", "VALUE:IB" ], [ "T2b", "N0", "M0", "3", "VALUE:III" ], [ "T2b", "N0", "M0", "4", "VALUE:III" ], [ "T2b", "N0", "M0", "9", "VALUE:UNK" ], [ "T2b", "N1", "M0", "1", "VALUE:IV" ], [ "T2b", "N1", "M0", "2", "VALUE:IV" ], [ "T2b", "N1", "M0", "3", "VALUE:IV" ], [ "T2b", "N1", "M0", "4", "VALUE:IV" ], [ "T2b", "N1", "M0", "9", "VALUE:IV" ], [ "T2b", "NX", "M0", "1", "VALUE:IB" ], [ "T2b", "NX", "M0", "2", "VALUE:IB" ], [ "T2b", "NX", "M0", "3", "VALUE:III" ], [ "T2b", "NX", "M0", "4", "VALUE:III" ], [ "T2b", "NX", "M0", "9", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "1", "VALUE:INOS" ], [ "T2NOS", "N0", "M0", "2", "VALUE:INOS" ], [ "T2NOS", "N0", "M0", "3", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "4", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "9", "VALUE:UNK" ], [ "T2NOS", "N1", "M0", "1", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "2", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "3", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "4", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "9", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "4", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "TX", "N0", "M0", "1", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:UNK" ], [ "TX", "N1", "M0", "1", "VALUE:IV" ], [ "TX", "N1", "M0", "2", "VALUE:IV" ], [ "TX", "N1", "M0", "3", "VALUE:IV" ], [ "TX", "N1", "M0", "4", "VALUE:IV" ], [ "TX", "N1", "M0", "9", "VALUE:IV" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "N0", "M1", "1", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "VALUE:IV" ], [ "T0", "N0", "M1", "4", "VALUE:IV" ], [ "T0", "N0", "M1", "9", "VALUE:IV" ], [ "T0", "N1", "M1", "1", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "VALUE:IV" ], [ "T0", "N1", "M1", "4", "VALUE:IV" ], [ "T0", "N1", "M1", "9", "VALUE:IV" ], [ "T0", "NX", "M1", "1", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "VALUE:IV" ], [ "T0", "NX", "M1", "4", "VALUE:IV" ], [ "T0", "NX", "M1", "9", "VALUE:IV" ], [ "T1a", "N0", "M1", "1", "VALUE:IV" ], [ "T1a", "N0", "M1", "2", "VALUE:IV" ], [ "T1a", "N0", "M1", "3", "VALUE:IV" ], [ "T1a", "N0", "M1", "4", "VALUE:IV" ], [ "T1a", "N0", "M1", "9", "VALUE:IV" ], [ "T1a", "N1", "M1", "1", "VALUE:IV" ], [ "T1a", "N1", "M1", "2", "VALUE:IV" ], [ "T1a", "N1", "M1", "3", "VALUE:IV" ], [ "T1a", "N1", "M1", "4", "VALUE:IV" ], [ "T1a", "N1", "M1", "9", "VALUE:IV" ], [ "T1a", "NX", "M1", "1", "VALUE:IV" ], [ "T1a", "NX", "M1", "2", "VALUE:IV" ], [ "T1a", "NX", "M1", "3", "VALUE:IV" ], [ "T1a", "NX", "M1", "4", "VALUE:IV" ], [ "T1a", "NX", "M1", "9", "VALUE:IV" ], [ "T1b", "N0", "M1", "1", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "VALUE:IV" ], [ "T1b", "N0", "M1", "4", "VALUE:IV" ], [ "T1b", "N0", "M1", "9", "VALUE:IV" ], [ "T1b", "N1", "M1", "1", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "VALUE:IV" ], [ "T1b", "N1", "M1", "4", "VALUE:IV" ], [ "T1b", "N1", "M1", "9", "VALUE:IV" ], [ "T1b", "NX", "M1", "1", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "VALUE:IV" ], [ "T1b", "NX", "M1", "4", "VALUE:IV" ], [ "T1b", "NX", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "9", "VALUE:IV" ], [ "T2a", "N0", "M1", "1", "VALUE:IV" ], [ "T2a", "N0", "M1", "2", "VALUE:IV" ], [ "T2a", "N0", "M1", "3", "VALUE:IV" ], [ "T2a", "N0", "M1", "4", "VALUE:IV" ], [ "T2a", "N0", "M1", "9", "VALUE:IV" ], [ "T2a", "N1", "M1", "1", "VALUE:IV" ], [ "T2a", "N1", "M1", "2", "VALUE:IV" ], [ "T2a", "N1", "M1", "3", "VALUE:IV" ], [ "T2a", "N1", "M1", "4", "VALUE:IV" ], [ "T2a", "N1", "M1", "9", "VALUE:IV" ], [ "T2a", "NX", "M1", "1", "VALUE:IV" ], [ "T2a", "NX", "M1", "2", "VALUE:IV" ], [ "T2a", "NX", "M1", "3", "VALUE:IV" ], [ "T2a", "NX", "M1", "4", "VALUE:IV" ], [ "T2a", "NX", "M1", "9", "VALUE:IV" ], [ "T2b", "N0", "M1", "1", "VALUE:IV" ], [ "T2b", "N0", "M1", "2", "VALUE:IV" ], [ "T2b", "N0", "M1", "3", "VALUE:IV" ], [ "T2b", "N0", "M1", "4", "VALUE:IV" ], [ "T2b", "N0", "M1", "9", "VALUE:IV" ], [ "T2b", "N1", "M1", "1", "VALUE:IV" ], [ "T2b", "N1", "M1", "2", "VALUE:IV" ], [ "T2b", "N1", "M1", "3", "VALUE:IV" ], [ "T2b", "N1", "M1", "4", "VALUE:IV" ], [ "T2b", "N1", "M1", "9", "VALUE:IV" ], [ "T2b", "NX", "M1", "1", "VALUE:IV" ], [ "T2b", "NX", "M1", "2", "VALUE:IV" ], [ "T2b", "NX", "M1", "3", "VALUE:IV" ], [ "T2b", "NX", "M1", "4", "VALUE:IV" ], [ "T2b", "NX", "M1", "9", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "9", "VALUE:IV" ], [ "TX", "N0", "M1", "1", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "VALUE:IV" ], [ "TX", "N0", "M1", "4", "VALUE:IV" ], [ "TX", "N0", "M1", "9", "VALUE:IV" ], [ "TX", "N1", "M1", "1", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "VALUE:IV" ], [ "TX", "N1", "M1", "4", "VALUE:IV" ], [ "TX", "N1", "M1", "9", "VALUE:IV" ], [ "TX", "NX", "M1", "1", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "VALUE:IV" ], [ "TX", "NX", "M1", "4", "VALUE:IV" ], [ "TX", "NX", "M1", "9", "VALUE:IV" ], [ "T0", "N0", "MX", "1", "VALUE:UNK" ], [ "T0", "N0", "MX", "2", "VALUE:UNK" ], [ "T0", "N0", "MX", "3", "VALUE:UNK" ], [ "T0", "N0", "MX", "4", "VALUE:UNK" ], [ "T0", "N0", "MX", "9", "VALUE:UNK" ], [ "T0", "N1", "MX", "1", "VALUE:IV" ], [ "T0", "N1", "MX", "2", "VALUE:IV" ], [ "T0", "N1", "MX", "3", "VALUE:IV" ], [ "T0", "N1", "MX", "4", "VALUE:IV" ], [ "T0", "N1", "MX", "9", "VALUE:IV" ], [ "T0", "NX", "MX", "1", "VALUE:UNK" ], [ "T0", "NX", "MX", "2", "VALUE:UNK" ], [ "T0", "NX", "MX", "3", "VALUE:UNK" ], [ "T0", "NX", "MX", "4", "VALUE:UNK" ], [ "T0", "NX", "MX", "9", "VALUE:UNK" ], [ "T1a", "N0", "MX", "1", "VALUE:UNK" ], [ "T1a", "N0", "MX", "2", "VALUE:UNK" ], [ "T1a", "N0", "MX", "3", "VALUE:UNK" ], [ "T1a", "N0", "MX", "4", "VALUE:UNK" ], [ "T1a", "N0", "MX", "9", "VALUE:UNK" ], [ "T1a", "N1", "MX", "1", "VALUE:IV" ], [ "T1a", "N1", "MX", "2", "VALUE:IV" ], [ "T1a", "N1", "MX", "3", "VALUE:IV" ], [ "T1a", "N1", "MX", "4", "VALUE:IV" ], [ "T1a", "N1", "MX", "9", "VALUE:IV" ], [ "T1a", "NX", "MX", "1", "VALUE:UNK" ], [ "T1a", "NX", "MX", "2", "VALUE:UNK" ], [ "T1a", "NX", "MX", "3", "VALUE:UNK" ], [ "T1a", "NX", "MX", "4", "VALUE:UNK" ], [ "T1a", "NX", "MX", "9", "VALUE:UNK" ], [ "T1b", "N0", "MX", "1", "VALUE:UNK" ], [ "T1b", "N0", "MX", "2", "VALUE:UNK" ], [ "T1b", "N0", "MX", "3", "VALUE:UNK" ], [ "T1b", "N0", "MX", "4", "VALUE:UNK" ], [ "T1b", "N0", "MX", "9", "VALUE:UNK" ], [ "T1b", "N1", "MX", "1", "VALUE:IV" ], [ "T1b", "N1", "MX", "2", "VALUE:IV" ], [ "T1b", "N1", "MX", "3", "VALUE:IV" ], [ "T1b", "N1", "MX", "4", "VALUE:IV" ], [ "T1b", "N1", "MX", "9", "VALUE:IV" ], [ "T1b", "NX", "MX", "1", "VALUE:UNK" ], [ "T1b", "NX", "MX", "2", "VALUE:UNK" ], [ "T1b", "NX", "MX", "3", "VALUE:UNK" ], [ "T1b", "NX", "MX", "4", "VALUE:UNK" ], [ "T1b", "NX", "MX", "9", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "1", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "2", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "3", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "4", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "9", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "1", "VALUE:IV" ], [ "T1NOS", "N1", "MX", "2", "VALUE:IV" ], [ "T1NOS", "N1", "MX", "3", "VALUE:IV" ], [ "T1NOS", "N1", "MX", "4", "VALUE:IV" ], [ "T1NOS", "N1", "MX", "9", "VALUE:IV" ], [ "T1NOS", "NX", "MX", "1", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "2", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "3", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "4", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "9", "VALUE:UNK" ], [ "T2a", "N0", "MX", "1", "VALUE:UNK" ], [ "T2a", "N0", "MX", "2", "VALUE:UNK" ], [ "T2a", "N0", "MX", "3", "VALUE:UNK" ], [ "T2a", "N0", "MX", "4", "VALUE:UNK" ], [ "T2a", "N0", "MX", "9", "VALUE:UNK" ], [ "T2a", "N1", "MX", "1", "VALUE:IV" ], [ "T2a", "N1", "MX", "2", "VALUE:IV" ], [ "T2a", "N1", "MX", "3", "VALUE:IV" ], [ "T2a", "N1", "MX", "4", "VALUE:IV" ], [ "T2a", "N1", "MX", "9", "VALUE:IV" ], [ "T2a", "NX", "MX", "1", "VALUE:UNK" ], [ "T2a", "NX", "MX", "2", "VALUE:UNK" ], [ "T2a", "NX", "MX", "3", "VALUE:UNK" ], [ "T2a", "NX", "MX", "4", "VALUE:UNK" ], [ "T2a", "NX", "MX", "9", "VALUE:UNK" ], [ "T2b", "N0", "MX", "1", "VALUE:UNK" ], [ "T2b", "N0", "MX", "2", "VALUE:UNK" ], [ "T2b", "N0", "MX", "3", "VALUE:UNK" ], [ "T2b", "N0", "MX", "4", "VALUE:UNK" ], [ "T2b", "N0", "MX", "9", "VALUE:UNK" ], [ "T2b", "N1", "MX", "1", "VALUE:IV" ], [ "T2b", "N1", "MX", "2", "VALUE:IV" ], [ "T2b", "N1", "MX", "3", "VALUE:IV" ], [ "T2b", "N1", "MX", "4", "VALUE:IV" ], [ "T2b", "N1", "MX", "9", "VALUE:IV" ], [ "T2b", "NX", "MX", "1", "VALUE:UNK" ], [ "T2b", "NX", "MX", "2", "VALUE:UNK" ], [ "T2b", "NX", "MX", "3", "VALUE:UNK" ], [ "T2b", "NX", "MX", "4", "VALUE:UNK" ], [ "T2b", "NX", "MX", "9", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "1", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "2", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "3", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "4", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "9", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "1", "VALUE:IV" ], [ "T2NOS", "N1", "MX", "2", "VALUE:IV" ], [ "T2NOS", "N1", "MX", "3", "VALUE:IV" ], [ "T2NOS", "N1", "MX", "4", "VALUE:IV" ], [ "T2NOS", "N1", "MX", "9", "VALUE:IV" ], [ "T2NOS", "NX", "MX", "1", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "2", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "3", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "4", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "9", "VALUE:UNK" ], [ "TX", "N0", "MX", "1", "VALUE:UNK" ], [ "TX", "N0", "MX", "2", "VALUE:UNK" ], [ "TX", "N0", "MX", "3", "VALUE:UNK" ], [ "TX", "N0", "MX", "4", "VALUE:UNK" ], [ "TX", "N0", "MX", "9", "VALUE:UNK" ], [ "TX", "N1", "MX", "1", "VALUE:IV" ], [ "TX", "N1", "MX", "2", "VALUE:IV" ], [ "TX", "N1", "MX", "3", "VALUE:IV" ], [ "TX", "N1", "MX", "4", "VALUE:IV" ], [ "TX", "N1", "MX", "9", "VALUE:IV" ], [ "TX", "NX", "MX", "1", "VALUE:UNK" ], [ "TX", "NX", "MX", "2", "VALUE:UNK" ], [ "TX", "NX", "MX", "3", "VALUE:UNK" ], [ "TX", "NX", "MX", "4", "VALUE:UNK" ], [ "TX", "NX", "MX", "9", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcb.json
deleted file mode 100644
index ff7ce559b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcb.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qcb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.173Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IB" ], [ "T0", "N2", "M0", "VALUE:II" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IB" ], [ "T1", "N2", "M0", "VALUE:II" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IB" ], [ "T2a", "N1", "M0", "VALUE:II" ], [ "T2a", "N2", "M0", "VALUE:IIIA" ], [ "T2a", "N3", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IB" ], [ "T2b", "N1", "M0", "VALUE:II" ], [ "T2b", "N2", "M0", "VALUE:IIIA" ], [ "T2b", "N3", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IB" ], [ "T2NOS", "N1", "M0", "VALUE:II" ], [ "T2NOS", "N2", "M0", "VALUE:IIIA" ], [ "T2NOS", "N3", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIB" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "N2", "M1", "VALUE:IV" ], [ "T2a", "N3", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "N2", "M1", "VALUE:IV" ], [ "T2b", "N3", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "N2", "M1", "VALUE:IV" ], [ "T2NOS", "N3", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "N3", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:UNK" ], [ "T1", "N3", "MX", "VALUE:IV" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:UNK" ], [ "T2a", "N2", "MX", "VALUE:UNK" ], [ "T2a", "N3", "MX", "VALUE:IV" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:UNK" ], [ "T2b", "N2", "MX", "VALUE:UNK" ], [ "T2b", "N3", "MX", "VALUE:IV" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:UNK" ], [ "T2NOS", "N2", "MX", "VALUE:UNK" ], [ "T2NOS", "N3", "MX", "VALUE:IV" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "N3", "MX", "VALUE:IV" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "N2", "MX", "VALUE:IV" ], [ "T4", "N3", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "N3", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcc.json
deleted file mode 100644
index 6fb0d2a07..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcc.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qcc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.237Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIC" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IIIC" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIIA" ], [ "T3", "N1", "M0", "VALUE:IIIC" ], [ "T3", "NX", "M0", "VALUE:IIINOS" ], [ "T4", "N0", "M0", "VALUE:IIIB" ], [ "T4", "N1", "M0", "VALUE:IIIC" ], [ "T4", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcd.json
deleted file mode 100644
index 433393f1e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qcd.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qcd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.288Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIC" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IIIC" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIIA" ], [ "T3", "N1", "M0", "VALUE:IIIC" ], [ "T3", "NX", "M0", "VALUE:IIINOS" ], [ "T4", "N0", "M0", "VALUE:IIIB" ], [ "T4", "N1", "M0", "VALUE:IIIC" ], [ "T4", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qdx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qdx.json
deleted file mode 100644
index 1fadf97a8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qdx.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qdx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.339Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:III" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qdy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qdy.json
deleted file mode 100644
index 17ce1da61..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qdy.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc6_stage_qdy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.399Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "SSF2",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "105", "000", "00", "000,020", "VALUE:IEA" ], [ "105", "000", "00", "010,030", "VALUE:IEB" ], [ "105", "000", "00", "988", "ERROR:" ], [ "105", "000", "00", "999", "VALUE:IE" ], [ "105", "000", "20", "000,020", "VALUE:IIIESA" ], [ "105", "000", "20", "010,030", "VALUE:IIIESB" ], [ "105", "000", "20", "988", "ERROR:" ], [ "105", "000", "20", "999", "VALUE:IIIES" ], [ "105", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "105", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "105", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "105", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "105", "000", "88,98", "000,020", "ERROR:" ], [ "105", "000", "88,98", "010,030", "ERROR:" ], [ "105", "000", "88,98", "988", "ERROR:" ], [ "105", "000", "88,98", "999", "ERROR:" ], [ "105", "000", "99", "000,020", "VALUE:UNK" ], [ "105", "000", "99", "010,030", "VALUE:UNK" ], [ "105", "000", "99", "988", "ERROR:" ], [ "105", "000", "99", "999", "VALUE:UNK" ], [ "105", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "105", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "105", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "105", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "105", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "105", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "105", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "105", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "105", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "105", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "105", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "105", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "105", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "105", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "105", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "105", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "105", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "105", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "105", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "105", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "105", "888,988", "00", "000,020", "ERROR:" ], [ "105", "888,988", "00", "010,030", "ERROR:" ], [ "105", "888,988", "00", "988", "ERROR:" ], [ "105", "888,988", "00", "999", "ERROR:" ], [ "105", "888,988", "20", "000,020", "ERROR:" ], [ "105", "888,988", "20", "010,030", "ERROR:" ], [ "105", "888,988", "20", "988", "ERROR:" ], [ "105", "888,988", "20", "999", "ERROR:" ], [ "105", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "105", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "105", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "105", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "105", "888,988", "88,98", "000,020", "ERROR:" ], [ "105", "888,988", "88,98", "010,030", "ERROR:" ], [ "105", "888,988", "88,98", "988", "ERROR:" ], [ "105", "888,988", "88,98", "999", "ERROR:" ], [ "105", "888,988", "99", "000,020", "ERROR:" ], [ "105", "888,988", "99", "010,030", "ERROR:" ], [ "105", "888,988", "99", "988", "ERROR:" ], [ "105", "888,988", "99", "999", "ERROR:" ], [ "105", "999", "00", "000,020", "VALUE:UNK" ], [ "105", "999", "00", "010,030", "VALUE:UNK" ], [ "105", "999", "00", "988", "ERROR:" ], [ "105", "999", "00", "999", "VALUE:UNK" ], [ "105", "999", "20", "000,020", "VALUE:IIIESA" ], [ "105", "999", "20", "010,030", "VALUE:IIIESB" ], [ "105", "999", "20", "988", "ERROR:" ], [ "105", "999", "20", "999", "VALUE:IIIES" ], [ "105", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "105", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "105", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "105", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "105", "999", "88,98", "000,020", "ERROR:" ], [ "105", "999", "88,98", "010,030", "ERROR:" ], [ "105", "999", "88,98", "988", "ERROR:" ], [ "105", "999", "88,98", "999", "ERROR:" ], [ "105", "999", "99", "000,020", "VALUE:UNK" ], [ "105", "999", "99", "010,030", "VALUE:UNK" ], [ "105", "999", "99", "988", "ERROR:" ], [ "105", "999", "99", "999", "VALUE:UNK" ], [ "115", "000", "00", "000,020", "VALUE:IEA" ], [ "115", "000", "00", "010,030", "VALUE:IEB" ], [ "115", "000", "00", "988", "ERROR:" ], [ "115", "000", "00", "999", "VALUE:IE" ], [ "115", "000", "20", "000,020", "VALUE:IIIESA" ], [ "115", "000", "20", "010,030", "VALUE:IIIESB" ], [ "115", "000", "20", "988", "ERROR:" ], [ "115", "000", "20", "999", "VALUE:IIIES" ], [ "115", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "115", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "115", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "115", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "115", "000", "88,98", "000,020", "ERROR:" ], [ "115", "000", "88,98", "010,030", "ERROR:" ], [ "115", "000", "88,98", "988", "ERROR:" ], [ "115", "000", "88,98", "999", "ERROR:" ], [ "115", "000", "99", "000,020", "VALUE:UNK" ], [ "115", "000", "99", "010,030", "VALUE:UNK" ], [ "115", "000", "99", "988", "ERROR:" ], [ "115", "000", "99", "999", "VALUE:UNK" ], [ "115", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "115", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "115", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "115", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "115", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "115", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "115", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "115", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "115", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "115", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "115", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "115", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "115", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "115", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "115", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "115", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "115", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "115", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "115", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "115", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "115", "888,988", "00", "000,020", "ERROR:" ], [ "115", "888,988", "00", "010,030", "ERROR:" ], [ "115", "888,988", "00", "988", "ERROR:" ], [ "115", "888,988", "00", "999", "ERROR:" ], [ "115", "888,988", "20", "000,020", "ERROR:" ], [ "115", "888,988", "20", "010,030", "ERROR:" ], [ "115", "888,988", "20", "988", "ERROR:" ], [ "115", "888,988", "20", "999", "ERROR:" ], [ "115", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "115", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "115", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "115", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "115", "888,988", "88,98", "000,020", "ERROR:" ], [ "115", "888,988", "88,98", "010,030", "ERROR:" ], [ "115", "888,988", "88,98", "988", "ERROR:" ], [ "115", "888,988", "88,98", "999", "ERROR:" ], [ "115", "888,988", "99", "000,020", "ERROR:" ], [ "115", "888,988", "99", "010,030", "ERROR:" ], [ "115", "888,988", "99", "988", "ERROR:" ], [ "115", "888,988", "99", "999", "ERROR:" ], [ "115", "999", "00", "000,020", "VALUE:UNK" ], [ "115", "999", "00", "010,030", "VALUE:UNK" ], [ "115", "999", "00", "988", "ERROR:" ], [ "115", "999", "00", "999", "VALUE:UNK" ], [ "115", "999", "20", "000,020", "VALUE:IIIESA" ], [ "115", "999", "20", "010,030", "VALUE:IIIESB" ], [ "115", "999", "20", "988", "ERROR:" ], [ "115", "999", "20", "999", "VALUE:IIIES" ], [ "115", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "115", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "115", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "115", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "115", "999", "88,98", "000,020", "ERROR:" ], [ "115", "999", "88,98", "010,030", "ERROR:" ], [ "115", "999", "88,98", "988", "ERROR:" ], [ "115", "999", "88,98", "999", "ERROR:" ], [ "115", "999", "99", "000,020", "VALUE:UNK" ], [ "115", "999", "99", "010,030", "VALUE:UNK" ], [ "115", "999", "99", "988", "ERROR:" ], [ "115", "999", "99", "999", "VALUE:UNK" ], [ "125", "000", "00", "000,020", "VALUE:IEA" ], [ "125", "000", "00", "010,030", "VALUE:IEB" ], [ "125", "000", "00", "988", "ERROR:" ], [ "125", "000", "00", "999", "VALUE:IE" ], [ "125", "000", "20", "000,020", "VALUE:IIIESA" ], [ "125", "000", "20", "010,030", "VALUE:IIIESB" ], [ "125", "000", "20", "988", "ERROR:" ], [ "125", "000", "20", "999", "VALUE:IIIES" ], [ "125", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "125", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "125", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "125", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "125", "000", "88,98", "000,020", "ERROR:" ], [ "125", "000", "88,98", "010,030", "ERROR:" ], [ "125", "000", "88,98", "988", "ERROR:" ], [ "125", "000", "88,98", "999", "ERROR:" ], [ "125", "000", "99", "000,020", "VALUE:UNK" ], [ "125", "000", "99", "010,030", "VALUE:UNK" ], [ "125", "000", "99", "988", "ERROR:" ], [ "125", "000", "99", "999", "VALUE:UNK" ], [ "125", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "125", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "125", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "125", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "125", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "125", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "125", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "125", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "125", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "125", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "125", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "125", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "125", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "125", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "125", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "125", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "125", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "125", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "125", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "125", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "125", "888,988", "00", "000,020", "ERROR:" ], [ "125", "888,988", "00", "010,030", "ERROR:" ], [ "125", "888,988", "00", "988", "ERROR:" ], [ "125", "888,988", "00", "999", "ERROR:" ], [ "125", "888,988", "20", "000,020", "ERROR:" ], [ "125", "888,988", "20", "010,030", "ERROR:" ], [ "125", "888,988", "20", "988", "ERROR:" ], [ "125", "888,988", "20", "999", "ERROR:" ], [ "125", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "125", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "125", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "125", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "125", "888,988", "88,98", "000,020", "ERROR:" ], [ "125", "888,988", "88,98", "010,030", "ERROR:" ], [ "125", "888,988", "88,98", "988", "ERROR:" ], [ "125", "888,988", "88,98", "999", "ERROR:" ], [ "125", "888,988", "99", "000,020", "ERROR:" ], [ "125", "888,988", "99", "010,030", "ERROR:" ], [ "125", "888,988", "99", "988", "ERROR:" ], [ "125", "888,988", "99", "999", "ERROR:" ], [ "125", "999", "00", "000,020", "VALUE:UNK" ], [ "125", "999", "00", "010,030", "VALUE:UNK" ], [ "125", "999", "00", "988", "ERROR:" ], [ "125", "999", "00", "999", "VALUE:UNK" ], [ "125", "999", "20", "000,020", "VALUE:IIIESA" ], [ "125", "999", "20", "010,030", "VALUE:IIIESB" ], [ "125", "999", "20", "988", "ERROR:" ], [ "125", "999", "20", "999", "VALUE:IIIES" ], [ "125", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "125", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "125", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "125", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "125", "999", "88,98", "000,020", "ERROR:" ], [ "125", "999", "88,98", "010,030", "ERROR:" ], [ "125", "999", "88,98", "988", "ERROR:" ], [ "125", "999", "88,98", "999", "ERROR:" ], [ "125", "999", "99", "000,020", "VALUE:UNK" ], [ "125", "999", "99", "010,030", "VALUE:UNK" ], [ "125", "999", "99", "988", "ERROR:" ], [ "125", "999", "99", "999", "VALUE:UNK" ], [ "150", "000", "00", "000,020", "VALUE:IEA" ], [ "150", "000", "00", "010,030", "VALUE:IEB" ], [ "150", "000", "00", "988", "ERROR:" ], [ "150", "000", "00", "999", "VALUE:IE" ], [ "150", "000", "20", "000,020", "VALUE:IIIESA" ], [ "150", "000", "20", "010,030", "VALUE:IIIESB" ], [ "150", "000", "20", "988", "ERROR:" ], [ "150", "000", "20", "999", "VALUE:IIIES" ], [ "150", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "150", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "150", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "150", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "150", "000", "88,98", "000,020", "ERROR:" ], [ "150", "000", "88,98", "010,030", "ERROR:" ], [ "150", "000", "88,98", "988", "ERROR:" ], [ "150", "000", "88,98", "999", "ERROR:" ], [ "150", "000", "99", "000,020", "VALUE:UNK" ], [ "150", "000", "99", "010,030", "VALUE:UNK" ], [ "150", "000", "99", "988", "ERROR:" ], [ "150", "000", "99", "999", "VALUE:UNK" ], [ "150", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "150", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "150", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "150", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "150", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "150", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "150", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "150", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "150", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "150", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "150", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "150", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "150", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "150", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "150", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "150", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "150", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "150", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "150", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "150", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "150", "888,988", "00", "000,020", "ERROR:" ], [ "150", "888,988", "00", "010,030", "ERROR:" ], [ "150", "888,988", "00", "988", "ERROR:" ], [ "150", "888,988", "00", "999", "ERROR:" ], [ "150", "888,988", "20", "000,020", "ERROR:" ], [ "150", "888,988", "20", "010,030", "ERROR:" ], [ "150", "888,988", "20", "988", "ERROR:" ], [ "150", "888,988", "20", "999", "ERROR:" ], [ "150", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "150", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "150", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "150", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "150", "888,988", "88,98", "000,020", "ERROR:" ], [ "150", "888,988", "88,98", "010,030", "ERROR:" ], [ "150", "888,988", "88,98", "988", "ERROR:" ], [ "150", "888,988", "88,98", "999", "ERROR:" ], [ "150", "888,988", "99", "000,020", "ERROR:" ], [ "150", "888,988", "99", "010,030", "ERROR:" ], [ "150", "888,988", "99", "988", "ERROR:" ], [ "150", "888,988", "99", "999", "ERROR:" ], [ "150", "999", "00", "000,020", "VALUE:UNK" ], [ "150", "999", "00", "010,030", "VALUE:UNK" ], [ "150", "999", "00", "988", "ERROR:" ], [ "150", "999", "00", "999", "VALUE:UNK" ], [ "150", "999", "20", "000,020", "VALUE:IIIESA" ], [ "150", "999", "20", "010,030", "VALUE:IIIESB" ], [ "150", "999", "20", "988", "ERROR:" ], [ "150", "999", "20", "999", "VALUE:IIIES" ], [ "150", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "150", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "150", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "150", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "150", "999", "88,98", "000,020", "ERROR:" ], [ "150", "999", "88,98", "010,030", "ERROR:" ], [ "150", "999", "88,98", "988", "ERROR:" ], [ "150", "999", "88,98", "999", "ERROR:" ], [ "150", "999", "99", "000,020", "VALUE:UNK" ], [ "150", "999", "99", "010,030", "VALUE:UNK" ], [ "150", "999", "99", "988", "ERROR:" ], [ "150", "999", "99", "999", "VALUE:UNK" ], [ "305", "000", "00", "000,020", "VALUE:IEA" ], [ "305", "000", "00", "010,030", "VALUE:IEB" ], [ "305", "000", "00", "988", "ERROR:" ], [ "305", "000", "00", "999", "VALUE:IE" ], [ "305", "000", "20", "000,020", "VALUE:IIIESA" ], [ "305", "000", "20", "010,030", "VALUE:IIIESB" ], [ "305", "000", "20", "988", "ERROR:" ], [ "305", "000", "20", "999", "VALUE:IIIES" ], [ "305", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "305", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "305", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "305", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "305", "000", "88,98", "000,020", "ERROR:" ], [ "305", "000", "88,98", "010,030", "ERROR:" ], [ "305", "000", "88,98", "988", "ERROR:" ], [ "305", "000", "88,98", "999", "ERROR:" ], [ "305", "000", "99", "000,020", "VALUE:UNK" ], [ "305", "000", "99", "010,030", "VALUE:UNK" ], [ "305", "000", "99", "988", "ERROR:" ], [ "305", "000", "99", "999", "VALUE:UNK" ], [ "305", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "305", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "305", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "305", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "305", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "305", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "305", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "305", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "305", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "305", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "305", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "305", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "305", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "305", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "305", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "305", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "305", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "305", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "305", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "305", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "305", "888,988", "00", "000,020", "ERROR:" ], [ "305", "888,988", "00", "010,030", "ERROR:" ], [ "305", "888,988", "00", "988", "ERROR:" ], [ "305", "888,988", "00", "999", "ERROR:" ], [ "305", "888,988", "20", "000,020", "ERROR:" ], [ "305", "888,988", "20", "010,030", "ERROR:" ], [ "305", "888,988", "20", "988", "ERROR:" ], [ "305", "888,988", "20", "999", "ERROR:" ], [ "305", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "305", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "305", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "305", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "305", "888,988", "88,98", "000,020", "ERROR:" ], [ "305", "888,988", "88,98", "010,030", "ERROR:" ], [ "305", "888,988", "88,98", "988", "ERROR:" ], [ "305", "888,988", "88,98", "999", "ERROR:" ], [ "305", "888,988", "99", "000,020", "ERROR:" ], [ "305", "888,988", "99", "010,030", "ERROR:" ], [ "305", "888,988", "99", "988", "ERROR:" ], [ "305", "888,988", "99", "999", "ERROR:" ], [ "305", "999", "00", "000,020", "VALUE:UNK" ], [ "305", "999", "00", "010,030", "VALUE:UNK" ], [ "305", "999", "00", "988", "ERROR:" ], [ "305", "999", "00", "999", "VALUE:UNK" ], [ "305", "999", "20", "000,020", "VALUE:IIIESA" ], [ "305", "999", "20", "010,030", "VALUE:IIIESB" ], [ "305", "999", "20", "988", "ERROR:" ], [ "305", "999", "20", "999", "VALUE:IIIES" ], [ "305", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "305", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "305", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "305", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "305", "999", "88,98", "000,020", "ERROR:" ], [ "305", "999", "88,98", "010,030", "ERROR:" ], [ "305", "999", "88,98", "988", "ERROR:" ], [ "305", "999", "88,98", "999", "ERROR:" ], [ "305", "999", "99", "000,020", "VALUE:UNK" ], [ "305", "999", "99", "010,030", "VALUE:UNK" ], [ "305", "999", "99", "988", "ERROR:" ], [ "305", "999", "99", "999", "VALUE:UNK" ], [ "315", "000", "00", "000,020", "VALUE:IEA" ], [ "315", "000", "00", "010,030", "VALUE:IEB" ], [ "315", "000", "00", "988", "ERROR:" ], [ "315", "000", "00", "999", "VALUE:IE" ], [ "315", "000", "20", "000,020", "VALUE:IIIESA" ], [ "315", "000", "20", "010,030", "VALUE:IIIESB" ], [ "315", "000", "20", "988", "ERROR:" ], [ "315", "000", "20", "999", "VALUE:IIIES" ], [ "315", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "315", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "315", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "315", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "315", "000", "88,98", "000,020", "ERROR:" ], [ "315", "000", "88,98", "010,030", "ERROR:" ], [ "315", "000", "88,98", "988", "ERROR:" ], [ "315", "000", "88,98", "999", "ERROR:" ], [ "315", "000", "99", "000,020", "VALUE:UNK" ], [ "315", "000", "99", "010,030", "VALUE:UNK" ], [ "315", "000", "99", "988", "ERROR:" ], [ "315", "000", "99", "999", "VALUE:UNK" ], [ "315", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "315", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "315", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "315", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "315", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "315", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "315", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "315", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "315", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "315", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "315", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "315", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "315", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "315", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "315", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "315", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "315", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "315", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "315", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "315", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "315", "888,988", "00", "000,020", "ERROR:" ], [ "315", "888,988", "00", "010,030", "ERROR:" ], [ "315", "888,988", "00", "988", "ERROR:" ], [ "315", "888,988", "00", "999", "ERROR:" ], [ "315", "888,988", "20", "000,020", "ERROR:" ], [ "315", "888,988", "20", "010,030", "ERROR:" ], [ "315", "888,988", "20", "988", "ERROR:" ], [ "315", "888,988", "20", "999", "ERROR:" ], [ "315", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "315", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "315", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "315", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "315", "888,988", "88,98", "000,020", "ERROR:" ], [ "315", "888,988", "88,98", "010,030", "ERROR:" ], [ "315", "888,988", "88,98", "988", "ERROR:" ], [ "315", "888,988", "88,98", "999", "ERROR:" ], [ "315", "888,988", "99", "000,020", "ERROR:" ], [ "315", "888,988", "99", "010,030", "ERROR:" ], [ "315", "888,988", "99", "988", "ERROR:" ], [ "315", "888,988", "99", "999", "ERROR:" ], [ "315", "999", "00", "000,020", "VALUE:UNK" ], [ "315", "999", "00", "010,030", "VALUE:UNK" ], [ "315", "999", "00", "988", "ERROR:" ], [ "315", "999", "00", "999", "VALUE:UNK" ], [ "315", "999", "20", "000,020", "VALUE:IIIESA" ], [ "315", "999", "20", "010,030", "VALUE:IIIESB" ], [ "315", "999", "20", "988", "ERROR:" ], [ "315", "999", "20", "999", "VALUE:IIIES" ], [ "315", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "315", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "315", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "315", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "315", "999", "88,98", "000,020", "ERROR:" ], [ "315", "999", "88,98", "010,030", "ERROR:" ], [ "315", "999", "88,98", "988", "ERROR:" ], [ "315", "999", "88,98", "999", "ERROR:" ], [ "315", "999", "99", "000,020", "VALUE:UNK" ], [ "315", "999", "99", "010,030", "VALUE:UNK" ], [ "315", "999", "99", "988", "ERROR:" ], [ "315", "999", "99", "999", "VALUE:UNK" ], [ "325", "000", "00", "000,020", "VALUE:IEA" ], [ "325", "000", "00", "010,030", "VALUE:IEB" ], [ "325", "000", "00", "988", "ERROR:" ], [ "325", "000", "00", "999", "VALUE:IE" ], [ "325", "000", "20", "000,020", "VALUE:IIIESA" ], [ "325", "000", "20", "010,030", "VALUE:IIIESB" ], [ "325", "000", "20", "988", "ERROR:" ], [ "325", "000", "20", "999", "VALUE:IIIES" ], [ "325", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "325", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "325", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "325", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "325", "000", "88,98", "000,020", "ERROR:" ], [ "325", "000", "88,98", "010,030", "ERROR:" ], [ "325", "000", "88,98", "988", "ERROR:" ], [ "325", "000", "88,98", "999", "ERROR:" ], [ "325", "000", "99", "000,020", "VALUE:UNK" ], [ "325", "000", "99", "010,030", "VALUE:UNK" ], [ "325", "000", "99", "988", "ERROR:" ], [ "325", "000", "99", "999", "VALUE:UNK" ], [ "325", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "325", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "325", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "325", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "325", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "325", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "325", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "325", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "325", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "325", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "325", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "325", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "325", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "325", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "325", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "325", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "325", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "325", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "325", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "325", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "325", "888,988", "00", "000,020", "ERROR:" ], [ "325", "888,988", "00", "010,030", "ERROR:" ], [ "325", "888,988", "00", "988", "ERROR:" ], [ "325", "888,988", "00", "999", "ERROR:" ], [ "325", "888,988", "20", "000,020", "ERROR:" ], [ "325", "888,988", "20", "010,030", "ERROR:" ], [ "325", "888,988", "20", "988", "ERROR:" ], [ "325", "888,988", "20", "999", "ERROR:" ], [ "325", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "325", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "325", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "325", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "325", "888,988", "88,98", "000,020", "ERROR:" ], [ "325", "888,988", "88,98", "010,030", "ERROR:" ], [ "325", "888,988", "88,98", "988", "ERROR:" ], [ "325", "888,988", "88,98", "999", "ERROR:" ], [ "325", "888,988", "99", "000,020", "ERROR:" ], [ "325", "888,988", "99", "010,030", "ERROR:" ], [ "325", "888,988", "99", "988", "ERROR:" ], [ "325", "888,988", "99", "999", "ERROR:" ], [ "325", "999", "00", "000,020", "VALUE:UNK" ], [ "325", "999", "00", "010,030", "VALUE:UNK" ], [ "325", "999", "00", "988", "ERROR:" ], [ "325", "999", "00", "999", "VALUE:UNK" ], [ "325", "999", "20", "000,020", "VALUE:IIIESA" ], [ "325", "999", "20", "010,030", "VALUE:IIIESB" ], [ "325", "999", "20", "988", "ERROR:" ], [ "325", "999", "20", "999", "VALUE:IIIES" ], [ "325", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "325", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "325", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "325", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "325", "999", "88,98", "000,020", "ERROR:" ], [ "325", "999", "88,98", "010,030", "ERROR:" ], [ "325", "999", "88,98", "988", "ERROR:" ], [ "325", "999", "88,98", "999", "ERROR:" ], [ "325", "999", "99", "000,020", "VALUE:UNK" ], [ "325", "999", "99", "010,030", "VALUE:UNK" ], [ "325", "999", "99", "988", "ERROR:" ], [ "325", "999", "99", "999", "VALUE:UNK" ], [ "335", "000", "00", "000,020", "VALUE:IEA" ], [ "335", "000", "00", "010,030", "VALUE:IEB" ], [ "335", "000", "00", "988", "ERROR:" ], [ "335", "000", "00", "999", "VALUE:IE" ], [ "335", "000", "20", "000,020", "VALUE:IIIESA" ], [ "335", "000", "20", "010,030", "VALUE:IIIESB" ], [ "335", "000", "20", "988", "ERROR:" ], [ "335", "000", "20", "999", "VALUE:IIIES" ], [ "335", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "335", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "335", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "335", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "335", "000", "88,98", "000,020", "ERROR:" ], [ "335", "000", "88,98", "010,030", "ERROR:" ], [ "335", "000", "88,98", "988", "ERROR:" ], [ "335", "000", "88,98", "999", "ERROR:" ], [ "335", "000", "99", "000,020", "VALUE:UNK" ], [ "335", "000", "99", "010,030", "VALUE:UNK" ], [ "335", "000", "99", "988", "ERROR:" ], [ "335", "000", "99", "999", "VALUE:UNK" ], [ "335", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "335", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "335", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "335", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "335", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "335", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "335", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "335", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "335", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "335", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "335", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "335", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "335", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "335", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "335", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "335", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "335", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "335", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "335", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "335", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "335", "888,988", "00", "000,020", "ERROR:" ], [ "335", "888,988", "00", "010,030", "ERROR:" ], [ "335", "888,988", "00", "988", "ERROR:" ], [ "335", "888,988", "00", "999", "ERROR:" ], [ "335", "888,988", "20", "000,020", "ERROR:" ], [ "335", "888,988", "20", "010,030", "ERROR:" ], [ "335", "888,988", "20", "988", "ERROR:" ], [ "335", "888,988", "20", "999", "ERROR:" ], [ "335", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "335", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "335", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "335", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "335", "888,988", "88,98", "000,020", "ERROR:" ], [ "335", "888,988", "88,98", "010,030", "ERROR:" ], [ "335", "888,988", "88,98", "988", "ERROR:" ], [ "335", "888,988", "88,98", "999", "ERROR:" ], [ "335", "888,988", "99", "000,020", "ERROR:" ], [ "335", "888,988", "99", "010,030", "ERROR:" ], [ "335", "888,988", "99", "988", "ERROR:" ], [ "335", "888,988", "99", "999", "ERROR:" ], [ "335", "999", "00", "000,020", "VALUE:UNK" ], [ "335", "999", "00", "010,030", "VALUE:UNK" ], [ "335", "999", "00", "988", "ERROR:" ], [ "335", "999", "00", "999", "VALUE:UNK" ], [ "335", "999", "20", "000,020", "VALUE:IIIESA" ], [ "335", "999", "20", "010,030", "VALUE:IIIESB" ], [ "335", "999", "20", "988", "ERROR:" ], [ "335", "999", "20", "999", "VALUE:IIIES" ], [ "335", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "335", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "335", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "335", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "335", "999", "88,98", "000,020", "ERROR:" ], [ "335", "999", "88,98", "010,030", "ERROR:" ], [ "335", "999", "88,98", "988", "ERROR:" ], [ "335", "999", "88,98", "999", "ERROR:" ], [ "335", "999", "99", "000,020", "VALUE:UNK" ], [ "335", "999", "99", "010,030", "VALUE:UNK" ], [ "335", "999", "99", "988", "ERROR:" ], [ "335", "999", "99", "999", "VALUE:UNK" ], [ "350", "000", "00", "000,020", "VALUE:IEA" ], [ "350", "000", "00", "010,030", "VALUE:IEB" ], [ "350", "000", "00", "988", "ERROR:" ], [ "350", "000", "00", "999", "VALUE:IE" ], [ "350", "000", "20", "000,020", "VALUE:IIIESA" ], [ "350", "000", "20", "010,030", "VALUE:IIIESB" ], [ "350", "000", "20", "988", "ERROR:" ], [ "350", "000", "20", "999", "VALUE:IIIES" ], [ "350", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "350", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "350", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "350", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "350", "000", "88,98", "000,020", "ERROR:" ], [ "350", "000", "88,98", "010,030", "ERROR:" ], [ "350", "000", "88,98", "988", "ERROR:" ], [ "350", "000", "88,98", "999", "ERROR:" ], [ "350", "000", "99", "000,020", "VALUE:UNK" ], [ "350", "000", "99", "010,030", "VALUE:UNK" ], [ "350", "000", "99", "988", "ERROR:" ], [ "350", "000", "99", "999", "VALUE:UNK" ], [ "350", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "350", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "350", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "350", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "350", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "350", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "350", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "350", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "350", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "350", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "350", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "350", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "350", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "350", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "350", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "350", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "350", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "350", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "350", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "350", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "350", "888,988", "00", "000,020", "ERROR:" ], [ "350", "888,988", "00", "010,030", "ERROR:" ], [ "350", "888,988", "00", "988", "ERROR:" ], [ "350", "888,988", "00", "999", "ERROR:" ], [ "350", "888,988", "20", "000,020", "ERROR:" ], [ "350", "888,988", "20", "010,030", "ERROR:" ], [ "350", "888,988", "20", "988", "ERROR:" ], [ "350", "888,988", "20", "999", "ERROR:" ], [ "350", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "350", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "350", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "350", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "350", "888,988", "88,98", "000,020", "ERROR:" ], [ "350", "888,988", "88,98", "010,030", "ERROR:" ], [ "350", "888,988", "88,98", "988", "ERROR:" ], [ "350", "888,988", "88,98", "999", "ERROR:" ], [ "350", "888,988", "99", "000,020", "ERROR:" ], [ "350", "888,988", "99", "010,030", "ERROR:" ], [ "350", "888,988", "99", "988", "ERROR:" ], [ "350", "888,988", "99", "999", "ERROR:" ], [ "350", "999", "00", "000,020", "VALUE:UNK" ], [ "350", "999", "00", "010,030", "VALUE:UNK" ], [ "350", "999", "00", "988", "ERROR:" ], [ "350", "999", "00", "999", "VALUE:UNK" ], [ "350", "999", "20", "000,020", "VALUE:IIIESA" ], [ "350", "999", "20", "010,030", "VALUE:IIIESB" ], [ "350", "999", "20", "988", "ERROR:" ], [ "350", "999", "20", "999", "VALUE:IIIES" ], [ "350", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "350", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "350", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "350", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "350", "999", "88,98", "000,020", "ERROR:" ], [ "350", "999", "88,98", "010,030", "ERROR:" ], [ "350", "999", "88,98", "988", "ERROR:" ], [ "350", "999", "88,98", "999", "ERROR:" ], [ "350", "999", "99", "000,020", "VALUE:UNK" ], [ "350", "999", "99", "010,030", "VALUE:UNK" ], [ "350", "999", "99", "988", "ERROR:" ], [ "350", "999", "99", "999", "VALUE:UNK" ], [ "500", "000", "00", "000,020", "VALUE:IEA" ], [ "500", "000", "00", "010,030", "VALUE:IEB" ], [ "500", "000", "00", "988", "ERROR:" ], [ "500", "000", "00", "999", "VALUE:IE" ], [ "500", "000", "20", "000,020", "VALUE:IIIESA" ], [ "500", "000", "20", "010,030", "VALUE:IIIESB" ], [ "500", "000", "20", "988", "ERROR:" ], [ "500", "000", "20", "999", "VALUE:IIIES" ], [ "500", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "500", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "500", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "500", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "500", "000", "88,98", "000,020", "ERROR:" ], [ "500", "000", "88,98", "010,030", "ERROR:" ], [ "500", "000", "88,98", "988", "ERROR:" ], [ "500", "000", "88,98", "999", "ERROR:" ], [ "500", "000", "99", "000,020", "VALUE:UNK" ], [ "500", "000", "99", "010,030", "VALUE:UNK" ], [ "500", "000", "99", "988", "ERROR:" ], [ "500", "000", "99", "999", "VALUE:UNK" ], [ "500", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "500", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "500", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "500", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "500", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "500", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "500", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "500", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "500", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "500", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "500", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "500", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "500", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "500", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "500", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "500", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "500", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "500", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "500", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "500", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "500", "888,988", "00", "000,020", "ERROR:" ], [ "500", "888,988", "00", "010,030", "ERROR:" ], [ "500", "888,988", "00", "988", "ERROR:" ], [ "500", "888,988", "00", "999", "ERROR:" ], [ "500", "888,988", "20", "000,020", "ERROR:" ], [ "500", "888,988", "20", "010,030", "ERROR:" ], [ "500", "888,988", "20", "988", "ERROR:" ], [ "500", "888,988", "20", "999", "ERROR:" ], [ "500", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "500", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "500", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "500", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "500", "888,988", "88,98", "000,020", "ERROR:" ], [ "500", "888,988", "88,98", "010,030", "ERROR:" ], [ "500", "888,988", "88,98", "988", "ERROR:" ], [ "500", "888,988", "88,98", "999", "ERROR:" ], [ "500", "888,988", "99", "000,020", "ERROR:" ], [ "500", "888,988", "99", "010,030", "ERROR:" ], [ "500", "888,988", "99", "988", "ERROR:" ], [ "500", "888,988", "99", "999", "ERROR:" ], [ "500", "999", "00", "000,020", "VALUE:UNK" ], [ "500", "999", "00", "010,030", "VALUE:UNK" ], [ "500", "999", "00", "988", "ERROR:" ], [ "500", "999", "00", "999", "VALUE:UNK" ], [ "500", "999", "20", "000,020", "VALUE:IIIESA" ], [ "500", "999", "20", "010,030", "VALUE:IIIESB" ], [ "500", "999", "20", "988", "ERROR:" ], [ "500", "999", "20", "999", "VALUE:IIIES" ], [ "500", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "500", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "500", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "500", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "500", "999", "88,98", "000,020", "ERROR:" ], [ "500", "999", "88,98", "010,030", "ERROR:" ], [ "500", "999", "88,98", "988", "ERROR:" ], [ "500", "999", "88,98", "999", "ERROR:" ], [ "500", "999", "99", "000,020", "VALUE:UNK" ], [ "500", "999", "99", "010,030", "VALUE:UNK" ], [ "500", "999", "99", "988", "ERROR:" ], [ "500", "999", "99", "999", "VALUE:UNK" ], [ "700", "000", "00", "000,020", "VALUE:IVA" ], [ "700", "000", "00", "010,030", "VALUE:IVB" ], [ "700", "000", "00", "988", "ERROR:" ], [ "700", "000", "00", "999", "VALUE:IV" ], [ "700", "000", "20", "000,020", "VALUE:IVA" ], [ "700", "000", "20", "010,030", "VALUE:IVB" ], [ "700", "000", "20", "988", "ERROR:" ], [ "700", "000", "20", "999", "VALUE:IV" ], [ "700", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "700", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "700", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "700", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "700", "000", "88,98", "000,020", "ERROR:" ], [ "700", "000", "88,98", "010,030", "ERROR:" ], [ "700", "000", "88,98", "988", "ERROR:" ], [ "700", "000", "88,98", "999", "ERROR:" ], [ "700", "000", "99", "000,020", "VALUE:IVA" ], [ "700", "000", "99", "010,030", "VALUE:IVB" ], [ "700", "000", "99", "988", "ERROR:" ], [ "700", "000", "99", "999", "VALUE:IV" ], [ "700", "100,300,600,700,800", "00", "000,020", "VALUE:IVA" ], [ "700", "100,300,600,700,800", "00", "010,030", "VALUE:IVB" ], [ "700", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "700", "100,300,600,700,800", "00", "999", "VALUE:IV" ], [ "700", "100,300,600,700,800", "20", "000,020", "VALUE:IVA" ], [ "700", "100,300,600,700,800", "20", "010,030", "VALUE:IVB" ], [ "700", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "700", "100,300,600,700,800", "20", "999", "VALUE:IV" ], [ "700", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "700", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "700", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "700", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "700", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "700", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "700", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "700", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "700", "100,300,600,700,800", "99", "000,020", "VALUE:IVA" ], [ "700", "100,300,600,700,800", "99", "010,030", "VALUE:IVB" ], [ "700", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "700", "100,300,600,700,800", "99", "999", "VALUE:IV" ], [ "700", "888,988", "00", "000,020", "ERROR:" ], [ "700", "888,988", "00", "010,030", "ERROR:" ], [ "700", "888,988", "00", "988", "ERROR:" ], [ "700", "888,988", "00", "999", "ERROR:" ], [ "700", "888,988", "20", "000,020", "ERROR:" ], [ "700", "888,988", "20", "010,030", "ERROR:" ], [ "700", "888,988", "20", "988", "ERROR:" ], [ "700", "888,988", "20", "999", "ERROR:" ], [ "700", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "700", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "700", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "700", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "700", "888,988", "88,98", "000,020", "ERROR:" ], [ "700", "888,988", "88,98", "010,030", "ERROR:" ], [ "700", "888,988", "88,98", "988", "ERROR:" ], [ "700", "888,988", "88,98", "999", "ERROR:" ], [ "700", "888,988", "99", "000,020", "ERROR:" ], [ "700", "888,988", "99", "010,030", "ERROR:" ], [ "700", "888,988", "99", "988", "ERROR:" ], [ "700", "888,988", "99", "999", "ERROR:" ], [ "700", "999", "00", "000,020", "VALUE:IVA" ], [ "700", "999", "00", "010,030", "VALUE:IVB" ], [ "700", "999", "00", "988", "ERROR:" ], [ "700", "999", "00", "999", "VALUE:IV" ], [ "700", "999", "20", "000,020", "VALUE:IVA" ], [ "700", "999", "20", "010,030", "VALUE:IVB" ], [ "700", "999", "20", "988", "ERROR:" ], [ "700", "999", "20", "999", "VALUE:IV" ], [ "700", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "700", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "700", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "700", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "700", "999", "88,98", "000,020", "ERROR:" ], [ "700", "999", "88,98", "010,030", "ERROR:" ], [ "700", "999", "88,98", "988", "ERROR:" ], [ "700", "999", "88,98", "999", "ERROR:" ], [ "700", "999", "99", "000,020", "VALUE:IVA" ], [ "700", "999", "99", "010,030", "VALUE:IVB" ], [ "700", "999", "99", "988", "ERROR:" ], [ "700", "999", "99", "999", "VALUE:IV" ], [ "710", "000", "00", "000,020", "VALUE:IVA" ], [ "710", "000", "00", "010,030", "VALUE:IVB" ], [ "710", "000", "00", "988", "ERROR:" ], [ "710", "000", "00", "999", "VALUE:IV" ], [ "710", "000", "20", "000,020", "VALUE:IVA" ], [ "710", "000", "20", "010,030", "VALUE:IVB" ], [ "710", "000", "20", "988", "ERROR:" ], [ "710", "000", "20", "999", "VALUE:IV" ], [ "710", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "710", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "710", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "710", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "710", "000", "88,98", "000,020", "ERROR:" ], [ "710", "000", "88,98", "010,030", "ERROR:" ], [ "710", "000", "88,98", "988", "ERROR:" ], [ "710", "000", "88,98", "999", "ERROR:" ], [ "710", "000", "99", "000,020", "VALUE:IVA" ], [ "710", "000", "99", "010,030", "VALUE:IVB" ], [ "710", "000", "99", "988", "ERROR:" ], [ "710", "000", "99", "999", "VALUE:IV" ], [ "710", "100,300,600,700,800", "00", "000,020", "VALUE:IVA" ], [ "710", "100,300,600,700,800", "00", "010,030", "VALUE:IVB" ], [ "710", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "710", "100,300,600,700,800", "00", "999", "VALUE:IV" ], [ "710", "100,300,600,700,800", "20", "000,020", "VALUE:IVA" ], [ "710", "100,300,600,700,800", "20", "010,030", "VALUE:IVB" ], [ "710", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "710", "100,300,600,700,800", "20", "999", "VALUE:IV" ], [ "710", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "710", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "710", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "710", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "710", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "710", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "710", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "710", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "710", "100,300,600,700,800", "99", "000,020", "VALUE:IVA" ], [ "710", "100,300,600,700,800", "99", "010,030", "VALUE:IVB" ], [ "710", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "710", "100,300,600,700,800", "99", "999", "VALUE:IV" ], [ "710", "888,988", "00", "000,020", "ERROR:" ], [ "710", "888,988", "00", "010,030", "ERROR:" ], [ "710", "888,988", "00", "988", "ERROR:" ], [ "710", "888,988", "00", "999", "ERROR:" ], [ "710", "888,988", "20", "000,020", "ERROR:" ], [ "710", "888,988", "20", "010,030", "ERROR:" ], [ "710", "888,988", "20", "988", "ERROR:" ], [ "710", "888,988", "20", "999", "ERROR:" ], [ "710", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "710", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "710", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "710", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "710", "888,988", "88,98", "000,020", "ERROR:" ], [ "710", "888,988", "88,98", "010,030", "ERROR:" ], [ "710", "888,988", "88,98", "988", "ERROR:" ], [ "710", "888,988", "88,98", "999", "ERROR:" ], [ "710", "888,988", "99", "000,020", "ERROR:" ], [ "710", "888,988", "99", "010,030", "ERROR:" ], [ "710", "888,988", "99", "988", "ERROR:" ], [ "710", "888,988", "99", "999", "ERROR:" ], [ "710", "999", "00", "000,020", "VALUE:IVA" ], [ "710", "999", "00", "010,030", "VALUE:IVB" ], [ "710", "999", "00", "988", "ERROR:" ], [ "710", "999", "00", "999", "VALUE:IV" ], [ "710", "999", "20", "000,020", "VALUE:IVA" ], [ "710", "999", "20", "010,030", "VALUE:IVB" ], [ "710", "999", "20", "988", "ERROR:" ], [ "710", "999", "20", "999", "VALUE:IV" ], [ "710", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "710", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "710", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "710", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "710", "999", "88,98", "000,020", "ERROR:" ], [ "710", "999", "88,98", "010,030", "ERROR:" ], [ "710", "999", "88,98", "988", "ERROR:" ], [ "710", "999", "88,98", "999", "ERROR:" ], [ "710", "999", "99", "000,020", "VALUE:IVA" ], [ "710", "999", "99", "010,030", "VALUE:IVB" ], [ "710", "999", "99", "988", "ERROR:" ], [ "710", "999", "99", "999", "VALUE:IV" ], [ "720", "000", "00", "000,020", "VALUE:IVA" ], [ "720", "000", "00", "010,030", "VALUE:IVB" ], [ "720", "000", "00", "988", "ERROR:" ], [ "720", "000", "00", "999", "VALUE:IV" ], [ "720", "000", "20", "000,020", "VALUE:IVA" ], [ "720", "000", "20", "010,030", "VALUE:IVB" ], [ "720", "000", "20", "988", "ERROR:" ], [ "720", "000", "20", "999", "VALUE:IV" ], [ "720", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "720", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "720", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "720", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "720", "000", "88,98", "000,020", "ERROR:" ], [ "720", "000", "88,98", "010,030", "ERROR:" ], [ "720", "000", "88,98", "988", "ERROR:" ], [ "720", "000", "88,98", "999", "ERROR:" ], [ "720", "000", "99", "000,020", "VALUE:IVA" ], [ "720", "000", "99", "010,030", "VALUE:IVB" ], [ "720", "000", "99", "988", "ERROR:" ], [ "720", "000", "99", "999", "VALUE:IV" ], [ "720", "100,300,600,700,800", "00", "000,020", "VALUE:IVA" ], [ "720", "100,300,600,700,800", "00", "010,030", "VALUE:IVB" ], [ "720", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "720", "100,300,600,700,800", "00", "999", "VALUE:IV" ], [ "720", "100,300,600,700,800", "20", "000,020", "VALUE:IVA" ], [ "720", "100,300,600,700,800", "20", "010,030", "VALUE:IVB" ], [ "720", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "720", "100,300,600,700,800", "20", "999", "VALUE:IV" ], [ "720", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "720", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "720", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "720", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "720", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "720", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "720", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "720", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "720", "100,300,600,700,800", "99", "000,020", "VALUE:IVA" ], [ "720", "100,300,600,700,800", "99", "010,030", "VALUE:IVB" ], [ "720", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "720", "100,300,600,700,800", "99", "999", "VALUE:IV" ], [ "720", "888,988", "00", "000,020", "ERROR:" ], [ "720", "888,988", "00", "010,030", "ERROR:" ], [ "720", "888,988", "00", "988", "ERROR:" ], [ "720", "888,988", "00", "999", "ERROR:" ], [ "720", "888,988", "20", "000,020", "ERROR:" ], [ "720", "888,988", "20", "010,030", "ERROR:" ], [ "720", "888,988", "20", "988", "ERROR:" ], [ "720", "888,988", "20", "999", "ERROR:" ], [ "720", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "720", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "720", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "720", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "720", "888,988", "88,98", "000,020", "ERROR:" ], [ "720", "888,988", "88,98", "010,030", "ERROR:" ], [ "720", "888,988", "88,98", "988", "ERROR:" ], [ "720", "888,988", "88,98", "999", "ERROR:" ], [ "720", "888,988", "99", "000,020", "ERROR:" ], [ "720", "888,988", "99", "010,030", "ERROR:" ], [ "720", "888,988", "99", "988", "ERROR:" ], [ "720", "888,988", "99", "999", "ERROR:" ], [ "720", "999", "00", "000,020", "VALUE:IVA" ], [ "720", "999", "00", "010,030", "VALUE:IVB" ], [ "720", "999", "00", "988", "ERROR:" ], [ "720", "999", "00", "999", "VALUE:IV" ], [ "720", "999", "20", "000,020", "VALUE:IVA" ], [ "720", "999", "20", "010,030", "VALUE:IVB" ], [ "720", "999", "20", "988", "ERROR:" ], [ "720", "999", "20", "999", "VALUE:IV" ], [ "720", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "720", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "720", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "720", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "720", "999", "88,98", "000,020", "ERROR:" ], [ "720", "999", "88,98", "010,030", "ERROR:" ], [ "720", "999", "88,98", "988", "ERROR:" ], [ "720", "999", "88,98", "999", "ERROR:" ], [ "720", "999", "99", "000,020", "VALUE:IVA" ], [ "720", "999", "99", "010,030", "VALUE:IVB" ], [ "720", "999", "99", "988", "ERROR:" ], [ "720", "999", "99", "999", "VALUE:IV" ], [ "730", "000", "00", "000,020", "VALUE:IVA" ], [ "730", "000", "00", "010,030", "VALUE:IVB" ], [ "730", "000", "00", "988", "ERROR:" ], [ "730", "000", "00", "999", "VALUE:IV" ], [ "730", "000", "20", "000,020", "VALUE:IVA" ], [ "730", "000", "20", "010,030", "VALUE:IVB" ], [ "730", "000", "20", "988", "ERROR:" ], [ "730", "000", "20", "999", "VALUE:IV" ], [ "730", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "730", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "730", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "730", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "730", "000", "88,98", "000,020", "ERROR:" ], [ "730", "000", "88,98", "010,030", "ERROR:" ], [ "730", "000", "88,98", "988", "ERROR:" ], [ "730", "000", "88,98", "999", "ERROR:" ], [ "730", "000", "99", "000,020", "VALUE:IVA" ], [ "730", "000", "99", "010,030", "VALUE:IVB" ], [ "730", "000", "99", "988", "ERROR:" ], [ "730", "000", "99", "999", "VALUE:IV" ], [ "730", "100,300,600,700,800", "00", "000,020", "VALUE:IVA" ], [ "730", "100,300,600,700,800", "00", "010,030", "VALUE:IVB" ], [ "730", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "730", "100,300,600,700,800", "00", "999", "VALUE:IV" ], [ "730", "100,300,600,700,800", "20", "000,020", "VALUE:IVA" ], [ "730", "100,300,600,700,800", "20", "010,030", "VALUE:IVB" ], [ "730", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "730", "100,300,600,700,800", "20", "999", "VALUE:IV" ], [ "730", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "730", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "730", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "730", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "730", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "730", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "730", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "730", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "730", "100,300,600,700,800", "99", "000,020", "VALUE:IVA" ], [ "730", "100,300,600,700,800", "99", "010,030", "VALUE:IVB" ], [ "730", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "730", "100,300,600,700,800", "99", "999", "VALUE:IV" ], [ "730", "888,988", "00", "000,020", "ERROR:" ], [ "730", "888,988", "00", "010,030", "ERROR:" ], [ "730", "888,988", "00", "988", "ERROR:" ], [ "730", "888,988", "00", "999", "ERROR:" ], [ "730", "888,988", "20", "000,020", "ERROR:" ], [ "730", "888,988", "20", "010,030", "ERROR:" ], [ "730", "888,988", "20", "988", "ERROR:" ], [ "730", "888,988", "20", "999", "ERROR:" ], [ "730", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "730", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "730", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "730", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "730", "888,988", "88,98", "000,020", "ERROR:" ], [ "730", "888,988", "88,98", "010,030", "ERROR:" ], [ "730", "888,988", "88,98", "988", "ERROR:" ], [ "730", "888,988", "88,98", "999", "ERROR:" ], [ "730", "888,988", "99", "000,020", "ERROR:" ], [ "730", "888,988", "99", "010,030", "ERROR:" ], [ "730", "888,988", "99", "988", "ERROR:" ], [ "730", "888,988", "99", "999", "ERROR:" ], [ "730", "999", "00", "000,020", "VALUE:IVA" ], [ "730", "999", "00", "010,030", "VALUE:IVB" ], [ "730", "999", "00", "988", "ERROR:" ], [ "730", "999", "00", "999", "VALUE:IV" ], [ "730", "999", "20", "000,020", "VALUE:IVA" ], [ "730", "999", "20", "010,030", "VALUE:IVB" ], [ "730", "999", "20", "988", "ERROR:" ], [ "730", "999", "20", "999", "VALUE:IV" ], [ "730", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "730", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "730", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "730", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "730", "999", "88,98", "000,020", "ERROR:" ], [ "730", "999", "88,98", "010,030", "ERROR:" ], [ "730", "999", "88,98", "988", "ERROR:" ], [ "730", "999", "88,98", "999", "ERROR:" ], [ "730", "999", "99", "000,020", "VALUE:IVA" ], [ "730", "999", "99", "010,030", "VALUE:IVB" ], [ "730", "999", "99", "988", "ERROR:" ], [ "730", "999", "99", "999", "VALUE:IV" ], [ "750", "000", "00", "000,020", "VALUE:IVA" ], [ "750", "000", "00", "010,030", "VALUE:IVB" ], [ "750", "000", "00", "988", "ERROR:" ], [ "750", "000", "00", "999", "VALUE:IV" ], [ "750", "000", "20", "000,020", "VALUE:IVA" ], [ "750", "000", "20", "010,030", "VALUE:IVB" ], [ "750", "000", "20", "988", "ERROR:" ], [ "750", "000", "20", "999", "VALUE:IV" ], [ "750", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "750", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "750", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "750", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "750", "000", "88,98", "000,020", "ERROR:" ], [ "750", "000", "88,98", "010,030", "ERROR:" ], [ "750", "000", "88,98", "988", "ERROR:" ], [ "750", "000", "88,98", "999", "ERROR:" ], [ "750", "000", "99", "000,020", "VALUE:IVA" ], [ "750", "000", "99", "010,030", "VALUE:IVB" ], [ "750", "000", "99", "988", "ERROR:" ], [ "750", "000", "99", "999", "VALUE:IV" ], [ "750", "100,300,600,700,800", "00", "000,020", "VALUE:IVA" ], [ "750", "100,300,600,700,800", "00", "010,030", "VALUE:IVB" ], [ "750", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "750", "100,300,600,700,800", "00", "999", "VALUE:IV" ], [ "750", "100,300,600,700,800", "20", "000,020", "VALUE:IVA" ], [ "750", "100,300,600,700,800", "20", "010,030", "VALUE:IVB" ], [ "750", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "750", "100,300,600,700,800", "20", "999", "VALUE:IV" ], [ "750", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "750", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "750", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "750", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "750", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "750", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "750", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "750", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "750", "100,300,600,700,800", "99", "000,020", "VALUE:IVA" ], [ "750", "100,300,600,700,800", "99", "010,030", "VALUE:IVB" ], [ "750", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "750", "100,300,600,700,800", "99", "999", "VALUE:IV" ], [ "750", "888,988", "00", "000,020", "ERROR:" ], [ "750", "888,988", "00", "010,030", "ERROR:" ], [ "750", "888,988", "00", "988", "ERROR:" ], [ "750", "888,988", "00", "999", "ERROR:" ], [ "750", "888,988", "20", "000,020", "ERROR:" ], [ "750", "888,988", "20", "010,030", "ERROR:" ], [ "750", "888,988", "20", "988", "ERROR:" ], [ "750", "888,988", "20", "999", "ERROR:" ], [ "750", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "750", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "750", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "750", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "750", "888,988", "88,98", "000,020", "ERROR:" ], [ "750", "888,988", "88,98", "010,030", "ERROR:" ], [ "750", "888,988", "88,98", "988", "ERROR:" ], [ "750", "888,988", "88,98", "999", "ERROR:" ], [ "750", "888,988", "99", "000,020", "ERROR:" ], [ "750", "888,988", "99", "010,030", "ERROR:" ], [ "750", "888,988", "99", "988", "ERROR:" ], [ "750", "888,988", "99", "999", "ERROR:" ], [ "750", "999", "00", "000,020", "VALUE:IVA" ], [ "750", "999", "00", "010,030", "VALUE:IVB" ], [ "750", "999", "00", "988", "ERROR:" ], [ "750", "999", "00", "999", "VALUE:IV" ], [ "750", "999", "20", "000,020", "VALUE:IVA" ], [ "750", "999", "20", "010,030", "VALUE:IVB" ], [ "750", "999", "20", "988", "ERROR:" ], [ "750", "999", "20", "999", "VALUE:IV" ], [ "750", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "750", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "750", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "750", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "750", "999", "88,98", "000,020", "ERROR:" ], [ "750", "999", "88,98", "010,030", "ERROR:" ], [ "750", "999", "88,98", "988", "ERROR:" ], [ "750", "999", "88,98", "999", "ERROR:" ], [ "750", "999", "99", "000,020", "VALUE:IVA" ], [ "750", "999", "99", "010,030", "VALUE:IVB" ], [ "750", "999", "99", "988", "ERROR:" ], [ "750", "999", "99", "999", "VALUE:IV" ], [ "805", "000", "00", "000,020", "VALUE:IVA" ], [ "805", "000", "00", "010,030", "VALUE:IVB" ], [ "805", "000", "00", "988", "ERROR:" ], [ "805", "000", "00", "999", "VALUE:IV" ], [ "805", "000", "20", "000,020", "VALUE:IVA" ], [ "805", "000", "20", "010,030", "VALUE:IVB" ], [ "805", "000", "20", "988", "ERROR:" ], [ "805", "000", "20", "999", "VALUE:IV" ], [ "805", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "805", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "805", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "805", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "805", "000", "88,98", "000,020", "ERROR:" ], [ "805", "000", "88,98", "010,030", "ERROR:" ], [ "805", "000", "88,98", "988", "ERROR:" ], [ "805", "000", "88,98", "999", "ERROR:" ], [ "805", "000", "99", "000,020", "VALUE:IVA" ], [ "805", "000", "99", "010,030", "VALUE:IVB" ], [ "805", "000", "99", "988", "ERROR:" ], [ "805", "000", "99", "999", "VALUE:IV" ], [ "805", "100,300,600,700,800", "00", "000,020", "VALUE:IVA" ], [ "805", "100,300,600,700,800", "00", "010,030", "VALUE:IVB" ], [ "805", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "805", "100,300,600,700,800", "00", "999", "VALUE:IV" ], [ "805", "100,300,600,700,800", "20", "000,020", "VALUE:IVA" ], [ "805", "100,300,600,700,800", "20", "010,030", "VALUE:IVB" ], [ "805", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "805", "100,300,600,700,800", "20", "999", "VALUE:IV" ], [ "805", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "805", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "805", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "805", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "805", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "805", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "805", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "805", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "805", "100,300,600,700,800", "99", "000,020", "VALUE:IVA" ], [ "805", "100,300,600,700,800", "99", "010,030", "VALUE:IVB" ], [ "805", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "805", "100,300,600,700,800", "99", "999", "VALUE:IV" ], [ "805", "888,988", "00", "000,020", "ERROR:" ], [ "805", "888,988", "00", "010,030", "ERROR:" ], [ "805", "888,988", "00", "988", "ERROR:" ], [ "805", "888,988", "00", "999", "ERROR:" ], [ "805", "888,988", "20", "000,020", "ERROR:" ], [ "805", "888,988", "20", "010,030", "ERROR:" ], [ "805", "888,988", "20", "988", "ERROR:" ], [ "805", "888,988", "20", "999", "ERROR:" ], [ "805", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "805", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "805", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "805", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "805", "888,988", "88,98", "000,020", "ERROR:" ], [ "805", "888,988", "88,98", "010,030", "ERROR:" ], [ "805", "888,988", "88,98", "988", "ERROR:" ], [ "805", "888,988", "88,98", "999", "ERROR:" ], [ "805", "888,988", "99", "000,020", "ERROR:" ], [ "805", "888,988", "99", "010,030", "ERROR:" ], [ "805", "888,988", "99", "988", "ERROR:" ], [ "805", "888,988", "99", "999", "ERROR:" ], [ "805", "999", "00", "000,020", "VALUE:IVA" ], [ "805", "999", "00", "010,030", "VALUE:IVB" ], [ "805", "999", "00", "988", "ERROR:" ], [ "805", "999", "00", "999", "VALUE:IV" ], [ "805", "999", "20", "000,020", "VALUE:IVA" ], [ "805", "999", "20", "010,030", "VALUE:IVB" ], [ "805", "999", "20", "988", "ERROR:" ], [ "805", "999", "20", "999", "VALUE:IV" ], [ "805", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "805", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "805", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "805", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "805", "999", "88,98", "000,020", "ERROR:" ], [ "805", "999", "88,98", "010,030", "ERROR:" ], [ "805", "999", "88,98", "988", "ERROR:" ], [ "805", "999", "88,98", "999", "ERROR:" ], [ "805", "999", "99", "000,020", "VALUE:IVA" ], [ "805", "999", "99", "010,030", "VALUE:IVB" ], [ "805", "999", "99", "988", "ERROR:" ], [ "805", "999", "99", "999", "VALUE:IV" ], [ "950", "000", "00", "000,020", "ERROR:" ], [ "950", "000", "00", "010,030", "ERROR:" ], [ "950", "000", "00", "988", "ERROR:" ], [ "950", "000", "00", "999", "ERROR:" ], [ "950", "000", "20", "000,020", "VALUE:IIIESA" ], [ "950", "000", "20", "010,030", "VALUE:IIIESB" ], [ "950", "000", "20", "988", "ERROR:" ], [ "950", "000", "20", "999", "VALUE:IIIES" ], [ "950", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "950", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "950", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "950", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "950", "000", "88,98", "000,020", "ERROR:" ], [ "950", "000", "88,98", "010,030", "ERROR:" ], [ "950", "000", "88,98", "988", "ERROR:" ], [ "950", "000", "88,98", "999", "ERROR:" ], [ "950", "000", "99", "000,020", "VALUE:UNK" ], [ "950", "000", "99", "010,030", "VALUE:UNK" ], [ "950", "000", "99", "988", "ERROR:" ], [ "950", "000", "99", "999", "VALUE:UNK" ], [ "950", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "950", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "950", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "950", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "950", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "950", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "950", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "950", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "950", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "950", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "950", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "950", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "950", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "950", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "950", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "950", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "950", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "950", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "950", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "950", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "950", "888,988", "00", "000,020", "ERROR:" ], [ "950", "888,988", "00", "010,030", "ERROR:" ], [ "950", "888,988", "00", "988", "ERROR:" ], [ "950", "888,988", "00", "999", "ERROR:" ], [ "950", "888,988", "20", "000,020", "ERROR:" ], [ "950", "888,988", "20", "010,030", "ERROR:" ], [ "950", "888,988", "20", "988", "ERROR:" ], [ "950", "888,988", "20", "999", "ERROR:" ], [ "950", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "950", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "950", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "950", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "950", "888,988", "88,98", "000,020", "ERROR:" ], [ "950", "888,988", "88,98", "010,030", "ERROR:" ], [ "950", "888,988", "88,98", "988", "ERROR:" ], [ "950", "888,988", "88,98", "999", "ERROR:" ], [ "950", "888,988", "99", "000,020", "ERROR:" ], [ "950", "888,988", "99", "010,030", "ERROR:" ], [ "950", "888,988", "99", "988", "ERROR:" ], [ "950", "888,988", "99", "999", "ERROR:" ], [ "950", "999", "00", "000,020", "VALUE:UNK" ], [ "950", "999", "00", "010,030", "VALUE:UNK" ], [ "950", "999", "00", "988", "ERROR:" ], [ "950", "999", "00", "999", "VALUE:UNK" ], [ "950", "999", "20", "000,020", "VALUE:IIIESA" ], [ "950", "999", "20", "010,030", "VALUE:IIIESB" ], [ "950", "999", "20", "988", "ERROR:" ], [ "950", "999", "20", "999", "VALUE:IIIES" ], [ "950", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "950", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "950", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "950", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "950", "999", "88,98", "000,020", "ERROR:" ], [ "950", "999", "88,98", "010,030", "ERROR:" ], [ "950", "999", "88,98", "988", "ERROR:" ], [ "950", "999", "88,98", "999", "ERROR:" ], [ "950", "999", "99", "000,020", "VALUE:UNK" ], [ "950", "999", "99", "010,030", "VALUE:UNK" ], [ "950", "999", "99", "988", "ERROR:" ], [ "950", "999", "99", "999", "VALUE:UNK" ], [ "989", "000", "00", "000,020", "VALUE:UNK" ], [ "989", "000", "00", "010,030", "VALUE:UNK" ], [ "989", "000", "00", "988", "ERROR:" ], [ "989", "000", "00", "999", "VALUE:UNK" ], [ "989", "000", "20", "000,020", "VALUE:IIIESA" ], [ "989", "000", "20", "010,030", "VALUE:IIIESB" ], [ "989", "000", "20", "988", "ERROR:" ], [ "989", "000", "20", "999", "VALUE:IIIES" ], [ "989", "000", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "989", "000", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "989", "000", "30,35,40,50,60", "988", "ERROR:" ], [ "989", "000", "30,35,40,50,60", "999", "VALUE:IV" ], [ "989", "000", "88,98", "000,020", "ERROR:" ], [ "989", "000", "88,98", "010,030", "ERROR:" ], [ "989", "000", "88,98", "988", "ERROR:" ], [ "989", "000", "88,98", "999", "ERROR:" ], [ "989", "000", "99", "000,020", "VALUE:UNK" ], [ "989", "000", "99", "010,030", "VALUE:UNK" ], [ "989", "000", "99", "988", "ERROR:" ], [ "989", "000", "99", "999", "VALUE:UNK" ], [ "989", "100,300,600,700,800", "00", "000,020", "VALUE:IIEA" ], [ "989", "100,300,600,700,800", "00", "010,030", "VALUE:IIEB" ], [ "989", "100,300,600,700,800", "00", "988", "ERROR:" ], [ "989", "100,300,600,700,800", "00", "999", "VALUE:IIE" ], [ "989", "100,300,600,700,800", "20", "000,020", "VALUE:IIIESA" ], [ "989", "100,300,600,700,800", "20", "010,030", "VALUE:IIIESB" ], [ "989", "100,300,600,700,800", "20", "988", "ERROR:" ], [ "989", "100,300,600,700,800", "20", "999", "VALUE:IIIES" ], [ "989", "100,300,600,700,800", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "989", "100,300,600,700,800", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "989", "100,300,600,700,800", "30,35,40,50,60", "988", "ERROR:" ], [ "989", "100,300,600,700,800", "30,35,40,50,60", "999", "VALUE:IV" ], [ "989", "100,300,600,700,800", "88,98", "000,020", "ERROR:" ], [ "989", "100,300,600,700,800", "88,98", "010,030", "ERROR:" ], [ "989", "100,300,600,700,800", "88,98", "988", "ERROR:" ], [ "989", "100,300,600,700,800", "88,98", "999", "ERROR:" ], [ "989", "100,300,600,700,800", "99", "000,020", "VALUE:UNK" ], [ "989", "100,300,600,700,800", "99", "010,030", "VALUE:UNK" ], [ "989", "100,300,600,700,800", "99", "988", "ERROR:" ], [ "989", "100,300,600,700,800", "99", "999", "VALUE:UNK" ], [ "989", "888,988", "00", "000,020", "ERROR:" ], [ "989", "888,988", "00", "010,030", "ERROR:" ], [ "989", "888,988", "00", "988", "ERROR:" ], [ "989", "888,988", "00", "999", "ERROR:" ], [ "989", "888,988", "20", "000,020", "ERROR:" ], [ "989", "888,988", "20", "010,030", "ERROR:" ], [ "989", "888,988", "20", "988", "ERROR:" ], [ "989", "888,988", "20", "999", "ERROR:" ], [ "989", "888,988", "30,35,40,50,60", "000,020", "ERROR:" ], [ "989", "888,988", "30,35,40,50,60", "010,030", "ERROR:" ], [ "989", "888,988", "30,35,40,50,60", "988", "ERROR:" ], [ "989", "888,988", "30,35,40,50,60", "999", "ERROR:" ], [ "989", "888,988", "88,98", "000,020", "ERROR:" ], [ "989", "888,988", "88,98", "010,030", "ERROR:" ], [ "989", "888,988", "88,98", "988", "ERROR:" ], [ "989", "888,988", "88,98", "999", "ERROR:" ], [ "989", "888,988", "99", "000,020", "ERROR:" ], [ "989", "888,988", "99", "010,030", "ERROR:" ], [ "989", "888,988", "99", "988", "ERROR:" ], [ "989", "888,988", "99", "999", "ERROR:" ], [ "989", "999", "00", "000,020", "VALUE:UNK" ], [ "989", "999", "00", "010,030", "VALUE:UNK" ], [ "989", "999", "00", "988", "ERROR:" ], [ "989", "999", "00", "999", "VALUE:UNK" ], [ "989", "999", "20", "000,020", "VALUE:IIIESA" ], [ "989", "999", "20", "010,030", "VALUE:IIIESB" ], [ "989", "999", "20", "988", "ERROR:" ], [ "989", "999", "20", "999", "VALUE:IIIES" ], [ "989", "999", "30,35,40,50,60", "000,020", "VALUE:IVA" ], [ "989", "999", "30,35,40,50,60", "010,030", "VALUE:IVB" ], [ "989", "999", "30,35,40,50,60", "988", "ERROR:" ], [ "989", "999", "30,35,40,50,60", "999", "VALUE:IV" ], [ "989", "999", "88,98", "000,020", "ERROR:" ], [ "989", "999", "88,98", "010,030", "ERROR:" ], [ "989", "999", "88,98", "988", "ERROR:" ], [ "989", "999", "88,98", "999", "ERROR:" ], [ "989", "999", "99", "000,020", "VALUE:UNK" ], [ "989", "999", "99", "010,030", "VALUE:UNK" ], [ "989", "999", "99", "988", "ERROR:" ], [ "989", "999", "99", "999", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qea.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qea.json
deleted file mode 100644
index f38e8a611..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qea.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qea",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.721Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:I" ], [ "T1c", "N1", "M0", "VALUE:IV" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:II" ], [ "T2c", "N1", "M0", "VALUE:IV" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:III" ], [ "T3a", "N1", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:III" ], [ "T3NOS", "N1", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2c", "N0", "M1", "VALUE:IV" ], [ "T2c", "N1", "M1", "VALUE:IV" ], [ "T2c", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:IV" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:IV" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1c", "N0", "MX", "VALUE:UNK" ], [ "T1c", "N1", "MX", "VALUE:IV" ], [ "T1c", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:IV" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:IV" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:IV" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2c", "N0", "MX", "VALUE:UNK" ], [ "T2c", "N1", "MX", "VALUE:IV" ], [ "T2c", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:IV" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:IV" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:IV" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qna.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qna.json
deleted file mode 100644
index cc86bb546..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qna.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qna",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.783Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "NA", "NA", "NA", "VALUE:NA" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qnb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qnb.json
deleted file mode 100644
index 1c5347cab..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qnb.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "ajcc6_stage_qnb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage for sites with no stage groupings",
- "notes" : "In the table below, \"ANY\" designates any valid (allowable) value.",
- "last_modified" : "2015-05-27T16:18:50.828Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "", "*", "*", "VALUE:" ], [ "*", "", "*", "VALUE:" ], [ "*", "*", "", "VALUE:" ], [ "*", "*", "*", "VALUE:NA" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpb.json
deleted file mode 100644
index b3cb808b1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpb.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.874Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2a", "M0", "VALUE:IVA" ], [ "T0", "N2b", "M0", "VALUE:IVA" ], [ "T0", "N2c", "M0", "VALUE:IVA" ], [ "T0", "N2NOS", "M0", "VALUE:IVA" ], [ "T0", "N3", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2a", "M0", "VALUE:IVA" ], [ "T1", "N2b", "M0", "VALUE:IVA" ], [ "T1", "N2c", "M0", "VALUE:IVA" ], [ "T1", "N2NOS", "M0", "VALUE:IVA" ], [ "T1", "N3", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IVA" ], [ "T2", "N2b", "M0", "VALUE:IVA" ], [ "T2", "N2c", "M0", "VALUE:IVA" ], [ "T2", "N2NOS", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "N2a", "M0", "VALUE:IVA" ], [ "T4a", "N2b", "M0", "VALUE:IVA" ], [ "T4a", "N2c", "M0", "VALUE:IVA" ], [ "T4a", "N2NOS", "M0", "VALUE:IVA" ], [ "T4a", "N3", "M0", "VALUE:IVB" ], [ "T4a", "NX", "M0", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "N2a", "M0", "VALUE:IVB" ], [ "T4b", "N2b", "M0", "VALUE:IVB" ], [ "T4b", "N2c", "M0", "VALUE:IVB" ], [ "T4b", "N2NOS", "M0", "VALUE:IVB" ], [ "T4b", "N3", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N3", "M0", "VALUE:IVB" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:UNK" ], [ "TX", "N2b", "M0", "VALUE:UNK" ], [ "TX", "N2c", "M0", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "VALUE:UNK" ], [ "TX", "N3", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2a", "M1", "VALUE:IVC" ], [ "T0", "N2b", "M1", "VALUE:IVC" ], [ "T0", "N2c", "M1", "VALUE:IVC" ], [ "T0", "N2NOS", "M1", "VALUE:IVC" ], [ "T0", "N3", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N1", "M1", "VALUE:IVC" ], [ "T1", "N2a", "M1", "VALUE:IVC" ], [ "T1", "N2b", "M1", "VALUE:IVC" ], [ "T1", "N2c", "M1", "VALUE:IVC" ], [ "T1", "N2NOS", "M1", "VALUE:IVC" ], [ "T1", "N3", "M1", "VALUE:IVC" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2a", "M1", "VALUE:IVC" ], [ "T2", "N2b", "M1", "VALUE:IVC" ], [ "T2", "N2c", "M1", "VALUE:IVC" ], [ "T2", "N2NOS", "M1", "VALUE:IVC" ], [ "T2", "N3", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2a", "M1", "VALUE:IVC" ], [ "T3", "N2b", "M1", "VALUE:IVC" ], [ "T3", "N2c", "M1", "VALUE:IVC" ], [ "T3", "N2NOS", "M1", "VALUE:IVC" ], [ "T3", "N3", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "N2a", "M1", "VALUE:IVC" ], [ "T4a", "N2b", "M1", "VALUE:IVC" ], [ "T4a", "N2c", "M1", "VALUE:IVC" ], [ "T4a", "N2NOS", "M1", "VALUE:IVC" ], [ "T4a", "N3", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "N2a", "M1", "VALUE:IVC" ], [ "T4b", "N2b", "M1", "VALUE:IVC" ], [ "T4b", "N2c", "M1", "VALUE:IVC" ], [ "T4b", "N2NOS", "M1", "VALUE:IVC" ], [ "T4b", "N3", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "N2a", "M1", "VALUE:IVC" ], [ "T4NOS", "N2b", "M1", "VALUE:IVC" ], [ "T4NOS", "N2c", "M1", "VALUE:IVC" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N3", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2a", "M1", "VALUE:IVC" ], [ "TX", "N2b", "M1", "VALUE:IVC" ], [ "TX", "N2c", "M1", "VALUE:IVC" ], [ "TX", "N2NOS", "M1", "VALUE:IVC" ], [ "TX", "N3", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2a", "MX", "VALUE:UNK" ], [ "T0", "N2b", "MX", "VALUE:UNK" ], [ "T0", "N2c", "MX", "VALUE:UNK" ], [ "T0", "N2NOS", "MX", "VALUE:UNK" ], [ "T0", "N3", "MX", "VALUE:IVNOS" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2a", "MX", "ERROR:" ], [ "Tis", "N2b", "MX", "ERROR:" ], [ "Tis", "N2c", "MX", "ERROR:" ], [ "Tis", "N2NOS", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2a", "MX", "VALUE:UNK" ], [ "T1", "N2b", "MX", "VALUE:UNK" ], [ "T1", "N2c", "MX", "VALUE:UNK" ], [ "T1", "N2NOS", "MX", "VALUE:UNK" ], [ "T1", "N3", "MX", "VALUE:IVNOS" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2a", "MX", "VALUE:UNK" ], [ "T2", "N2b", "MX", "VALUE:UNK" ], [ "T2", "N2c", "MX", "VALUE:UNK" ], [ "T2", "N2NOS", "MX", "VALUE:UNK" ], [ "T2", "N3", "MX", "VALUE:IVNOS" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2a", "MX", "VALUE:UNK" ], [ "T3", "N2b", "MX", "VALUE:UNK" ], [ "T3", "N2c", "MX", "VALUE:UNK" ], [ "T3", "N2NOS", "MX", "VALUE:UNK" ], [ "T3", "N3", "MX", "VALUE:IVNOS" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "MX", "VALUE:IVNOS" ], [ "T4a", "N1", "MX", "VALUE:IVNOS" ], [ "T4a", "N2a", "MX", "VALUE:IVNOS" ], [ "T4a", "N2b", "MX", "VALUE:IVNOS" ], [ "T4a", "N2c", "MX", "VALUE:IVNOS" ], [ "T4a", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4a", "N3", "MX", "VALUE:IVNOS" ], [ "T4a", "NX", "MX", "VALUE:IVNOS" ], [ "T4b", "N0", "MX", "VALUE:IVNOS" ], [ "T4b", "N1", "MX", "VALUE:IVNOS" ], [ "T4b", "N2a", "MX", "VALUE:IVNOS" ], [ "T4b", "N2b", "MX", "VALUE:IVNOS" ], [ "T4b", "N2c", "MX", "VALUE:IVNOS" ], [ "T4b", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4b", "N3", "MX", "VALUE:IVNOS" ], [ "T4b", "NX", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N3", "MX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2a", "MX", "VALUE:UNK" ], [ "TX", "N2b", "MX", "VALUE:UNK" ], [ "TX", "N2c", "MX", "VALUE:UNK" ], [ "TX", "N2NOS", "MX", "VALUE:UNK" ], [ "TX", "N3", "MX", "VALUE:IVNOS" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpf.json
deleted file mode 100644
index f31ac1ac1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpf.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.949Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIA" ], [ "T0", "N2", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIA" ], [ "T1", "N2", "M0", "VALUE:IIIC" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:I" ], [ "T2", "N1", "M0", "VALUE:IIIA" ], [ "T2", "N2", "M0", "VALUE:IIIC" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIIB" ], [ "T3", "N2", "M0", "VALUE:IIIC" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIB" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "N2", "M0", "VALUE:IIIC" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "N2", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpi.json
deleted file mode 100644
index b79d03970..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpi.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc6_stage_qpi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:50.999Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "4", "ERROR:" ], [ "T0", "N0", "M0", "5-9", "ERROR:" ], [ "T0", "N1", "M0", "1", "VALUE:IV" ], [ "T0", "N1", "M0", "2", "VALUE:IV" ], [ "T0", "N1", "M0", "3", "VALUE:IV" ], [ "T0", "N1", "M0", "4", "VALUE:IV" ], [ "T0", "N1", "M0", "5-9", "VALUE:IV" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "4", "VALUE:UNK" ], [ "T0", "NX", "M0", "5-9", "VALUE:UNK" ], [ "T1b", "N0", "M0", "1", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "VALUE:IA" ], [ "T1b", "N0", "M0", "3", "VALUE:IIA" ], [ "T1b", "N0", "M0", "4", "VALUE:IIA" ], [ "T1b", "N0", "M0", "5-9", "VALUE:UNK" ], [ "T1b", "N1", "M0", "1", "VALUE:IV" ], [ "T1b", "N1", "M0", "2", "VALUE:IV" ], [ "T1b", "N1", "M0", "3", "VALUE:IV" ], [ "T1b", "N1", "M0", "4", "VALUE:IV" ], [ "T1b", "N1", "M0", "5-9", "VALUE:IV" ], [ "T1b", "NX", "M0", "1", "VALUE:IA" ], [ "T1b", "NX", "M0", "2", "VALUE:IA" ], [ "T1b", "NX", "M0", "3", "VALUE:IIA" ], [ "T1b", "NX", "M0", "4", "VALUE:IIA" ], [ "T1b", "NX", "M0", "5-9", "VALUE:UNK" ], [ "T2b", "N0", "M0", "1", "VALUE:IB" ], [ "T2b", "N0", "M0", "2", "VALUE:IB" ], [ "T2b", "N0", "M0", "3", "VALUE:III" ], [ "T2b", "N0", "M0", "4", "VALUE:III" ], [ "T2b", "N0", "M0", "5-9", "VALUE:UNK" ], [ "T2b", "N1", "M0", "1", "VALUE:IV" ], [ "T2b", "N1", "M0", "2", "VALUE:IV" ], [ "T2b", "N1", "M0", "3", "VALUE:IV" ], [ "T2b", "N1", "M0", "4", "VALUE:IV" ], [ "T2b", "N1", "M0", "5-9", "VALUE:IV" ], [ "T2b", "NX", "M0", "1", "VALUE:IB" ], [ "T2b", "NX", "M0", "2", "VALUE:IB" ], [ "T2b", "NX", "M0", "3", "VALUE:III" ], [ "T2b", "NX", "M0", "4", "VALUE:III" ], [ "T2b", "NX", "M0", "5-9", "VALUE:UNK" ], [ "TX", "N0", "M0", "1", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "VALUE:UNK" ], [ "TX", "N0", "M0", "5-9", "VALUE:UNK" ], [ "TX", "N1", "M0", "1", "VALUE:IV" ], [ "TX", "N1", "M0", "2", "VALUE:IV" ], [ "TX", "N1", "M0", "3", "VALUE:IV" ], [ "TX", "N1", "M0", "4", "VALUE:IV" ], [ "TX", "N1", "M0", "5-9", "VALUE:IV" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "VALUE:UNK" ], [ "TX", "NX", "M0", "5-9", "VALUE:UNK" ], [ "T0", "N0", "M1", "1", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "VALUE:IV" ], [ "T0", "N0", "M1", "4", "VALUE:IV" ], [ "T0", "N0", "M1", "5-9", "VALUE:IV" ], [ "T0", "N1", "M1", "1", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "VALUE:IV" ], [ "T0", "N1", "M1", "4", "VALUE:IV" ], [ "T0", "N1", "M1", "5-9", "VALUE:IV" ], [ "T0", "NX", "M1", "1", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "VALUE:IV" ], [ "T0", "NX", "M1", "4", "VALUE:IV" ], [ "T0", "NX", "M1", "5-9", "VALUE:IV" ], [ "T1b", "N0", "M1", "1", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "VALUE:IV" ], [ "T1b", "N0", "M1", "4", "VALUE:IV" ], [ "T1b", "N0", "M1", "5-9", "VALUE:IV" ], [ "T1b", "N1", "M1", "1", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "VALUE:IV" ], [ "T1b", "N1", "M1", "4", "VALUE:IV" ], [ "T1b", "N1", "M1", "5-9", "VALUE:IV" ], [ "T1b", "NX", "M1", "1", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "VALUE:IV" ], [ "T1b", "NX", "M1", "4", "VALUE:IV" ], [ "T1b", "NX", "M1", "5-9", "VALUE:IV" ], [ "T2b", "N0", "M1", "1", "VALUE:IV" ], [ "T2b", "N0", "M1", "2", "VALUE:IV" ], [ "T2b", "N0", "M1", "3", "VALUE:IV" ], [ "T2b", "N0", "M1", "4", "VALUE:IV" ], [ "T2b", "N0", "M1", "5-9", "VALUE:IV" ], [ "T2b", "N1", "M1", "1", "VALUE:IV" ], [ "T2b", "N1", "M1", "2", "VALUE:IV" ], [ "T2b", "N1", "M1", "3", "VALUE:IV" ], [ "T2b", "N1", "M1", "4", "VALUE:IV" ], [ "T2b", "N1", "M1", "5-9", "VALUE:IV" ], [ "T2b", "NX", "M1", "1", "VALUE:IV" ], [ "T2b", "NX", "M1", "2", "VALUE:IV" ], [ "T2b", "NX", "M1", "3", "VALUE:IV" ], [ "T2b", "NX", "M1", "4", "VALUE:IV" ], [ "T2b", "NX", "M1", "5-9", "VALUE:IV" ], [ "TX", "N0", "M1", "1", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "VALUE:IV" ], [ "TX", "N0", "M1", "4", "VALUE:IV" ], [ "TX", "N0", "M1", "5-9", "VALUE:IV" ], [ "TX", "N1", "M1", "1", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "VALUE:IV" ], [ "TX", "N1", "M1", "4", "VALUE:IV" ], [ "TX", "N1", "M1", "5-9", "VALUE:IV" ], [ "TX", "NX", "M1", "1", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "VALUE:IV" ], [ "TX", "NX", "M1", "4", "VALUE:IV" ], [ "TX", "NX", "M1", "5-9", "VALUE:IV" ], [ "T0", "N0", "MX", "1", "VALUE:UNK" ], [ "T0", "N0", "MX", "2", "VALUE:UNK" ], [ "T0", "N0", "MX", "3", "VALUE:UNK" ], [ "T0", "N0", "MX", "4", "VALUE:UNK" ], [ "T0", "N0", "MX", "5-9", "VALUE:UNK" ], [ "T0", "N1", "MX", "1", "VALUE:IV" ], [ "T0", "N1", "MX", "2", "VALUE:IV" ], [ "T0", "N1", "MX", "3", "VALUE:IV" ], [ "T0", "N1", "MX", "4", "VALUE:IV" ], [ "T0", "N1", "MX", "5-9", "VALUE:IV" ], [ "T0", "NX", "MX", "1", "VALUE:UNK" ], [ "T0", "NX", "MX", "2", "VALUE:UNK" ], [ "T0", "NX", "MX", "3", "VALUE:UNK" ], [ "T0", "NX", "MX", "4", "VALUE:UNK" ], [ "T0", "NX", "MX", "5-9", "VALUE:UNK" ], [ "T1b", "N0", "MX", "1", "VALUE:UNK" ], [ "T1b", "N0", "MX", "2", "VALUE:UNK" ], [ "T1b", "N0", "MX", "3", "VALUE:UNK" ], [ "T1b", "N0", "MX", "4", "VALUE:UNK" ], [ "T1b", "N0", "MX", "5-9", "VALUE:UNK" ], [ "T1b", "N1", "MX", "1", "VALUE:IV" ], [ "T1b", "N1", "MX", "2", "VALUE:IV" ], [ "T1b", "N1", "MX", "3", "VALUE:IV" ], [ "T1b", "N1", "MX", "4", "VALUE:IV" ], [ "T1b", "N1", "MX", "5-9", "VALUE:IV" ], [ "T1b", "NX", "MX", "1", "VALUE:UNK" ], [ "T1b", "NX", "MX", "2", "VALUE:UNK" ], [ "T1b", "NX", "MX", "3", "VALUE:UNK" ], [ "T1b", "NX", "MX", "4", "VALUE:UNK" ], [ "T1b", "NX", "MX", "5-9", "VALUE:UNK" ], [ "T2b", "N0", "MX", "1", "VALUE:UNK" ], [ "T2b", "N0", "MX", "2", "VALUE:UNK" ], [ "T2b", "N0", "MX", "3", "VALUE:UNK" ], [ "T2b", "N0", "MX", "4", "VALUE:UNK" ], [ "T2b", "N0", "MX", "5-9", "VALUE:UNK" ], [ "T2b", "N1", "MX", "1", "VALUE:IV" ], [ "T2b", "N1", "MX", "2", "VALUE:IV" ], [ "T2b", "N1", "MX", "3", "VALUE:IV" ], [ "T2b", "N1", "MX", "4", "VALUE:IV" ], [ "T2b", "N1", "MX", "5-9", "VALUE:IV" ], [ "T2b", "NX", "MX", "1", "VALUE:UNK" ], [ "T2b", "NX", "MX", "2", "VALUE:UNK" ], [ "T2b", "NX", "MX", "3", "VALUE:UNK" ], [ "T2b", "NX", "MX", "4", "VALUE:UNK" ], [ "T2b", "NX", "MX", "5-9", "VALUE:UNK" ], [ "TX", "N0", "MX", "1", "VALUE:UNK" ], [ "TX", "N0", "MX", "2", "VALUE:UNK" ], [ "TX", "N0", "MX", "3", "VALUE:UNK" ], [ "TX", "N0", "MX", "4", "VALUE:UNK" ], [ "TX", "N0", "MX", "5-9", "VALUE:UNK" ], [ "TX", "N1", "MX", "1", "VALUE:IV" ], [ "TX", "N1", "MX", "2", "VALUE:IV" ], [ "TX", "N1", "MX", "3", "VALUE:IV" ], [ "TX", "N1", "MX", "4", "VALUE:IV" ], [ "TX", "N1", "MX", "5-9", "VALUE:IV" ], [ "TX", "NX", "MX", "1", "VALUE:UNK" ], [ "TX", "NX", "MX", "2", "VALUE:UNK" ], [ "TX", "NX", "MX", "3", "VALUE:UNK" ], [ "TX", "NX", "MX", "4", "VALUE:UNK" ], [ "TX", "NX", "MX", "5-9", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpj.json
deleted file mode 100644
index f00bc7c45..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpj.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.060Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "VALUE:NA" ], [ "T0", "N1", "M0", "VALUE:NA" ], [ "T0", "NX", "M0", "VALUE:NA" ], [ "T1", "N0", "M0", "VALUE:NA" ], [ "T1", "N1", "M0", "VALUE:NA" ], [ "T1", "NX", "M0", "VALUE:NA" ], [ "T2", "N0", "M0", "VALUE:NA" ], [ "T2", "N1", "M0", "VALUE:NA" ], [ "T2", "NX", "M0", "VALUE:NA" ], [ "T3a", "N0", "M0", "VALUE:NA" ], [ "T3a", "N1", "M0", "VALUE:NA" ], [ "T3a", "NX", "M0", "VALUE:NA" ], [ "T3b", "N0", "M0", "VALUE:NA" ], [ "T3b", "N1", "M0", "VALUE:NA" ], [ "T3b", "NX", "M0", "VALUE:NA" ], [ "T3NOS", "N0", "M0", "VALUE:NA" ], [ "T3NOS", "N1", "M0", "VALUE:NA" ], [ "T3NOS", "NX", "M0", "VALUE:NA" ], [ "T4", "N0", "M0", "VALUE:NA" ], [ "T4", "N1", "M0", "VALUE:NA" ], [ "T4", "NX", "M0", "VALUE:NA" ], [ "TX", "N0", "M0", "VALUE:NA" ], [ "TX", "N1", "M0", "VALUE:NA" ], [ "TX", "NX", "M0", "VALUE:NA" ], [ "T0", "N0", "M1", "VALUE:NA" ], [ "T0", "N1", "M1", "VALUE:NA" ], [ "T0", "NX", "M1", "VALUE:NA" ], [ "T1", "N0", "M1", "VALUE:NA" ], [ "T1", "N1", "M1", "VALUE:NA" ], [ "T1", "NX", "M1", "VALUE:NA" ], [ "T2", "N0", "M1", "VALUE:NA" ], [ "T2", "N1", "M1", "VALUE:NA" ], [ "T2", "NX", "M1", "VALUE:NA" ], [ "T3a", "N0", "M1", "VALUE:NA" ], [ "T3a", "N1", "M1", "VALUE:NA" ], [ "T3a", "NX", "M1", "VALUE:NA" ], [ "T3b", "N0", "M1", "VALUE:NA" ], [ "T3b", "N1", "M1", "VALUE:NA" ], [ "T3b", "NX", "M1", "VALUE:NA" ], [ "T3NOS", "N0", "M1", "VALUE:NA" ], [ "T3NOS", "N1", "M1", "VALUE:NA" ], [ "T3NOS", "NX", "M1", "VALUE:NA" ], [ "T4", "N0", "M1", "VALUE:NA" ], [ "T4", "N1", "M1", "VALUE:NA" ], [ "T4", "NX", "M1", "VALUE:NA" ], [ "TX", "N0", "M1", "VALUE:NA" ], [ "TX", "N1", "M1", "VALUE:NA" ], [ "TX", "NX", "M1", "VALUE:NA" ], [ "T0", "N0", "MX", "VALUE:NA" ], [ "T0", "N1", "MX", "VALUE:NA" ], [ "T0", "NX", "MX", "VALUE:NA" ], [ "T1", "N0", "MX", "VALUE:NA" ], [ "T1", "N1", "MX", "VALUE:NA" ], [ "T1", "NX", "MX", "VALUE:NA" ], [ "T2", "N0", "MX", "VALUE:NA" ], [ "T2", "N1", "MX", "VALUE:NA" ], [ "T2", "NX", "MX", "VALUE:NA" ], [ "T3a", "N0", "MX", "VALUE:NA" ], [ "T3a", "N1", "MX", "VALUE:NA" ], [ "T3a", "NX", "MX", "VALUE:NA" ], [ "T3b", "N0", "MX", "VALUE:NA" ], [ "T3b", "N1", "MX", "VALUE:NA" ], [ "T3b", "NX", "MX", "VALUE:NA" ], [ "T3NOS", "N0", "MX", "VALUE:NA" ], [ "T3NOS", "N1", "MX", "VALUE:NA" ], [ "T3NOS", "NX", "MX", "VALUE:NA" ], [ "T4", "N0", "MX", "VALUE:NA" ], [ "T4", "N1", "MX", "VALUE:NA" ], [ "T4", "NX", "MX", "VALUE:NA" ], [ "TX", "N0", "MX", "VALUE:NA" ], [ "TX", "N1", "MX", "VALUE:NA" ], [ "TX", "NX", "MX", "VALUE:NA" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpk.json
deleted file mode 100644
index 83420add4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpk.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.108Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2a", "M0", "VALUE:IVNOS" ], [ "T0", "N2b", "M0", "VALUE:IVNOS" ], [ "T0", "N2c", "M0", "VALUE:IVNOS" ], [ "T0", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T0", "N3", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2a", "M0", "VALUE:IVA" ], [ "T1", "N2b", "M0", "VALUE:IVA" ], [ "T1", "N2c", "M0", "VALUE:IVA" ], [ "T1", "N2NOS", "M0", "VALUE:IVA" ], [ "T1", "N3", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IVA" ], [ "T2", "N2b", "M0", "VALUE:IVA" ], [ "T2", "N2c", "M0", "VALUE:IVA" ], [ "T2", "N2NOS", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "N2a", "M0", "VALUE:IVA" ], [ "T4a", "N2b", "M0", "VALUE:IVA" ], [ "T4a", "N2c", "M0", "VALUE:IVA" ], [ "T4a", "N2NOS", "M0", "VALUE:IVA" ], [ "T4a", "N3", "M0", "VALUE:IVB" ], [ "T4a", "NX", "M0", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "N2a", "M0", "VALUE:IVB" ], [ "T4b", "N2b", "M0", "VALUE:IVB" ], [ "T4b", "N2c", "M0", "VALUE:IVB" ], [ "T4b", "N2NOS", "M0", "VALUE:IVB" ], [ "T4b", "N3", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N3", "M0", "VALUE:IVB" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IVNOS" ], [ "TX", "N2b", "M0", "VALUE:IVNOS" ], [ "TX", "N2c", "M0", "VALUE:IVNOS" ], [ "TX", "N2NOS", "M0", "VALUE:IVNOS" ], [ "TX", "N3", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2a", "M1", "VALUE:IVC" ], [ "T0", "N2b", "M1", "VALUE:IVC" ], [ "T0", "N2c", "M1", "VALUE:IVC" ], [ "T0", "N2NOS", "M1", "VALUE:IVC" ], [ "T0", "N3", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N1", "M1", "VALUE:IVC" ], [ "T1", "N2a", "M1", "VALUE:IVC" ], [ "T1", "N2b", "M1", "VALUE:IVC" ], [ "T1", "N2c", "M1", "VALUE:IVC" ], [ "T1", "N2NOS", "M1", "VALUE:IVC" ], [ "T1", "N3", "M1", "VALUE:IVC" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2a", "M1", "VALUE:IVC" ], [ "T2", "N2b", "M1", "VALUE:IVC" ], [ "T2", "N2c", "M1", "VALUE:IVC" ], [ "T2", "N2NOS", "M1", "VALUE:IVC" ], [ "T2", "N3", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2a", "M1", "VALUE:IVC" ], [ "T3", "N2b", "M1", "VALUE:IVC" ], [ "T3", "N2c", "M1", "VALUE:IVC" ], [ "T3", "N2NOS", "M1", "VALUE:IVC" ], [ "T3", "N3", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "N2a", "M1", "VALUE:IVC" ], [ "T4a", "N2b", "M1", "VALUE:IVC" ], [ "T4a", "N2c", "M1", "VALUE:IVC" ], [ "T4a", "N2NOS", "M1", "VALUE:IVC" ], [ "T4a", "N3", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "N2a", "M1", "VALUE:IVC" ], [ "T4b", "N2b", "M1", "VALUE:IVC" ], [ "T4b", "N2c", "M1", "VALUE:IVC" ], [ "T4b", "N2NOS", "M1", "VALUE:IVC" ], [ "T4b", "N3", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "N2a", "M1", "VALUE:IVC" ], [ "T4NOS", "N2b", "M1", "VALUE:IVC" ], [ "T4NOS", "N2c", "M1", "VALUE:IVC" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N3", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2a", "M1", "VALUE:IVC" ], [ "TX", "N2b", "M1", "VALUE:IVC" ], [ "TX", "N2c", "M1", "VALUE:IVC" ], [ "TX", "N2NOS", "M1", "VALUE:IVC" ], [ "TX", "N3", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2a", "MX", "VALUE:IVNOS" ], [ "T0", "N2b", "MX", "VALUE:IVNOS" ], [ "T0", "N2c", "MX", "VALUE:IVNOS" ], [ "T0", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T0", "N3", "MX", "VALUE:IVNOS" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2a", "MX", "ERROR:" ], [ "Tis", "N2b", "MX", "ERROR:" ], [ "Tis", "N2c", "MX", "ERROR:" ], [ "Tis", "N2NOS", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2a", "MX", "VALUE:IVNOS" ], [ "T1", "N2b", "MX", "VALUE:IVNOS" ], [ "T1", "N2c", "MX", "VALUE:IVNOS" ], [ "T1", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T1", "N3", "MX", "VALUE:IVNOS" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2a", "MX", "VALUE:IVNOS" ], [ "T2", "N2b", "MX", "VALUE:IVNOS" ], [ "T2", "N2c", "MX", "VALUE:IVNOS" ], [ "T2", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T2", "N3", "MX", "VALUE:IVNOS" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2a", "MX", "VALUE:IVNOS" ], [ "T3", "N2b", "MX", "VALUE:IVNOS" ], [ "T3", "N2c", "MX", "VALUE:IVNOS" ], [ "T3", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T3", "N3", "MX", "VALUE:IVNOS" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "MX", "VALUE:IVNOS" ], [ "T4a", "N1", "MX", "VALUE:IVNOS" ], [ "T4a", "N2a", "MX", "VALUE:IVNOS" ], [ "T4a", "N2b", "MX", "VALUE:IVNOS" ], [ "T4a", "N2c", "MX", "VALUE:IVNOS" ], [ "T4a", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4a", "N3", "MX", "VALUE:IVNOS" ], [ "T4a", "NX", "MX", "VALUE:IVNOS" ], [ "T4b", "N0", "MX", "VALUE:IVNOS" ], [ "T4b", "N1", "MX", "VALUE:IVNOS" ], [ "T4b", "N2a", "MX", "VALUE:IVNOS" ], [ "T4b", "N2b", "MX", "VALUE:IVNOS" ], [ "T4b", "N2c", "MX", "VALUE:IVNOS" ], [ "T4b", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4b", "N3", "MX", "VALUE:IVNOS" ], [ "T4b", "NX", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N3", "MX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2a", "MX", "VALUE:IVNOS" ], [ "TX", "N2b", "MX", "VALUE:IVNOS" ], [ "TX", "N2c", "MX", "VALUE:IVNOS" ], [ "TX", "N2NOS", "MX", "VALUE:IVNOS" ], [ "TX", "N3", "MX", "VALUE:IVNOS" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpl.json
deleted file mode 100644
index 68cde8fc0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpl.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.177Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IB" ], [ "T0", "N2", "M0", "VALUE:II" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IB" ], [ "T1", "N2", "M0", "VALUE:II" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IB" ], [ "T2a", "N1", "M0", "VALUE:II" ], [ "T2a", "N2", "M0", "VALUE:IIIA" ], [ "T2a", "N3", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IB" ], [ "T2b", "N1", "M0", "VALUE:II" ], [ "T2b", "N2", "M0", "VALUE:IIIA" ], [ "T2b", "N3", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IB" ], [ "T2NOS", "N1", "M0", "VALUE:II" ], [ "T2NOS", "N2", "M0", "VALUE:IIIA" ], [ "T2NOS", "N3", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIB" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "N2", "M1", "VALUE:IV" ], [ "T2a", "N3", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "N2", "M1", "VALUE:IV" ], [ "T2b", "N3", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "N2", "M1", "VALUE:IV" ], [ "T2NOS", "N3", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "N3", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:UNK" ], [ "T1", "N3", "MX", "VALUE:IV" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:UNK" ], [ "T2a", "N2", "MX", "VALUE:UNK" ], [ "T2a", "N3", "MX", "VALUE:IV" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:UNK" ], [ "T2b", "N2", "MX", "VALUE:UNK" ], [ "T2b", "N3", "MX", "VALUE:IV" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:UNK" ], [ "T2NOS", "N2", "MX", "VALUE:UNK" ], [ "T2NOS", "N3", "MX", "VALUE:IV" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "N3", "MX", "VALUE:IV" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "N2", "MX", "VALUE:IV" ], [ "T4", "N3", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "N3", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpn.json
deleted file mode 100644
index b61484990..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpn.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.277Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:I" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:II" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpo.json
deleted file mode 100644
index a1292707a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpo.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc6_stage_qpo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.336Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "SSF2",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000,020", "VALUE:IA" ], [ "100", "010,030", "VALUE:IB" ], [ "100", "999", "VALUE:I" ], [ "100-999", "988", "ERROR:" ], [ "110", "000,020", "VALUE:IEA" ], [ "110", "010,030", "VALUE:IEB" ], [ "110", "999", "VALUE:IE" ], [ "120", "000,020", "VALUE:ISA" ], [ "120", "010,030", "VALUE:ISB" ], [ "120", "999", "VALUE:IS" ], [ "200", "000,020", "VALUE:IIA" ], [ "200", "010,030", "VALUE:IIB" ], [ "200", "999", "VALUE:II" ], [ "210", "000,020", "VALUE:IIEA" ], [ "210", "010,030", "VALUE:IIEB" ], [ "210", "999", "VALUE:IIE" ], [ "220", "000,020", "VALUE:IISA" ], [ "220", "010,030", "VALUE:IISB" ], [ "220", "999", "VALUE:IIS" ], [ "230", "000,020", "VALUE:IIESA" ], [ "230", "010,030", "VALUE:IIESB" ], [ "230", "999", "VALUE:IIES" ], [ "300", "000,020", "VALUE:IIIA" ], [ "300", "010,030", "VALUE:IIIB" ], [ "300", "999", "VALUE:III" ], [ "310", "000,020", "VALUE:IIIEA" ], [ "310", "010,030", "VALUE:IIIEB" ], [ "310", "999", "VALUE:IIIE" ], [ "320", "000,020", "VALUE:IIISA" ], [ "320", "010,030", "VALUE:IIISB" ], [ "320", "999", "VALUE:IIIS" ], [ "330", "000,020", "VALUE:IIIESA" ], [ "330", "010,030", "VALUE:IIIESB" ], [ "330", "999", "VALUE:IIIES" ], [ "800", "000,020", "VALUE:IVA" ], [ "800", "010,030", "VALUE:IVB" ], [ "800", "999", "VALUE:IV" ], [ "999", "000,020", "VALUE:UNK" ], [ "999", "010,030", "VALUE:UNK" ], [ "999", "999", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpp.json
deleted file mode 100644
index 0245d8f09..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpp.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.395Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpq.json
deleted file mode 100644
index e5bcd5ba2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpq.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc6_stage_qpq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.443Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "s",
- "name" : "S",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR", "ERROR:" ], [ "T0", "N0", "M0", "S0", "ERROR:" ], [ "T0", "N0", "M0", "S1", "VALUE:IS" ], [ "T0", "N0", "M0", "S2", "VALUE:IS" ], [ "T0", "N0", "M0", "S3", "VALUE:IS" ], [ "T0", "N0", "M0", "SX", "ERROR:" ], [ "T0", "N1", "M0", "ERROR", "ERROR:" ], [ "T0", "N1", "M0", "S0", "VALUE:IIA" ], [ "T0", "N1", "M0", "S1", "VALUE:IIA" ], [ "T0", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T0", "N2", "M0", "ERROR", "ERROR:" ], [ "T0", "N2", "M0", "S0", "VALUE:IIB" ], [ "T0", "N2", "M0", "S1", "VALUE:IIB" ], [ "T0", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T0", "N3", "M0", "ERROR", "ERROR:" ], [ "T0", "N3", "M0", "S0", "VALUE:IIC" ], [ "T0", "N3", "M0", "S1", "VALUE:IIC" ], [ "T0", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T0", "NX", "M0", "ERROR", "ERROR:" ], [ "T0", "NX", "M0", "S0", "VALUE:UNK" ], [ "T0", "NX", "M0", "S1", "VALUE:UNK" ], [ "T0", "NX", "M0", "S2", "VALUE:UNK" ], [ "T0", "NX", "M0", "S3", "VALUE:UNK" ], [ "T0", "NX", "M0", "SX", "VALUE:UNK" ], [ "Tis", "N0", "M0", "ERROR", "ERROR:" ], [ "Tis", "N0", "M0", "S0", "VALUE:0" ], [ "Tis", "N0", "M0", "S1", "ERROR:" ], [ "Tis", "N0", "M0", "S2", "ERROR:" ], [ "Tis", "N0", "M0", "S3", "ERROR:" ], [ "Tis", "N0", "M0", "SX", "VALUE:UNK" ], [ "Tis", "N1", "M0", "ERROR", "ERROR:" ], [ "Tis", "N1", "M0", "S0", "ERROR:" ], [ "Tis", "N1", "M0", "S1", "ERROR:" ], [ "Tis", "N1", "M0", "S2", "ERROR:" ], [ "Tis", "N1", "M0", "S3", "ERROR:" ], [ "Tis", "N1", "M0", "SX", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR", "ERROR:" ], [ "Tis", "N2", "M0", "S0", "ERROR:" ], [ "Tis", "N2", "M0", "S1", "ERROR:" ], [ "Tis", "N2", "M0", "S2", "ERROR:" ], [ "Tis", "N2", "M0", "S3", "ERROR:" ], [ "Tis", "N2", "M0", "SX", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR", "ERROR:" ], [ "Tis", "N3", "M0", "S0", "ERROR:" ], [ "Tis", "N3", "M0", "S1", "ERROR:" ], [ "Tis", "N3", "M0", "S2", "ERROR:" ], [ "Tis", "N3", "M0", "S3", "ERROR:" ], [ "Tis", "N3", "M0", "SX", "ERROR:" ], [ "Tis", "NX", "M0", "ERROR", "ERROR:" ], [ "Tis", "NX", "M0", "S0", "ERROR:" ], [ "Tis", "NX", "M0", "S1", "ERROR:" ], [ "Tis", "NX", "M0", "S2", "ERROR:" ], [ "Tis", "NX", "M0", "S3", "ERROR:" ], [ "Tis", "NX", "M0", "SX", "VALUE:UNK" ], [ "T1", "N0", "M0", "ERROR", "ERROR:" ], [ "T1", "N0", "M0", "S0", "VALUE:IA" ], [ "T1", "N0", "M0", "S1", "VALUE:IS" ], [ "T1", "N0", "M0", "S2", "VALUE:IS" ], [ "T1", "N0", "M0", "S3", "VALUE:IS" ], [ "T1", "N0", "M0", "SX", "VALUE:INOS" ], [ "T1", "N1", "M0", "ERROR", "ERROR:" ], [ "T1", "N1", "M0", "S0", "VALUE:IIA" ], [ "T1", "N1", "M0", "S1", "VALUE:IIA" ], [ "T1", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T1", "N2", "M0", "ERROR", "ERROR:" ], [ "T1", "N2", "M0", "S0", "VALUE:IIB" ], [ "T1", "N2", "M0", "S1", "VALUE:IIB" ], [ "T1", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T1", "N3", "M0", "ERROR", "ERROR:" ], [ "T1", "N3", "M0", "S0", "VALUE:IIC" ], [ "T1", "N3", "M0", "S1", "VALUE:IIC" ], [ "T1", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T1", "NX", "M0", "ERROR", "ERROR:" ], [ "T1", "NX", "M0", "S0", "VALUE:UNK" ], [ "T1", "NX", "M0", "S1", "VALUE:UNK" ], [ "T1", "NX", "M0", "S2", "VALUE:UNK" ], [ "T1", "NX", "M0", "S3", "VALUE:UNK" ], [ "T1", "NX", "M0", "SX", "VALUE:UNK" ], [ "T2", "N0", "M0", "ERROR", "ERROR:" ], [ "T2", "N0", "M0", "S0", "VALUE:IB" ], [ "T2", "N0", "M0", "S1", "VALUE:IS" ], [ "T2", "N0", "M0", "S2", "VALUE:IS" ], [ "T2", "N0", "M0", "S3", "VALUE:IS" ], [ "T2", "N0", "M0", "SX", "VALUE:INOS" ], [ "T2", "N1", "M0", "ERROR", "ERROR:" ], [ "T2", "N1", "M0", "S0", "VALUE:IIA" ], [ "T2", "N1", "M0", "S1", "VALUE:IIA" ], [ "T2", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T2", "N2", "M0", "ERROR", "ERROR:" ], [ "T2", "N2", "M0", "S0", "VALUE:IIB" ], [ "T2", "N2", "M0", "S1", "VALUE:IIB" ], [ "T2", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T2", "N3", "M0", "ERROR", "ERROR:" ], [ "T2", "N3", "M0", "S0", "VALUE:IIC" ], [ "T2", "N3", "M0", "S1", "VALUE:IIC" ], [ "T2", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T2", "NX", "M0", "ERROR", "ERROR:" ], [ "T2", "NX", "M0", "S0", "VALUE:UNK" ], [ "T2", "NX", "M0", "S1", "VALUE:UNK" ], [ "T2", "NX", "M0", "S2", "VALUE:UNK" ], [ "T2", "NX", "M0", "S3", "VALUE:UNK" ], [ "T2", "NX", "M0", "SX", "VALUE:UNK" ], [ "T3", "N0", "M0", "ERROR", "ERROR:" ], [ "T3", "N0", "M0", "S0", "VALUE:IB" ], [ "T3", "N0", "M0", "S1", "VALUE:IS" ], [ "T3", "N0", "M0", "S2", "VALUE:IS" ], [ "T3", "N0", "M0", "S3", "VALUE:IS" ], [ "T3", "N0", "M0", "SX", "VALUE:INOS" ], [ "T3", "N1", "M0", "ERROR", "ERROR:" ], [ "T3", "N1", "M0", "S0", "VALUE:IIA" ], [ "T3", "N1", "M0", "S1", "VALUE:IIA" ], [ "T3", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T3", "N2", "M0", "ERROR", "ERROR:" ], [ "T3", "N2", "M0", "S0", "VALUE:IIB" ], [ "T3", "N2", "M0", "S1", "VALUE:IIB" ], [ "T3", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T3", "N3", "M0", "ERROR", "ERROR:" ], [ "T3", "N3", "M0", "S0", "VALUE:IIC" ], [ "T3", "N3", "M0", "S1", "VALUE:IIC" ], [ "T3", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T3", "NX", "M0", "ERROR", "ERROR:" ], [ "T3", "NX", "M0", "S0", "VALUE:UNK" ], [ "T3", "NX", "M0", "S1", "VALUE:UNK" ], [ "T3", "NX", "M0", "S2", "VALUE:UNK" ], [ "T3", "NX", "M0", "S3", "VALUE:UNK" ], [ "T3", "NX", "M0", "SX", "VALUE:UNK" ], [ "T4", "N0", "M0", "ERROR", "ERROR:" ], [ "T4", "N0", "M0", "S0", "VALUE:IB" ], [ "T4", "N0", "M0", "S1", "VALUE:IS" ], [ "T4", "N0", "M0", "S2", "VALUE:IS" ], [ "T4", "N0", "M0", "S3", "VALUE:IS" ], [ "T4", "N0", "M0", "SX", "VALUE:INOS" ], [ "T4", "N1", "M0", "ERROR", "ERROR:" ], [ "T4", "N1", "M0", "S0", "VALUE:IIA" ], [ "T4", "N1", "M0", "S1", "VALUE:IIA" ], [ "T4", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T4", "N2", "M0", "ERROR", "ERROR:" ], [ "T4", "N2", "M0", "S0", "VALUE:IIB" ], [ "T4", "N2", "M0", "S1", "VALUE:IIB" ], [ "T4", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T4", "N3", "M0", "ERROR", "ERROR:" ], [ "T4", "N3", "M0", "S0", "VALUE:IIC" ], [ "T4", "N3", "M0", "S1", "VALUE:IIC" ], [ "T4", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T4", "NX", "M0", "ERROR", "ERROR:" ], [ "T4", "NX", "M0", "S0", "VALUE:UNK" ], [ "T4", "NX", "M0", "S1", "VALUE:UNK" ], [ "T4", "NX", "M0", "S2", "VALUE:UNK" ], [ "T4", "NX", "M0", "S3", "VALUE:UNK" ], [ "T4", "NX", "M0", "SX", "VALUE:UNK" ], [ "TX", "N0", "M0", "ERROR", "ERROR:" ], [ "TX", "N0", "M0", "S0", "VALUE:UNK" ], [ "TX", "N0", "M0", "S1", "VALUE:IS" ], [ "TX", "N0", "M0", "S2", "VALUE:IS" ], [ "TX", "N0", "M0", "S3", "VALUE:IS" ], [ "TX", "N0", "M0", "SX", "VALUE:UNK" ], [ "TX", "N1", "M0", "ERROR", "ERROR:" ], [ "TX", "N1", "M0", "S0", "VALUE:IIA" ], [ "TX", "N1", "M0", "S1", "VALUE:IIA" ], [ "TX", "N1", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N1", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M0", "SX", "VALUE:IINOS" ], [ "TX", "N2", "M0", "ERROR", "ERROR:" ], [ "TX", "N2", "M0", "S0", "VALUE:IIB" ], [ "TX", "N2", "M0", "S1", "VALUE:IIB" ], [ "TX", "N2", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N2", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M0", "SX", "VALUE:IINOS" ], [ "TX", "N3", "M0", "ERROR", "ERROR:" ], [ "TX", "N3", "M0", "S0", "VALUE:IIC" ], [ "TX", "N3", "M0", "S1", "VALUE:IIC" ], [ "TX", "N3", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N3", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M0", "SX", "VALUE:IINOS" ], [ "TX", "NX", "M0", "ERROR", "ERROR:" ], [ "TX", "NX", "M0", "S0", "VALUE:UNK" ], [ "TX", "NX", "M0", "S1", "VALUE:UNK" ], [ "TX", "NX", "M0", "S2", "VALUE:UNK" ], [ "TX", "NX", "M0", "S3", "VALUE:UNK" ], [ "TX", "NX", "M0", "SX", "VALUE:UNK" ], [ "T0", "N0", "M1a", "ERROR", "ERROR:" ], [ "T0", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N1", "M1a", "ERROR", "ERROR:" ], [ "T0", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N2", "M1a", "ERROR", "ERROR:" ], [ "T0", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N3", "M1a", "ERROR", "ERROR:" ], [ "T0", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "NX", "M1a", "ERROR", "ERROR:" ], [ "T0", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "Tis", "N0", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N0", "M1a", "S0", "ERROR:" ], [ "Tis", "N0", "M1a", "S1", "ERROR:" ], [ "Tis", "N0", "M1a", "S2", "ERROR:" ], [ "Tis", "N0", "M1a", "S3", "ERROR:" ], [ "Tis", "N0", "M1a", "SX", "ERROR:" ], [ "Tis", "N1", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N1", "M1a", "S0", "ERROR:" ], [ "Tis", "N1", "M1a", "S1", "ERROR:" ], [ "Tis", "N1", "M1a", "S2", "ERROR:" ], [ "Tis", "N1", "M1a", "S3", "ERROR:" ], [ "Tis", "N1", "M1a", "SX", "ERROR:" ], [ "Tis", "N2", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N2", "M1a", "S0", "ERROR:" ], [ "Tis", "N2", "M1a", "S1", "ERROR:" ], [ "Tis", "N2", "M1a", "S2", "ERROR:" ], [ "Tis", "N2", "M1a", "S3", "ERROR:" ], [ "Tis", "N2", "M1a", "SX", "ERROR:" ], [ "Tis", "N3", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N3", "M1a", "S0", "ERROR:" ], [ "Tis", "N3", "M1a", "S1", "ERROR:" ], [ "Tis", "N3", "M1a", "S2", "ERROR:" ], [ "Tis", "N3", "M1a", "S3", "ERROR:" ], [ "Tis", "N3", "M1a", "SX", "ERROR:" ], [ "Tis", "NX", "M1a", "ERROR", "ERROR:" ], [ "Tis", "NX", "M1a", "S0", "ERROR:" ], [ "Tis", "NX", "M1a", "S1", "ERROR:" ], [ "Tis", "NX", "M1a", "S2", "ERROR:" ], [ "Tis", "NX", "M1a", "S3", "ERROR:" ], [ "Tis", "NX", "M1a", "SX", "ERROR:" ], [ "T1", "N0", "M1a", "ERROR", "ERROR:" ], [ "T1", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N1", "M1a", "ERROR", "ERROR:" ], [ "T1", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N2", "M1a", "ERROR", "ERROR:" ], [ "T1", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N3", "M1a", "ERROR", "ERROR:" ], [ "T1", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "NX", "M1a", "ERROR", "ERROR:" ], [ "T1", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N0", "M1a", "ERROR", "ERROR:" ], [ "T2", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N1", "M1a", "ERROR", "ERROR:" ], [ "T2", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N2", "M1a", "ERROR", "ERROR:" ], [ "T2", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N3", "M1a", "ERROR", "ERROR:" ], [ "T2", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "NX", "M1a", "ERROR", "ERROR:" ], [ "T2", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N0", "M1a", "ERROR", "ERROR:" ], [ "T3", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N1", "M1a", "ERROR", "ERROR:" ], [ "T3", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N2", "M1a", "ERROR", "ERROR:" ], [ "T3", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N3", "M1a", "ERROR", "ERROR:" ], [ "T3", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "NX", "M1a", "ERROR", "ERROR:" ], [ "T3", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N0", "M1a", "ERROR", "ERROR:" ], [ "T4", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N1", "M1a", "ERROR", "ERROR:" ], [ "T4", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N2", "M1a", "ERROR", "ERROR:" ], [ "T4", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N3", "M1a", "ERROR", "ERROR:" ], [ "T4", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "NX", "M1a", "ERROR", "ERROR:" ], [ "T4", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N0", "M1a", "ERROR", "ERROR:" ], [ "TX", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N1", "M1a", "ERROR", "ERROR:" ], [ "TX", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N2", "M1a", "ERROR", "ERROR:" ], [ "TX", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N3", "M1a", "ERROR", "ERROR:" ], [ "TX", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "NX", "M1a", "ERROR", "ERROR:" ], [ "TX", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N0", "M1b", "ERROR", "ERROR:" ], [ "T0", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "ERROR", "ERROR:" ], [ "T0", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "ERROR", "ERROR:" ], [ "T0", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "ERROR", "ERROR:" ], [ "T0", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "ERROR", "ERROR:" ], [ "T0", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "Tis", "N0", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N0", "M1b", "S0", "ERROR:" ], [ "Tis", "N0", "M1b", "S1", "ERROR:" ], [ "Tis", "N0", "M1b", "S2", "ERROR:" ], [ "Tis", "N0", "M1b", "S3", "ERROR:" ], [ "Tis", "N0", "M1b", "SX", "ERROR:" ], [ "Tis", "N1", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N1", "M1b", "S0", "ERROR:" ], [ "Tis", "N1", "M1b", "S1", "ERROR:" ], [ "Tis", "N1", "M1b", "S2", "ERROR:" ], [ "Tis", "N1", "M1b", "S3", "ERROR:" ], [ "Tis", "N1", "M1b", "SX", "ERROR:" ], [ "Tis", "N2", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N2", "M1b", "S0", "ERROR:" ], [ "Tis", "N2", "M1b", "S1", "ERROR:" ], [ "Tis", "N2", "M1b", "S2", "ERROR:" ], [ "Tis", "N2", "M1b", "S3", "ERROR:" ], [ "Tis", "N2", "M1b", "SX", "ERROR:" ], [ "Tis", "N3", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N3", "M1b", "S0", "ERROR:" ], [ "Tis", "N3", "M1b", "S1", "ERROR:" ], [ "Tis", "N3", "M1b", "S2", "ERROR:" ], [ "Tis", "N3", "M1b", "S3", "ERROR:" ], [ "Tis", "N3", "M1b", "SX", "ERROR:" ], [ "Tis", "NX", "M1b", "ERROR", "ERROR:" ], [ "Tis", "NX", "M1b", "S0", "ERROR:" ], [ "Tis", "NX", "M1b", "S1", "ERROR:" ], [ "Tis", "NX", "M1b", "S2", "ERROR:" ], [ "Tis", "NX", "M1b", "S3", "ERROR:" ], [ "Tis", "NX", "M1b", "SX", "ERROR:" ], [ "T1", "N0", "M1b", "ERROR", "ERROR:" ], [ "T1", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "ERROR", "ERROR:" ], [ "T1", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "ERROR", "ERROR:" ], [ "T1", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "ERROR", "ERROR:" ], [ "T1", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "ERROR", "ERROR:" ], [ "T1", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "ERROR", "ERROR:" ], [ "T2", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "ERROR", "ERROR:" ], [ "T2", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "ERROR", "ERROR:" ], [ "T2", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "ERROR", "ERROR:" ], [ "T2", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "ERROR", "ERROR:" ], [ "T2", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "ERROR", "ERROR:" ], [ "T3", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "ERROR", "ERROR:" ], [ "T3", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "ERROR", "ERROR:" ], [ "T3", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "ERROR", "ERROR:" ], [ "T3", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "ERROR", "ERROR:" ], [ "T3", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "ERROR", "ERROR:" ], [ "T4", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "ERROR", "ERROR:" ], [ "T4", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "ERROR", "ERROR:" ], [ "T4", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "ERROR", "ERROR:" ], [ "T4", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "ERROR", "ERROR:" ], [ "T4", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "ERROR", "ERROR:" ], [ "TX", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "ERROR", "ERROR:" ], [ "TX", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "ERROR", "ERROR:" ], [ "TX", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "ERROR", "ERROR:" ], [ "TX", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "ERROR", "ERROR:" ], [ "TX", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "Tis", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N0", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N1", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N2", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N3", "M1NOS", "SX", "ERROR:" ], [ "Tis", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S0", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S1", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S2", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S3", "ERROR:" ], [ "Tis", "NX", "M1NOS", "SX", "ERROR:" ], [ "T1", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N0", "MX", "ERROR", "ERROR:" ], [ "T0", "N0", "MX", "S0", "VALUE:UNK" ], [ "T0", "N0", "MX", "S1", "VALUE:UNK" ], [ "T0", "N0", "MX", "S2", "VALUE:UNK" ], [ "T0", "N0", "MX", "S3", "VALUE:UNK" ], [ "T0", "N0", "MX", "SX", "VALUE:UNK" ], [ "T0", "N1", "MX", "ERROR", "ERROR:" ], [ "T0", "N1", "MX", "S0", "VALUE:UNK" ], [ "T0", "N1", "MX", "S1", "VALUE:UNK" ], [ "T0", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T0", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T0", "N1", "MX", "SX", "VALUE:UNK" ], [ "T0", "N2", "MX", "ERROR", "ERROR:" ], [ "T0", "N2", "MX", "S0", "VALUE:UNK" ], [ "T0", "N2", "MX", "S1", "VALUE:UNK" ], [ "T0", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T0", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T0", "N2", "MX", "SX", "VALUE:UNK" ], [ "T0", "N3", "MX", "ERROR", "ERROR:" ], [ "T0", "N3", "MX", "S0", "VALUE:UNK" ], [ "T0", "N3", "MX", "S1", "VALUE:UNK" ], [ "T0", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T0", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T0", "N3", "MX", "SX", "VALUE:UNK" ], [ "T0", "NX", "MX", "ERROR", "ERROR:" ], [ "T0", "NX", "MX", "S0", "VALUE:UNK" ], [ "T0", "NX", "MX", "S1", "VALUE:UNK" ], [ "T0", "NX", "MX", "S2", "VALUE:UNK" ], [ "T0", "NX", "MX", "S3", "VALUE:UNK" ], [ "T0", "NX", "MX", "SX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "ERROR", "ERROR:" ], [ "Tis", "N0", "MX", "S0", "VALUE:0" ], [ "Tis", "N0", "MX", "S1", "ERROR:" ], [ "Tis", "N0", "MX", "S2", "ERROR:" ], [ "Tis", "N0", "MX", "S3", "ERROR:" ], [ "Tis", "N0", "MX", "SX", "ERROR:" ], [ "Tis", "N1", "MX", "ERROR", "ERROR:" ], [ "Tis", "N1", "MX", "S0", "ERROR:" ], [ "Tis", "N1", "MX", "S1", "ERROR:" ], [ "Tis", "N1", "MX", "S2", "ERROR:" ], [ "Tis", "N1", "MX", "S3", "ERROR:" ], [ "Tis", "N1", "MX", "SX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR", "ERROR:" ], [ "Tis", "N2", "MX", "S0", "ERROR:" ], [ "Tis", "N2", "MX", "S1", "ERROR:" ], [ "Tis", "N2", "MX", "S2", "ERROR:" ], [ "Tis", "N2", "MX", "S3", "ERROR:" ], [ "Tis", "N2", "MX", "SX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR", "ERROR:" ], [ "Tis", "N3", "MX", "S0", "ERROR:" ], [ "Tis", "N3", "MX", "S1", "ERROR:" ], [ "Tis", "N3", "MX", "S2", "ERROR:" ], [ "Tis", "N3", "MX", "S3", "ERROR:" ], [ "Tis", "N3", "MX", "SX", "ERROR:" ], [ "Tis", "NX", "MX", "ERROR", "ERROR:" ], [ "Tis", "NX", "MX", "S0", "VALUE:0" ], [ "Tis", "NX", "MX", "S1", "ERROR:" ], [ "Tis", "NX", "MX", "S2", "ERROR:" ], [ "Tis", "NX", "MX", "S3", "ERROR:" ], [ "Tis", "NX", "MX", "SX", "VALUE:UNK" ], [ "T1", "N0", "MX", "ERROR", "ERROR:" ], [ "T1", "N0", "MX", "S0", "VALUE:UNK" ], [ "T1", "N0", "MX", "S1", "VALUE:UNK" ], [ "T1", "N0", "MX", "S2", "VALUE:UNK" ], [ "T1", "N0", "MX", "S3", "VALUE:UNK" ], [ "T1", "N0", "MX", "SX", "VALUE:UNK" ], [ "T1", "N1", "MX", "ERROR", "ERROR:" ], [ "T1", "N1", "MX", "S0", "VALUE:UNK" ], [ "T1", "N1", "MX", "S1", "VALUE:UNK" ], [ "T1", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T1", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T1", "N1", "MX", "SX", "VALUE:UNK" ], [ "T1", "N2", "MX", "ERROR", "ERROR:" ], [ "T1", "N2", "MX", "S0", "VALUE:UNK" ], [ "T1", "N2", "MX", "S1", "VALUE:UNK" ], [ "T1", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T1", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T1", "N2", "MX", "SX", "VALUE:UNK" ], [ "T1", "N3", "MX", "ERROR", "ERROR:" ], [ "T1", "N3", "MX", "S0", "VALUE:UNK" ], [ "T1", "N3", "MX", "S1", "VALUE:UNK" ], [ "T1", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T1", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T1", "N3", "MX", "SX", "VALUE:UNK" ], [ "T1", "NX", "MX", "ERROR", "ERROR:" ], [ "T1", "NX", "MX", "S0", "VALUE:UNK" ], [ "T1", "NX", "MX", "S1", "VALUE:UNK" ], [ "T1", "NX", "MX", "S2", "VALUE:UNK" ], [ "T1", "NX", "MX", "S3", "VALUE:UNK" ], [ "T1", "NX", "MX", "SX", "VALUE:UNK" ], [ "T2", "N0", "MX", "ERROR", "ERROR:" ], [ "T2", "N0", "MX", "S0", "VALUE:UNK" ], [ "T2", "N0", "MX", "S1", "VALUE:UNK" ], [ "T2", "N0", "MX", "S2", "VALUE:UNK" ], [ "T2", "N0", "MX", "S3", "VALUE:UNK" ], [ "T2", "N0", "MX", "SX", "VALUE:UNK" ], [ "T2", "N1", "MX", "ERROR", "ERROR:" ], [ "T2", "N1", "MX", "S0", "VALUE:UNK" ], [ "T2", "N1", "MX", "S1", "VALUE:UNK" ], [ "T2", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T2", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T2", "N1", "MX", "SX", "VALUE:UNK" ], [ "T2", "N2", "MX", "ERROR", "ERROR:" ], [ "T2", "N2", "MX", "S0", "VALUE:UNK" ], [ "T2", "N2", "MX", "S1", "VALUE:UNK" ], [ "T2", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T2", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T2", "N2", "MX", "SX", "VALUE:UNK" ], [ "T2", "N3", "MX", "ERROR", "ERROR:" ], [ "T2", "N3", "MX", "S0", "VALUE:UNK" ], [ "T2", "N3", "MX", "S1", "VALUE:UNK" ], [ "T2", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T2", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T2", "N3", "MX", "SX", "VALUE:UNK" ], [ "T2", "NX", "MX", "ERROR", "ERROR:" ], [ "T2", "NX", "MX", "S0", "VALUE:UNK" ], [ "T2", "NX", "MX", "S1", "VALUE:UNK" ], [ "T2", "NX", "MX", "S2", "VALUE:UNK" ], [ "T2", "NX", "MX", "S3", "VALUE:UNK" ], [ "T2", "NX", "MX", "SX", "VALUE:UNK" ], [ "T3", "N0", "MX", "ERROR", "ERROR:" ], [ "T3", "N0", "MX", "S0", "VALUE:UNK" ], [ "T3", "N0", "MX", "S1", "VALUE:UNK" ], [ "T3", "N0", "MX", "S2", "VALUE:UNK" ], [ "T3", "N0", "MX", "S3", "VALUE:UNK" ], [ "T3", "N0", "MX", "SX", "VALUE:UNK" ], [ "T3", "N1", "MX", "ERROR", "ERROR:" ], [ "T3", "N1", "MX", "S0", "VALUE:UNK" ], [ "T3", "N1", "MX", "S1", "VALUE:UNK" ], [ "T3", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T3", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T3", "N1", "MX", "SX", "VALUE:UNK" ], [ "T3", "N2", "MX", "ERROR", "ERROR:" ], [ "T3", "N2", "MX", "S0", "VALUE:UNK" ], [ "T3", "N2", "MX", "S1", "VALUE:UNK" ], [ "T3", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T3", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T3", "N2", "MX", "SX", "VALUE:UNK" ], [ "T3", "N3", "MX", "ERROR", "ERROR:" ], [ "T3", "N3", "MX", "S0", "VALUE:UNK" ], [ "T3", "N3", "MX", "S1", "VALUE:UNK" ], [ "T3", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T3", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T3", "N3", "MX", "SX", "VALUE:UNK" ], [ "T3", "NX", "MX", "ERROR", "ERROR:" ], [ "T3", "NX", "MX", "S0", "VALUE:UNK" ], [ "T3", "NX", "MX", "S1", "VALUE:UNK" ], [ "T3", "NX", "MX", "S2", "VALUE:UNK" ], [ "T3", "NX", "MX", "S3", "VALUE:UNK" ], [ "T3", "NX", "MX", "SX", "VALUE:UNK" ], [ "T4", "N0", "MX", "ERROR", "ERROR:" ], [ "T4", "N0", "MX", "S0", "VALUE:UNK" ], [ "T4", "N0", "MX", "S1", "VALUE:UNK" ], [ "T4", "N0", "MX", "S2", "VALUE:UNK" ], [ "T4", "N0", "MX", "S3", "VALUE:UNK" ], [ "T4", "N0", "MX", "SX", "VALUE:UNK" ], [ "T4", "N1", "MX", "ERROR", "ERROR:" ], [ "T4", "N1", "MX", "S0", "VALUE:UNK" ], [ "T4", "N1", "MX", "S1", "VALUE:UNK" ], [ "T4", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T4", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T4", "N1", "MX", "SX", "VALUE:UNK" ], [ "T4", "N2", "MX", "ERROR", "ERROR:" ], [ "T4", "N2", "MX", "S0", "VALUE:UNK" ], [ "T4", "N2", "MX", "S1", "VALUE:UNK" ], [ "T4", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T4", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T4", "N2", "MX", "SX", "VALUE:UNK" ], [ "T4", "N3", "MX", "ERROR", "ERROR:" ], [ "T4", "N3", "MX", "S0", "VALUE:UNK" ], [ "T4", "N3", "MX", "S1", "VALUE:UNK" ], [ "T4", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T4", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T4", "N3", "MX", "SX", "VALUE:UNK" ], [ "T4", "NX", "MX", "ERROR", "ERROR:" ], [ "T4", "NX", "MX", "S0", "VALUE:UNK" ], [ "T4", "NX", "MX", "S1", "VALUE:UNK" ], [ "T4", "NX", "MX", "S2", "VALUE:UNK" ], [ "T4", "NX", "MX", "S3", "VALUE:UNK" ], [ "T4", "NX", "MX", "SX", "VALUE:UNK" ], [ "TX", "N0", "MX", "ERROR", "ERROR:" ], [ "TX", "N0", "MX", "S0", "VALUE:UNK" ], [ "TX", "N0", "MX", "S1", "VALUE:UNK" ], [ "TX", "N0", "MX", "S2", "VALUE:UNK" ], [ "TX", "N0", "MX", "S3", "VALUE:UNK" ], [ "TX", "N0", "MX", "SX", "VALUE:UNK" ], [ "TX", "N1", "MX", "ERROR", "ERROR:" ], [ "TX", "N1", "MX", "S0", "VALUE:UNK" ], [ "TX", "N1", "MX", "S1", "VALUE:UNK" ], [ "TX", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "TX", "N1", "MX", "S3", "VALUE:IIIC" ], [ "TX", "N1", "MX", "SX", "VALUE:UNK" ], [ "TX", "N2", "MX", "ERROR", "ERROR:" ], [ "TX", "N2", "MX", "S0", "VALUE:UNK" ], [ "TX", "N2", "MX", "S1", "VALUE:UNK" ], [ "TX", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "TX", "N2", "MX", "S3", "VALUE:IIIC" ], [ "TX", "N2", "MX", "SX", "VALUE:UNK" ], [ "TX", "N3", "MX", "ERROR", "ERROR:" ], [ "TX", "N3", "MX", "S0", "VALUE:UNK" ], [ "TX", "N3", "MX", "S1", "VALUE:UNK" ], [ "TX", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "TX", "N3", "MX", "S3", "VALUE:IIIC" ], [ "TX", "N3", "MX", "SX", "VALUE:UNK" ], [ "TX", "NX", "MX", "ERROR", "ERROR:" ], [ "TX", "NX", "MX", "S0", "VALUE:UNK" ], [ "TX", "NX", "MX", "S1", "VALUE:UNK" ], [ "TX", "NX", "MX", "S2", "VALUE:UNK" ], [ "TX", "NX", "MX", "S3", "VALUE:UNK" ], [ "TX", "NX", "MX", "SX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpr.json
deleted file mode 100644
index f4fd34c40..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpr.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.625Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2a", "M0", "VALUE:IVA" ], [ "T0", "N2b", "M0", "VALUE:IVA" ], [ "T0", "N2c", "M0", "VALUE:IVA" ], [ "T0", "N2NOS", "M0", "VALUE:IVA" ], [ "T0", "N3", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2a", "M0", "VALUE:IVA" ], [ "T1", "N2b", "M0", "VALUE:IVA" ], [ "T1", "N2c", "M0", "VALUE:IVA" ], [ "T1", "N2NOS", "M0", "VALUE:IVA" ], [ "T1", "N3", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IVA" ], [ "T2", "N2b", "M0", "VALUE:IVA" ], [ "T2", "N2c", "M0", "VALUE:IVA" ], [ "T2", "N2NOS", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "N2a", "M0", "VALUE:IVA" ], [ "T4a", "N2b", "M0", "VALUE:IVA" ], [ "T4a", "N2c", "M0", "VALUE:IVA" ], [ "T4a", "N2NOS", "M0", "VALUE:IVA" ], [ "T4a", "N3", "M0", "VALUE:IVB" ], [ "T4a", "NX", "M0", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "N2a", "M0", "VALUE:IVB" ], [ "T4b", "N2b", "M0", "VALUE:IVB" ], [ "T4b", "N2c", "M0", "VALUE:IVB" ], [ "T4b", "N2NOS", "M0", "VALUE:IVB" ], [ "T4b", "N3", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N3", "M0", "VALUE:IVB" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IVNOS" ], [ "TX", "N2b", "M0", "VALUE:IVNOS" ], [ "TX", "N2c", "M0", "VALUE:IVNOS" ], [ "TX", "N2NOS", "M0", "VALUE:IVNOS" ], [ "TX", "N3", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2a", "M1", "VALUE:IVC" ], [ "T0", "N2b", "M1", "VALUE:IVC" ], [ "T0", "N2c", "M1", "VALUE:IVC" ], [ "T0", "N2NOS", "M1", "VALUE:IVC" ], [ "T0", "N3", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N1", "M1", "VALUE:IVC" ], [ "T1", "N2a", "M1", "VALUE:IVC" ], [ "T1", "N2b", "M1", "VALUE:IVC" ], [ "T1", "N2c", "M1", "VALUE:IVC" ], [ "T1", "N2NOS", "M1", "VALUE:IVC" ], [ "T1", "N3", "M1", "VALUE:IVC" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2a", "M1", "VALUE:IVC" ], [ "T2", "N2b", "M1", "VALUE:IVC" ], [ "T2", "N2c", "M1", "VALUE:IVC" ], [ "T2", "N2NOS", "M1", "VALUE:IVC" ], [ "T2", "N3", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2a", "M1", "VALUE:IVC" ], [ "T3", "N2b", "M1", "VALUE:IVC" ], [ "T3", "N2c", "M1", "VALUE:IVC" ], [ "T3", "N2NOS", "M1", "VALUE:IVC" ], [ "T3", "N3", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "N2a", "M1", "VALUE:IVC" ], [ "T4a", "N2b", "M1", "VALUE:IVC" ], [ "T4a", "N2c", "M1", "VALUE:IVC" ], [ "T4a", "N2NOS", "M1", "VALUE:IVC" ], [ "T4a", "N3", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "N2a", "M1", "VALUE:IVC" ], [ "T4b", "N2b", "M1", "VALUE:IVC" ], [ "T4b", "N2c", "M1", "VALUE:IVC" ], [ "T4b", "N2NOS", "M1", "VALUE:IVC" ], [ "T4b", "N3", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "N2a", "M1", "VALUE:IVC" ], [ "T4NOS", "N2b", "M1", "VALUE:IVC" ], [ "T4NOS", "N2c", "M1", "VALUE:IVC" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N3", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2a", "M1", "VALUE:IVC" ], [ "TX", "N2b", "M1", "VALUE:IVC" ], [ "TX", "N2c", "M1", "VALUE:IVC" ], [ "TX", "N2NOS", "M1", "VALUE:IVC" ], [ "TX", "N3", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2a", "MX", "VALUE:IVNOS" ], [ "T0", "N2b", "MX", "VALUE:IVNOS" ], [ "T0", "N2c", "MX", "VALUE:IVNOS" ], [ "T0", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T0", "N3", "MX", "VALUE:IVNOS" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2a", "MX", "VALUE:IVNOS" ], [ "T1", "N2b", "MX", "VALUE:IVNOS" ], [ "T1", "N2c", "MX", "VALUE:IVNOS" ], [ "T1", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T1", "N3", "MX", "VALUE:IVNOS" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2a", "MX", "VALUE:IVNOS" ], [ "T2", "N2b", "MX", "VALUE:IVNOS" ], [ "T2", "N2c", "MX", "VALUE:IVNOS" ], [ "T2", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T2", "N3", "MX", "VALUE:IVNOS" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2a", "MX", "VALUE:IVNOS" ], [ "T3", "N2b", "MX", "VALUE:IVNOS" ], [ "T3", "N2c", "MX", "VALUE:IVNOS" ], [ "T3", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T3", "N3", "MX", "VALUE:IVNOS" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "MX", "VALUE:IVNOS" ], [ "T4a", "N1", "MX", "VALUE:IVNOS" ], [ "T4a", "N2a", "MX", "VALUE:IVNOS" ], [ "T4a", "N2b", "MX", "VALUE:IVNOS" ], [ "T4a", "N2c", "MX", "VALUE:IVNOS" ], [ "T4a", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4a", "N3", "MX", "VALUE:IVNOS" ], [ "T4a", "NX", "MX", "VALUE:IVNOS" ], [ "T4b", "N0", "MX", "VALUE:IVNOS" ], [ "T4b", "N1", "MX", "VALUE:IVNOS" ], [ "T4b", "N2a", "MX", "VALUE:IVNOS" ], [ "T4b", "N2b", "MX", "VALUE:IVNOS" ], [ "T4b", "N2c", "MX", "VALUE:IVNOS" ], [ "T4b", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4b", "N3", "MX", "VALUE:IVNOS" ], [ "T4b", "NX", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N3", "MX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2a", "MX", "VALUE:IVNOS" ], [ "TX", "N2b", "MX", "VALUE:IVNOS" ], [ "TX", "N2c", "MX", "VALUE:IVNOS" ], [ "TX", "N2NOS", "MX", "VALUE:IVNOS" ], [ "TX", "N3", "MX", "VALUE:IVNOS" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qps.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qps.json
deleted file mode 100644
index 4baf26fc2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qps.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qps",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.692Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:II" ], [ "T0", "N2", "M0", "VALUE:III" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "N3", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:II" ], [ "T1", "N2", "M0", "VALUE:III" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:II" ], [ "T2", "N2", "M0", "VALUE:III" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:III" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:III" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:III" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "N3", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:UNK" ], [ "T0", "N3", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Ta", "N0", "MX", "VALUE:0" ], [ "Ta", "N1", "MX", "ERROR:" ], [ "Ta", "N2", "MX", "ERROR:" ], [ "Ta", "N3", "MX", "ERROR:" ], [ "Ta", "NX", "MX", "VALUE:0" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "N3", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "N2", "MX", "VALUE:UNK" ], [ "T1", "N3", "MX", "VALUE:IV" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:UNK" ], [ "T2", "N3", "MX", "VALUE:IV" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:UNK" ], [ "T3", "N3", "MX", "VALUE:IV" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IV" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "N2", "MX", "VALUE:IV" ], [ "T4", "N3", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:IV" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:UNK" ], [ "TX", "N3", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpt.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpt.json
deleted file mode 100644
index 704aabd06..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpt.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpt",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.750Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:III" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpu.json
deleted file mode 100644
index 410821970..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpu.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.804Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2", "M0", "VALUE:IVA" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "N2", "M0", "VALUE:IVA" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "N2", "M0", "VALUE:IVA" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "N2", "M0", "VALUE:IVA" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2", "M0", "VALUE:IVA" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:IVA" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "N2", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IVNOS" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "N2", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IVB" ], [ "T1a", "N1", "M1", "VALUE:IVB" ], [ "T1a", "N2", "M1", "VALUE:IVB" ], [ "T1a", "NX", "M1", "VALUE:IVB" ], [ "T1b", "N0", "M1", "VALUE:IVB" ], [ "T1b", "N1", "M1", "VALUE:IVB" ], [ "T1b", "N2", "M1", "VALUE:IVB" ], [ "T1b", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "N2", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1", "M1", "VALUE:IVB" ], [ "T2", "N2", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1", "M1", "VALUE:IVB" ], [ "T3", "N2", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "N2", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "N2", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "N2", "MX", "VALUE:IVNOS" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "N2", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "N2", "MX", "VALUE:IVNOS" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "N2", "MX", "VALUE:IVNOS" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "N2", "MX", "VALUE:IVNOS" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "N2", "MX", "VALUE:IVNOS" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "N2", "MX", "VALUE:IVNOS" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IVNOS" ], [ "T4", "N1", "MX", "VALUE:IVNOS" ], [ "T4", "N2", "MX", "VALUE:IVNOS" ], [ "T4", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "N2", "MX", "VALUE:IVNOS" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpv.json
deleted file mode 100644
index 8c267c5cd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpv.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.867Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:UNK" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:UNK" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:UNK" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:UNK" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpw.json
deleted file mode 100644
index 5449f8f4f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpw.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.923Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IC" ], [ "T1c", "N1", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIC" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIC" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IVB" ], [ "T1a", "N1", "M1", "VALUE:IVB" ], [ "T1a", "NX", "M1", "VALUE:IVB" ], [ "T1b", "N0", "M1", "VALUE:IVB" ], [ "T1b", "N1", "M1", "VALUE:IVB" ], [ "T1b", "NX", "M1", "VALUE:IVB" ], [ "T1c", "N0", "M1", "VALUE:IVB" ], [ "T1c", "N1", "M1", "VALUE:IVB" ], [ "T1c", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2a", "N0", "M1", "VALUE:IVB" ], [ "T2a", "N1", "M1", "VALUE:IVB" ], [ "T2a", "NX", "M1", "VALUE:IVB" ], [ "T2b", "N0", "M1", "VALUE:IVB" ], [ "T2b", "N1", "M1", "VALUE:IVB" ], [ "T2b", "NX", "M1", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "VALUE:IVB" ], [ "T2NOS", "N1", "M1", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "VALUE:IVB" ], [ "T3a", "N0", "M1", "VALUE:IVB" ], [ "T3a", "N1", "M1", "VALUE:IVB" ], [ "T3a", "NX", "M1", "VALUE:IVB" ], [ "T3b", "N0", "M1", "VALUE:IVB" ], [ "T3b", "N1", "M1", "VALUE:IVB" ], [ "T3b", "NX", "M1", "VALUE:IVB" ], [ "T3NOS", "N0", "M1", "VALUE:IVB" ], [ "T3NOS", "N1", "M1", "VALUE:IVB" ], [ "T3NOS", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:UNK" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "Tis", "N0", "MX", "VALUE:0" ], [ "Tis", "N1", "MX", "ERROR:" ], [ "Tis", "NX", "MX", "VALUE:0" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:UNK" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:UNK" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1c", "N0", "MX", "VALUE:UNK" ], [ "T1c", "N1", "MX", "VALUE:UNK" ], [ "T1c", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:UNK" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:UNK" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:UNK" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:UNK" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:UNK" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3b", "N0", "MX", "VALUE:UNK" ], [ "T3b", "N1", "MX", "VALUE:UNK" ], [ "T3b", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:UNK" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:IVNOS" ], [ "T4", "N1", "MX", "VALUE:IVNOS" ], [ "T4", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:UNK" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpx.json
deleted file mode 100644
index 52be0b808..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_stage_qpx.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc6_stage_qpx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage",
- "last_modified" : "2015-05-27T16:18:51.981Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:I" ], [ "T1c", "N1", "M0", "VALUE:IV" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:II" ], [ "T2c", "N1", "M0", "VALUE:IV" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:III" ], [ "T3a", "N1", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:III" ], [ "T3NOS", "N1", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2c", "N0", "M1", "VALUE:IV" ], [ "T2c", "N1", "M1", "VALUE:IV" ], [ "T2c", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:IV" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1a", "N0", "MX", "VALUE:UNK" ], [ "T1a", "N1", "MX", "VALUE:IV" ], [ "T1a", "NX", "MX", "VALUE:UNK" ], [ "T1b", "N0", "MX", "VALUE:UNK" ], [ "T1b", "N1", "MX", "VALUE:IV" ], [ "T1b", "NX", "MX", "VALUE:UNK" ], [ "T1c", "N0", "MX", "VALUE:UNK" ], [ "T1c", "N1", "MX", "VALUE:IV" ], [ "T1c", "NX", "MX", "VALUE:UNK" ], [ "T1NOS", "N0", "MX", "VALUE:UNK" ], [ "T1NOS", "N1", "MX", "VALUE:IV" ], [ "T1NOS", "NX", "MX", "VALUE:UNK" ], [ "T2a", "N0", "MX", "VALUE:UNK" ], [ "T2a", "N1", "MX", "VALUE:IV" ], [ "T2a", "NX", "MX", "VALUE:UNK" ], [ "T2b", "N0", "MX", "VALUE:UNK" ], [ "T2b", "N1", "MX", "VALUE:IV" ], [ "T2b", "NX", "MX", "VALUE:UNK" ], [ "T2c", "N0", "MX", "VALUE:UNK" ], [ "T2c", "N1", "MX", "VALUE:IV" ], [ "T2c", "NX", "MX", "VALUE:UNK" ], [ "T2NOS", "N0", "MX", "VALUE:UNK" ], [ "T2NOS", "N1", "MX", "VALUE:IV" ], [ "T2NOS", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:IV" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T3a", "N0", "MX", "VALUE:UNK" ], [ "T3a", "N1", "MX", "VALUE:IV" ], [ "T3a", "NX", "MX", "VALUE:UNK" ], [ "T3NOS", "N0", "MX", "VALUE:UNK" ], [ "T3NOS", "N1", "MX", "VALUE:IV" ], [ "T3NOS", "NX", "MX", "VALUE:UNK" ], [ "T4", "N0", "MX", "VALUE:UNK" ], [ "T4", "N1", "MX", "VALUE:IV" ], [ "T4", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:IV" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_t_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_t_codes.json
deleted file mode 100644
index fab2a6660..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_t_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc6_t_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 6 T Codes",
- "title" : "AJCC 6 T Allowable Codes",
- "last_modified" : "2015-05-27T16:18:52.044Z",
- "definition" : [ {
- "key" : "ajcc6_t",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc6_t",
- "name" : "AJCC6 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "TX", "VALUE:99", "TX" ], [ "T0", "VALUE:00", "T0" ], [ "Ta", "VALUE:01", "Ta" ], [ "Tis", "VALUE:05", "Tis" ], [ "Tispu", "VALUE:06", "Tispu (Urethra only)" ], [ "Tispd", "VALUE:07", "Tispd (Urethra only)" ], [ "T1", "VALUE:10", "T1" ], [ "T1mi", "VALUE:11", "T1mi" ], [ "T1NOS", "VALUE:19", "T1 NOS" ], [ "T1NOS(s)", "VALUE: ", "T1 NOS(s)" ], [ "T1NOS(m)", "VALUE: ", "T1 NOS(m)" ], [ "T1a", "VALUE:12", "T1a" ], [ "T1a(s)", "VALUE: ", "T1a(s)" ], [ "T1a(m)", "VALUE: ", "T1a(m)" ], [ "T1a1", "VALUE:13", "T1a1" ], [ "T1a2", "VALUE:14", "T1a2" ], [ "T1b", "VALUE:15", "T1b" ], [ "T1b(s)", "VALUE: ", "T1b(s)" ], [ "T1b(m)", "VALUE: ", "T1b(m)" ], [ "T1b1", "VALUE:16", "T1b1" ], [ "T1b2", "VALUE:17", "T1b2" ], [ "T1c", "VALUE:18", "T1c" ], [ "T1d", "VALUE: ", "T1d" ], [ "T2", "VALUE:20", "T2" ], [ "T2(s)", "VALUE: ", "T2(s)" ], [ "T2(m)", "VALUE: ", "T2(m)" ], [ "T2NOS", "VALUE:29", "T2 NOS" ], [ "T2a", "VALUE:21", "T2a" ], [ "T2a1", "VALUE: ", "T2a1" ], [ "T2a2", "VALUE: ", "T2a2" ], [ "T2aNOS", "VALUE: ", "T2a NOS" ], [ "T2b", "VALUE:22", "T2b" ], [ "T2c", "VALUE:23", "T2c" ], [ "T2d", "VALUE: ", "T2d" ], [ "T3", "VALUE:30", "T3" ], [ "T3(s)", "VALUE: ", "T3(s)" ], [ "T3(m)", "VALUE: ", "T3(m)" ], [ "T3NOS", "VALUE:39", "T3 NOS" ], [ "T3a", "VALUE:31", "T3a" ], [ "T3b", "VALUE:32", "T3b" ], [ "T3c", "VALUE:33", "T3c" ], [ "T3d", "VALUE: ", "T3d" ], [ "T4", "VALUE:40", "T4" ], [ "T4NOS", "VALUE:49", "T4 NOS" ], [ "T4NOS(s)", "VALUE: ", "T4 NOS(s)" ], [ "T4NOS(m)", "VALUE: ", "T4 NOS(m)" ], [ "T4a", "VALUE:41", "T4a" ], [ "T4a(s)", "VALUE: ", "T4a(s)" ], [ "T4a(m)", "VALUE: ", "T4a(m)" ], [ "T4b", "VALUE:42", "T4b" ], [ "T4b(s)", "VALUE: ", "T4b(s)" ], [ "T4b(m)", "VALUE: ", "T4b(m)" ], [ "T4c", "VALUE:43", "T4c" ], [ "T4d", "VALUE:44", "T4d" ], [ "T4e", "VALUE: ", "T4e" ], [ "T1aNOS", "VALUE:80", "T1a NOS" ], [ "T1bNOS", "VALUE:81", "T1b NOS" ], [ "NA", "VALUE:88", "Not applicable" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_year_validation.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_year_validation.json
deleted file mode 100644
index 2f22adc7b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc6_year_validation.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc6_year_validation",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 6 Year Validation",
- "title" : "AJCC 6 Year Validation",
- "last_modified" : "2015-05-27T16:18:52.091Z",
- "definition" : [ {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "2004-{{ctx_year_current}}", "*" ], [ "", "020500-999999,020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tab.json
deleted file mode 100644
index ae65cbfb5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tab.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.139Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8800-8820" ], [ "8823-8934" ], [ "8940-9136" ], [ "9142-9582" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tae.json
deleted file mode 100644
index b6a84bc53..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tae.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.184Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8940-8950" ], [ "8971" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpa.json
deleted file mode 100644
index 9e768e91d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpa.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.235Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8720-8790" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpb.json
deleted file mode 100644
index 8e46d531f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpb.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.281Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8940-8950" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpc.json
deleted file mode 100644
index 6bb151b10..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpc.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.327Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8152" ], [ "8154-8231" ], [ "8243-8245" ], [ "8247" ], [ "8248" ], [ "8250-8576" ], [ "8940-8950" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpe.json
deleted file mode 100644
index 29de30c36..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpe.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.375Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8152" ], [ "8154-8231" ], [ "8243-8245" ], [ "8250-8576" ], [ "8940-8950" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpf.json
deleted file mode 100644
index e0ad3d2ea..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpf.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.420Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "9050-9053" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpg.json
deleted file mode 100644
index 1043e5abc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpg.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.468Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8940-8950" ], [ "8980-8981" ], [ "9020" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tph.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tph.json
deleted file mode 100644
index a2ba7827f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tph.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tph",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.512Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8800-8801" ], [ "8940-8950" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpi.json
deleted file mode 100644
index 8ff504050..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpi.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.557Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "9100-9105" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpj.json
deleted file mode 100644
index 650216d0d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpj.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.599Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8590-8670" ], [ "8940-8950" ], [ "8980-8981" ], [ "9060-9090" ], [ "9100-9105" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpk.json
deleted file mode 100644
index 770bd05b7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpk.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.646Z",
- "definition" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "type" : "INPUT"
- }, {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "C692", "9510-9514" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpl.json
deleted file mode 100644
index 92b7f5015..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpl.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.689Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "9590-9699" ], [ "9702-9738" ], [ "9811-9818" ], [ "9820-9837" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpm.json
deleted file mode 100644
index 3235ae91d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpm.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.733Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8153" ], [ "8240-8242" ], [ "8246" ], [ "8249" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpn.json
deleted file mode 100644
index 4481b96e3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpn.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.778Z",
- "definition" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "type" : "INPUT"
- }, {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "C220", "8170-8175" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpo.json
deleted file mode 100644
index 1ffa1335c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpo.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.823Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8935-8936" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpp.json
deleted file mode 100644
index 655800750..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpp.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.872Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8800-8936" ], [ "8940-9136" ], [ "9141-9508" ], [ "9520-9582" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpq.json
deleted file mode 100644
index e20bdf139..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpq.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.917Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8246" ], [ "8248-8576" ], [ "8940-8950" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpr.json
deleted file mode 100644
index fbfaf0c4f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpr.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:52.959Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "9590-9699" ], [ "9702-9729" ], [ "9735" ], [ "9737" ], [ "9738" ], [ "9811-9818" ], [ "9823" ], [ "9827" ], [ "9837" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tps.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tps.json
deleted file mode 100644
index 8008a4b7e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tps.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tps",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.002Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8800-8820" ], [ "8823-8935" ], [ "8940-9136" ], [ "9142-9582" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpt.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpt.json
deleted file mode 100644
index 06ff7a7e9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpt.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpt",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.059Z",
- "definition" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "type" : "INPUT"
- }, {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "C221", "8160" ], [ "C221", "8161" ], [ "C221", "8180" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpv.json
deleted file mode 100644
index e77e0b48f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpv.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.112Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8110" ], [ "8140-8576" ], [ "8940-8950" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpw.json
deleted file mode 100644
index edc3c9a18..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpw.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.158Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "9700-9701" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpx.json
deleted file mode 100644
index 2849eee1b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpx.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.205Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8590-8671" ], [ "8930-9110" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpy.json
deleted file mode 100644
index 2243f7042..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpy.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.252Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8800-9136" ], [ "9142-9582" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpz.json
deleted file mode 100644
index 3e31d9cc4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tpz.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tpz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "notes" : "**Note**: For Peritoneum, this table is for males only. For females and site C481-C482, C488, the histologies are 8800-8820,8823-8921,9120-9136,9142-9582 because the other histologies are in PeritoneumFemaleGen.",
- "last_modified" : "2015-05-27T16:18:53.298Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8800-8820" ], [ "8823-8934" ], [ "8940-9136" ], [ "9142-9582" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqa.json
deleted file mode 100644
index d50320cb9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqa.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.344Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8590-8671" ], [ "8930-8934" ], [ "8940-9110" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqb.json
deleted file mode 100644
index efc43559a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqb.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.387Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8247" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqc.json
deleted file mode 100644
index 8e730a7b2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqc.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.443Z",
- "definition" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "type" : "INPUT"
- }, {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "C740", "8010" ], [ "C740", "8140" ], [ "C740", "8370" ], [ "C749", "8370" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqf.json
deleted file mode 100644
index 00b99447b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqf.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.495Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000" ], [ "8680-9136" ], [ "9141-9582" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqg.json
deleted file mode 100644
index 296c6d63b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqg.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.553Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8790" ], [ "8950" ], [ "8951" ], [ "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqh.json
deleted file mode 100644
index 74f4a3eb0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqh.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.685Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8933" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqi.json
deleted file mode 100644
index 0d0a197bc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqi.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.732Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8800" ], [ "8890-8898" ], [ "8900-8921" ], [ "8930-8931" ], [ "8935" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqj.json
deleted file mode 100644
index a015d6fb8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqj.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.782Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8152" ], [ "8154-8231" ], [ "8243-8245" ], [ "8247" ], [ "8248" ], [ "8250-8576" ], [ "8940-8950" ], [ "8980-8990" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqk.json
deleted file mode 100644
index 21398d67d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqk.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.827Z",
- "definition" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "type" : "INPUT"
- }, {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "C170,C171,C172,C178,C179", "8000-8152" ], [ "C170,C171,C172,C178,C179", "8154-8231" ], [ "C170,C171,C172,C178,C179", "8243-8245" ], [ "C170,C171,C172,C178,C179", "8247" ], [ "C170,C171,C172,C178,C179", "8248" ], [ "C170,C171,C172,C178,C179", "8250-8576" ], [ "C170,C171,C172,C178,C179", "8940-8950" ], [ "C170,C171,C172,C178,C179", "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tql.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tql.json
deleted file mode 100644
index 14f20340a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tql.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tql",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.879Z",
- "definition" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "type" : "INPUT"
- }, {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "C170,C171,C172,C178,C179", "8935-8936" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqm.json
deleted file mode 100644
index 029cd8a3b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqm.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed.",
- "last_modified" : "2015-05-27T16:18:53.926Z",
- "definition" : [ {
- "key" : "site",
- "name" : "Primary Site",
- "type" : "INPUT"
- }, {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "C328, C329", "8000-8576" ], [ "C328, C329", "8940-8950" ], [ "C328, C329", "8980-8981" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqn.json
deleted file mode 100644
index 8cce406fd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_inclusions_tqn.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "ajcc7_inclusions_tqn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Inclusions",
- "title" : "Histology Inclusion Table AJCC 7th ed. new",
- "last_modified" : "2015-05-27T16:18:53.972Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8576" ], [ "8940-8950" ], [ "8980-8982" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_m_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_m_codes.json
deleted file mode 100644
index f4b6007dd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_m_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc7_m_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 7 M Codes",
- "title" : "AJCC 7 M Allowable Codes",
- "last_modified" : "2015-05-27T16:18:54.021Z",
- "definition" : [ {
- "key" : "ajcc7_m",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc7_m",
- "name" : "AJCC7 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "MX", "VALUE:999", "MX" ], [ "M0", "VALUE:000", "M0" ], [ "M0(i+)", "VALUE:010", "M0(i+)" ], [ "M1", "VALUE:100", "M1" ], [ "M1a", "VALUE:110", "M1a" ], [ "M1b", "VALUE:120", "M1b" ], [ "M1c", "VALUE:130", "M1c" ], [ "M1d", "VALUE:140", "M1d" ], [ "M1e", "VALUE:150", "M1e" ], [ "M1NOS", "VALUE:199", "M1 NOS" ], [ "NA", "VALUE:888", "Not applicable" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_n_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_n_codes.json
deleted file mode 100644
index 2130c4f8c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_n_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc7_n_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 7 N Codes",
- "title" : "AJCC 7 N Allowable Codes",
- "last_modified" : "2015-05-27T16:18:54.078Z",
- "definition" : [ {
- "key" : "ajcc7_n",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc7_n",
- "name" : "AJCC7 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "NX", "VALUE:999", "NX" ], [ "N0", "VALUE:000", "N0" ], [ "N0(i-)", "VALUE:010", "N0(i-)" ], [ "N0(i+)", "VALUE:020", "N0(i+)" ], [ "N0(mol-)", "VALUE:030", "N0(mol-)" ], [ "N0(mol+)", "VALUE:040", "N0(mol+)" ], [ "N1", "VALUE:100", "N1" ], [ "N1NOS", "VALUE:199", "N1 NOS" ], [ "N1a", "VALUE:110", "N1a" ], [ "N1b", "VALUE:120", "N1b" ], [ "N1c", "VALUE:130", "N1c" ], [ "N1mi", "VALUE:180", "N1mi" ], [ "N2", "VALUE:200", "N2" ], [ "N2NOS", "VALUE:299", "N2 NOS" ], [ "N2a", "VALUE:210", "N2a" ], [ "N2b", "VALUE:220", "N2b" ], [ "N2c", "VALUE:230", "N2c" ], [ "N3", "VALUE:300", "N3" ], [ "N3NOS", "VALUE:399", "N3 NOS" ], [ "N3a", "VALUE:310", "N3a" ], [ "N3b", "VALUE:320", "N3b" ], [ "N3c", "VALUE:330", "N3c" ], [ "N4", "VALUE:400", "N4" ], [ "NA", "VALUE:888", "Not applicable" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_codes.json
deleted file mode 100644
index d57f58c2e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc7_stage_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 7 Stage Codes",
- "title" : "AJCC 7 Stage Allowable Codes",
- "last_modified" : "2015-05-27T16:18:54.126Z",
- "definition" : [ {
- "key" : "ajcc7_stage",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc7_stage",
- "name" : "AJCC7 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "0", "VALUE:000", "Stage 0" ], [ "0a", "VALUE:010", "Stage 0a" ], [ "0is", "VALUE:020", "Stage 0is" ], [ "I", "VALUE:100", "Stage I" ], [ "INOS", "VALUE:110", "Stage I NOS" ], [ "IA", "VALUE:120", "Stage IA" ], [ "IA1", "VALUE:130", "Stage IA1" ], [ "IA2", "VALUE:140", "Stage IA2" ], [ "IANOS", "VALUE:121", "Stage IA NOS" ], [ "IB", "VALUE:150", "Stage IB" ], [ "IB1", "VALUE:160", "Stage IB1" ], [ "IB2", "VALUE:170", "Stage IB2" ], [ "IBNOS", "VALUE:151", "Stage IB NOS" ], [ "IC", "VALUE:180", "Stage IC" ], [ "IS", "VALUE:190", "Stage IS" ], [ "ISA", "VALUE:230", "Stage ISA (lymphoma only)" ], [ "ISB", "VALUE:240", "Stage ISB (lymphoma only)" ], [ "IEA", "VALUE:200", "Stage IEA (lymphoma only)" ], [ "IEB", "VALUE:210", "Stage IEB (lymphoma only)" ], [ "IE", "VALUE:220", "Stage IE (lymphoma only)" ], [ "II", "VALUE:300", "Stage II" ], [ "IINOS", "VALUE:310", "Stage II NOS" ], [ "IIA", "VALUE:320", "Stage IIA" ], [ "IIANOS", "VALUE:321", "Stage IIA NOS" ], [ "IIA1", "VALUE:322", "Stage IIA1" ], [ "IIA2", "VALUE:323", "Stage IIA2" ], [ "IIB", "VALUE:330", "Stage IIB" ], [ "IIC", "VALUE:340", "Stage IIC" ], [ "IIEA", "VALUE:350", "Stage IIEA (lymphoma only)" ], [ "IIEB", "VALUE:360", "Stage IIEB (lymphoma only)" ], [ "IIE", "VALUE:370", "Stage IIE (lymphoma only)" ], [ "IISA", "VALUE:380", "Stage IISA (lymphoma only)" ], [ "IISB", "VALUE:390", "Stage IISB (lymphoma only)" ], [ "IIS", "VALUE:400", "Stage IIS (lymphoma only)" ], [ "IIESA", "VALUE:410", "Stage IIESA (lymphoma only)" ], [ "IIESB", "VALUE:420", "Stage IIESB (lymphoma only)" ], [ "IIES", "VALUE:430", "Stage IIES (lymphoma only)" ], [ "III", "VALUE:500", "Stage III" ], [ "IIINOS", "VALUE:510", "Stage III NOS" ], [ "IIIA", "VALUE:520", "Stage IIIA" ], [ "IIIB", "VALUE:530", "Stage IIIB" ], [ "IIIC", "VALUE:540", "Stage IIIC" ], [ "IIIC1", "VALUE:541", "Stage IIIC1" ], [ "IIIC2", "VALUE:542", "Stage IIIC2" ], [ "IIIEA", "VALUE:550", "Stage IIIEA (lymphoma only)" ], [ "IIIEB", "VALUE:560", "Stage IIIEB (lymphoma only)" ], [ "IIIE", "VALUE:570", "Stage IIIE (lymphoma only)" ], [ "IIISA", "VALUE:580", "Stage IIISA (lymphoma only)" ], [ "IIISB", "VALUE:590", "Stage IIISB (lymphoma only)" ], [ "IIIS", "VALUE:600", "Stage IIIS (lymphoma only)" ], [ "IIIESA", "VALUE:610", "Stage IIIESA (lymphoma only)" ], [ "IIIESB", "VALUE:620", "Stage IIIESB (lymphoma only)" ], [ "IIIES", "VALUE:630", "Stage IIIES (lymphoma only)" ], [ "IV", "VALUE:700", "Stage IV" ], [ "IVNOS", "VALUE:710", "Stage IV NOS" ], [ "IVA", "VALUE:720", "Stage IVA" ], [ "IVA1", "VALUE:721", "Stage IVA1" ], [ "IVA2", "VALUE:722", "Stage IVA2" ], [ "IVB", "VALUE:730", "Stage IVB" ], [ "IVC", "VALUE:740", "Stage IVC" ], [ "NA", "VALUE:888", "Not applicable" ], [ "OCCULT", "VALUE:900", "Stage Occult" ], [ "UNK", "VALUE:999", "Stage Unknown" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_not_ewing_ube.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_not_ewing_ube.json
deleted file mode 100644
index bf9bf45ac..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_not_ewing_ube.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_not_ewing_ube",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage Not Ewing",
- "last_modified" : "2015-05-27T16:18:54.182Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "4", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N1", "M0", "1", "VALUE:IVB" ], [ "T0", "N1", "M0", "2", "VALUE:IVB" ], [ "T0", "N1", "M0", "3", "VALUE:IVB" ], [ "T0", "N1", "M0", "4", "VALUE:IVB" ], [ "T0", "N1", "M0", "9", "VALUE:IVB" ], [ "T0", "NX", "M0", "1", "ERROR:" ], [ "T0", "NX", "M0", "2", "ERROR:" ], [ "T0", "NX", "M0", "3", "ERROR:" ], [ "T0", "NX", "M0", "4", "ERROR:" ], [ "T0", "NX", "M0", "9", "ERROR:" ], [ "T1", "N0", "M0", "1", "VALUE:IA" ], [ "T1", "N0", "M0", "2", "VALUE:IA" ], [ "T1", "N0", "M0", "3", "VALUE:IIA" ], [ "T1", "N0", "M0", "4", "VALUE:IIA" ], [ "T1", "N0", "M0", "9", "VALUE:IA" ], [ "T1", "N1", "M0", "1", "VALUE:IVB" ], [ "T1", "N1", "M0", "2", "VALUE:IVB" ], [ "T1", "N1", "M0", "3", "VALUE:IVB" ], [ "T1", "N1", "M0", "4", "VALUE:IVB" ], [ "T1", "N1", "M0", "9", "VALUE:IVB" ], [ "T1", "NX", "M0", "1", "VALUE:IA" ], [ "T1", "NX", "M0", "2", "VALUE:IA" ], [ "T1", "NX", "M0", "3", "VALUE:IIA" ], [ "T1", "NX", "M0", "4", "VALUE:IIA" ], [ "T1", "NX", "M0", "9", "VALUE:IA" ], [ "T2", "N0", "M0", "1", "VALUE:IB" ], [ "T2", "N0", "M0", "2", "VALUE:IB" ], [ "T2", "N0", "M0", "3", "VALUE:IIB" ], [ "T2", "N0", "M0", "4", "VALUE:IIB" ], [ "T2", "N0", "M0", "9", "VALUE:IB" ], [ "T2", "N1", "M0", "1", "VALUE:IVB" ], [ "T2", "N1", "M0", "2", "VALUE:IVB" ], [ "T2", "N1", "M0", "3", "VALUE:IVB" ], [ "T2", "N1", "M0", "4", "VALUE:IVB" ], [ "T2", "N1", "M0", "9", "VALUE:IVB" ], [ "T2", "NX", "M0", "1", "VALUE:IB" ], [ "T2", "NX", "M0", "2", "VALUE:IB" ], [ "T2", "NX", "M0", "3", "VALUE:IIB" ], [ "T2", "NX", "M0", "4", "VALUE:IIB" ], [ "T2", "NX", "M0", "9", "VALUE:IB" ], [ "T3", "N0", "M0", "1", "VALUE:IB" ], [ "T3", "N0", "M0", "2", "VALUE:IB" ], [ "T3", "N0", "M0", "3", "VALUE:III" ], [ "T3", "N0", "M0", "4", "VALUE:III" ], [ "T3", "N0", "M0", "9", "VALUE:IB" ], [ "T3", "N1", "M0", "1", "VALUE:IVB" ], [ "T3", "N1", "M0", "2", "VALUE:IVB" ], [ "T3", "N1", "M0", "3", "VALUE:IVB" ], [ "T3", "N1", "M0", "4", "VALUE:IVB" ], [ "T3", "N1", "M0", "9", "VALUE:IVB" ], [ "T3", "NX", "M0", "1", "VALUE:IB" ], [ "T3", "NX", "M0", "2", "VALUE:IB" ], [ "T3", "NX", "M0", "3", "VALUE:III" ], [ "T3", "NX", "M0", "4", "VALUE:III" ], [ "T3", "NX", "M0", "9", "VALUE:IB" ], [ "TX", "N0", "M0", "1", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:UNK" ], [ "TX", "N1", "M0", "1", "VALUE:IVB" ], [ "TX", "N1", "M0", "2", "VALUE:IVB" ], [ "TX", "N1", "M0", "3", "VALUE:IVB" ], [ "TX", "N1", "M0", "4", "VALUE:IVB" ], [ "TX", "N1", "M0", "9", "VALUE:IVB" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "N0", "M1a", "1", "VALUE:IVA" ], [ "T0", "N0", "M1a", "2", "VALUE:IVA" ], [ "T0", "N0", "M1a", "3", "VALUE:IVA" ], [ "T0", "N0", "M1a", "4", "VALUE:IVA" ], [ "T0", "N0", "M1a", "9", "VALUE:IVA" ], [ "T0", "N1", "M1a", "1", "VALUE:IVB" ], [ "T0", "N1", "M1a", "2", "VALUE:IVB" ], [ "T0", "N1", "M1a", "3", "VALUE:IVB" ], [ "T0", "N1", "M1a", "4", "VALUE:IVB" ], [ "T0", "N1", "M1a", "9", "VALUE:IVB" ], [ "T0", "NX", "M1a", "1", "VALUE:IVA" ], [ "T0", "NX", "M1a", "2", "VALUE:IVA" ], [ "T0", "NX", "M1a", "3", "VALUE:IVA" ], [ "T0", "NX", "M1a", "4", "VALUE:IVA" ], [ "T0", "NX", "M1a", "9", "VALUE:IVA" ], [ "T1", "N0", "M1a", "1", "VALUE:IVA" ], [ "T1", "N0", "M1a", "2", "VALUE:IVA" ], [ "T1", "N0", "M1a", "3", "VALUE:IVA" ], [ "T1", "N0", "M1a", "4", "VALUE:IVA" ], [ "T1", "N0", "M1a", "9", "VALUE:IVA" ], [ "T1", "N1", "M1a", "1", "VALUE:IVB" ], [ "T1", "N1", "M1a", "2", "VALUE:IVB" ], [ "T1", "N1", "M1a", "3", "VALUE:IVB" ], [ "T1", "N1", "M1a", "4", "VALUE:IVB" ], [ "T1", "N1", "M1a", "9", "VALUE:IVB" ], [ "T1", "NX", "M1a", "1", "VALUE:IVA" ], [ "T1", "NX", "M1a", "2", "VALUE:IVA" ], [ "T1", "NX", "M1a", "3", "VALUE:IVA" ], [ "T1", "NX", "M1a", "4", "VALUE:IVA" ], [ "T1", "NX", "M1a", "9", "VALUE:IVA" ], [ "T2", "N0", "M1a", "1", "VALUE:IVA" ], [ "T2", "N0", "M1a", "2", "VALUE:IVA" ], [ "T2", "N0", "M1a", "3", "VALUE:IVA" ], [ "T2", "N0", "M1a", "4", "VALUE:IVA" ], [ "T2", "N0", "M1a", "9", "VALUE:IVA" ], [ "T2", "N1", "M1a", "1", "VALUE:IVB" ], [ "T2", "N1", "M1a", "2", "VALUE:IVB" ], [ "T2", "N1", "M1a", "3", "VALUE:IVB" ], [ "T2", "N1", "M1a", "4", "VALUE:IVB" ], [ "T2", "N1", "M1a", "9", "VALUE:IVB" ], [ "T2", "NX", "M1a", "1", "VALUE:IVA" ], [ "T2", "NX", "M1a", "2", "VALUE:IVA" ], [ "T2", "NX", "M1a", "3", "VALUE:IVA" ], [ "T2", "NX", "M1a", "4", "VALUE:IVA" ], [ "T2", "NX", "M1a", "9", "VALUE:IVA" ], [ "T3", "N0", "M1a", "1", "VALUE:IVA" ], [ "T3", "N0", "M1a", "2", "VALUE:IVA" ], [ "T3", "N0", "M1a", "3", "VALUE:IVA" ], [ "T3", "N0", "M1a", "4", "VALUE:IVA" ], [ "T3", "N0", "M1a", "9", "VALUE:IVA" ], [ "T3", "N1", "M1a", "1", "VALUE:IVB" ], [ "T3", "N1", "M1a", "2", "VALUE:IVB" ], [ "T3", "N1", "M1a", "3", "VALUE:IVB" ], [ "T3", "N1", "M1a", "4", "VALUE:IVB" ], [ "T3", "N1", "M1a", "9", "VALUE:IVB" ], [ "T3", "NX", "M1a", "1", "VALUE:IVA" ], [ "T3", "NX", "M1a", "2", "VALUE:IVA" ], [ "T3", "NX", "M1a", "3", "VALUE:IVA" ], [ "T3", "NX", "M1a", "4", "VALUE:IVA" ], [ "T3", "NX", "M1a", "9", "VALUE:IVA" ], [ "TX", "N0", "M1a", "1", "VALUE:IVA" ], [ "TX", "N0", "M1a", "2", "VALUE:IVA" ], [ "TX", "N0", "M1a", "3", "VALUE:IVA" ], [ "TX", "N0", "M1a", "4", "VALUE:IVA" ], [ "TX", "N0", "M1a", "9", "VALUE:IVA" ], [ "TX", "N1", "M1a", "1", "VALUE:IVB" ], [ "TX", "N1", "M1a", "2", "VALUE:IVB" ], [ "TX", "N1", "M1a", "3", "VALUE:IVB" ], [ "TX", "N1", "M1a", "4", "VALUE:IVB" ], [ "TX", "N1", "M1a", "9", "VALUE:IVB" ], [ "TX", "NX", "M1a", "1", "VALUE:IVA" ], [ "TX", "NX", "M1a", "2", "VALUE:IVA" ], [ "TX", "NX", "M1a", "3", "VALUE:IVA" ], [ "TX", "NX", "M1a", "4", "VALUE:IVA" ], [ "TX", "NX", "M1a", "9", "VALUE:IVA" ], [ "T0", "N0", "M1b", "1", "VALUE:IVB" ], [ "T0", "N0", "M1b", "2", "VALUE:IVB" ], [ "T0", "N0", "M1b", "3", "VALUE:IVB" ], [ "T0", "N0", "M1b", "4", "VALUE:IVB" ], [ "T0", "N0", "M1b", "9", "VALUE:IVB" ], [ "T0", "N1", "M1b", "1", "VALUE:IVB" ], [ "T0", "N1", "M1b", "2", "VALUE:IVB" ], [ "T0", "N1", "M1b", "3", "VALUE:IVB" ], [ "T0", "N1", "M1b", "4", "VALUE:IVB" ], [ "T0", "N1", "M1b", "9", "VALUE:IVB" ], [ "T0", "NX", "M1b", "1", "VALUE:IVB" ], [ "T0", "NX", "M1b", "2", "VALUE:IVB" ], [ "T0", "NX", "M1b", "3", "VALUE:IVB" ], [ "T0", "NX", "M1b", "4", "VALUE:IVB" ], [ "T0", "NX", "M1b", "9", "VALUE:IVB" ], [ "T1", "N0", "M1b", "1", "VALUE:IVB" ], [ "T1", "N0", "M1b", "2", "VALUE:IVB" ], [ "T1", "N0", "M1b", "3", "VALUE:IVB" ], [ "T1", "N0", "M1b", "4", "VALUE:IVB" ], [ "T1", "N0", "M1b", "9", "VALUE:IVB" ], [ "T1", "N1", "M1b", "1", "VALUE:IVB" ], [ "T1", "N1", "M1b", "2", "VALUE:IVB" ], [ "T1", "N1", "M1b", "3", "VALUE:IVB" ], [ "T1", "N1", "M1b", "4", "VALUE:IVB" ], [ "T1", "N1", "M1b", "9", "VALUE:IVB" ], [ "T1", "NX", "M1b", "1", "VALUE:IVB" ], [ "T1", "NX", "M1b", "2", "VALUE:IVB" ], [ "T1", "NX", "M1b", "3", "VALUE:IVB" ], [ "T1", "NX", "M1b", "4", "VALUE:IVB" ], [ "T1", "NX", "M1b", "9", "VALUE:IVB" ], [ "T2", "N0", "M1b", "1", "VALUE:IVB" ], [ "T2", "N0", "M1b", "2", "VALUE:IVB" ], [ "T2", "N0", "M1b", "3", "VALUE:IVB" ], [ "T2", "N0", "M1b", "4", "VALUE:IVB" ], [ "T2", "N0", "M1b", "9", "VALUE:IVB" ], [ "T2", "N1", "M1b", "1", "VALUE:IVB" ], [ "T2", "N1", "M1b", "2", "VALUE:IVB" ], [ "T2", "N1", "M1b", "3", "VALUE:IVB" ], [ "T2", "N1", "M1b", "4", "VALUE:IVB" ], [ "T2", "N1", "M1b", "9", "VALUE:IVB" ], [ "T2", "NX", "M1b", "1", "VALUE:IVB" ], [ "T2", "NX", "M1b", "2", "VALUE:IVB" ], [ "T2", "NX", "M1b", "3", "VALUE:IVB" ], [ "T2", "NX", "M1b", "4", "VALUE:IVB" ], [ "T2", "NX", "M1b", "9", "VALUE:IVB" ], [ "T3", "N0", "M1b", "1", "VALUE:IVB" ], [ "T3", "N0", "M1b", "2", "VALUE:IVB" ], [ "T3", "N0", "M1b", "3", "VALUE:IVB" ], [ "T3", "N0", "M1b", "4", "VALUE:IVB" ], [ "T3", "N0", "M1b", "9", "VALUE:IVB" ], [ "T3", "N1", "M1b", "1", "VALUE:IVB" ], [ "T3", "N1", "M1b", "2", "VALUE:IVB" ], [ "T3", "N1", "M1b", "3", "VALUE:IVB" ], [ "T3", "N1", "M1b", "4", "VALUE:IVB" ], [ "T3", "N1", "M1b", "9", "VALUE:IVB" ], [ "T3", "NX", "M1b", "1", "VALUE:IVB" ], [ "T3", "NX", "M1b", "2", "VALUE:IVB" ], [ "T3", "NX", "M1b", "3", "VALUE:IVB" ], [ "T3", "NX", "M1b", "4", "VALUE:IVB" ], [ "T3", "NX", "M1b", "9", "VALUE:IVB" ], [ "TX", "N0", "M1b", "1", "VALUE:IVB" ], [ "TX", "N0", "M1b", "2", "VALUE:IVB" ], [ "TX", "N0", "M1b", "3", "VALUE:IVB" ], [ "TX", "N0", "M1b", "4", "VALUE:IVB" ], [ "TX", "N0", "M1b", "9", "VALUE:IVB" ], [ "TX", "N1", "M1b", "1", "VALUE:IVB" ], [ "TX", "N1", "M1b", "2", "VALUE:IVB" ], [ "TX", "N1", "M1b", "3", "VALUE:IVB" ], [ "TX", "N1", "M1b", "4", "VALUE:IVB" ], [ "TX", "N1", "M1b", "9", "VALUE:IVB" ], [ "TX", "NX", "M1b", "1", "VALUE:IVB" ], [ "TX", "NX", "M1b", "2", "VALUE:IVB" ], [ "TX", "NX", "M1b", "3", "VALUE:IVB" ], [ "TX", "NX", "M1b", "4", "VALUE:IVB" ], [ "TX", "NX", "M1b", "9", "VALUE:IVB" ], [ "T0", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T0", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T0", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T1", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T1", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T2", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T2", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "T3", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "T3", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "9", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "1", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "2", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "3", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "4", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "9", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "1", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "2", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "3", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "4", "VALUE:IVB" ], [ "TX", "N1", "M1NOS", "9", "VALUE:IVB" ], [ "TX", "NX", "M1NOS", "1", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "2", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "3", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "4", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "9", "VALUE:IVNOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaa.json
deleted file mode 100644
index bc6d3a4ba..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaa.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uaa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.310Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uab.json
deleted file mode 100644
index 6c3b2de36..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uab.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.399Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "VALUE:IIIB" ], [ "T0", "N3", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIA" ], [ "T1", "N2", "M0", "VALUE:IIIB" ], [ "T1", "N3", "M0", "VALUE:IIIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IIIA" ], [ "T2", "N2", "M0", "VALUE:IIIB" ], [ "T2", "N3", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIB" ], [ "T3", "N3", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "N2", "M0", "VALUE:IIIB" ], [ "T4", "N3", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "VALUE:IIIB" ], [ "TX", "N3", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uac.json
deleted file mode 100644
index cec9098c4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uac.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.473Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N0(i-)", "M0", "ERROR:" ], [ "T0", "N0(i+)", "M0", "ERROR:" ], [ "T0", "N0(mol-)", "M0", "ERROR:" ], [ "T0", "N0(mol+)", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIA" ], [ "T0", "N1a", "M0", "VALUE:IIA" ], [ "T0", "N1b", "M0", "VALUE:IIA" ], [ "T0", "N1c", "M0", "VALUE:IIA" ], [ "T0", "N1mi", "M0", "VALUE:IB" ], [ "T0", "N1NOS", "M0", "VALUE:IIA" ], [ "T0", "N2a", "M0", "VALUE:IIIA" ], [ "T0", "N2b", "M0", "VALUE:IIIA" ], [ "T0", "N2NOS", "M0", "VALUE:IIIA" ], [ "T0", "N3a", "M0", "VALUE:IIIC" ], [ "T0", "N3b", "M0", "VALUE:IIIC" ], [ "T0", "N3c", "M0", "VALUE:IIIC" ], [ "T0", "N3NOS", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N0(i-)", "M0", "VALUE:0" ], [ "Tis", "N0(i+)", "M0", "VALUE:0" ], [ "Tis", "N0(mol-)", "M0", "VALUE:0" ], [ "Tis", "N0(mol+)", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N1a", "M0", "ERROR:" ], [ "Tis", "N1b", "M0", "ERROR:" ], [ "Tis", "N1c", "M0", "ERROR:" ], [ "Tis", "N1mi", "M0", "ERROR:" ], [ "Tis", "N1NOS", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3a", "M0", "ERROR:" ], [ "Tis", "N3b", "M0", "ERROR:" ], [ "Tis", "N3c", "M0", "ERROR:" ], [ "Tis", "N3NOS", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1mi", "N0", "M0", "VALUE:IA" ], [ "T1mi", "N0(i-)", "M0", "VALUE:IA" ], [ "T1mi", "N0(i+)", "M0", "VALUE:IA" ], [ "T1mi", "N0(mol-)", "M0", "VALUE:IA" ], [ "T1mi", "N0(mol+)", "M0", "VALUE:IA" ], [ "T1mi", "N1", "M0", "VALUE:IIA" ], [ "T1mi", "N1a", "M0", "VALUE:IIA" ], [ "T1mi", "N1b", "M0", "VALUE:IIA" ], [ "T1mi", "N1c", "M0", "VALUE:IIA" ], [ "T1mi", "N1mi", "M0", "VALUE:IB" ], [ "T1mi", "N1NOS", "M0", "VALUE:IIA" ], [ "T1mi", "N2a", "M0", "VALUE:IIIA" ], [ "T1mi", "N2b", "M0", "VALUE:IIIA" ], [ "T1mi", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1mi", "N3a", "M0", "VALUE:IIIC" ], [ "T1mi", "N3b", "M0", "VALUE:IIIC" ], [ "T1mi", "N3c", "M0", "VALUE:IIIC" ], [ "T1mi", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1mi", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N0(i-)", "M0", "VALUE:IA" ], [ "T1a", "N0(i+)", "M0", "VALUE:IA" ], [ "T1a", "N0(mol-)", "M0", "VALUE:IA" ], [ "T1a", "N0(mol+)", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "VALUE:IIA" ], [ "T1a", "N1c", "M0", "VALUE:IIA" ], [ "T1a", "N1mi", "M0", "VALUE:IB" ], [ "T1a", "N1NOS", "M0", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "VALUE:IIIA" ], [ "T1a", "N2b", "M0", "VALUE:IIIA" ], [ "T1a", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1a", "N3a", "M0", "VALUE:IIIC" ], [ "T1a", "N3b", "M0", "VALUE:IIIC" ], [ "T1a", "N3c", "M0", "VALUE:IIIC" ], [ "T1a", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IA" ], [ "T1b", "N0(i-)", "M0", "VALUE:IA" ], [ "T1b", "N0(i+)", "M0", "VALUE:IA" ], [ "T1b", "N0(mol-)", "M0", "VALUE:IA" ], [ "T1b", "N0(mol+)", "M0", "VALUE:IA" ], [ "T1b", "N1", "M0", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "VALUE:IIA" ], [ "T1b", "N1c", "M0", "VALUE:IIA" ], [ "T1b", "N1mi", "M0", "VALUE:IB" ], [ "T1b", "N1NOS", "M0", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "VALUE:IIIA" ], [ "T1b", "N2b", "M0", "VALUE:IIIA" ], [ "T1b", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1b", "N3a", "M0", "VALUE:IIIC" ], [ "T1b", "N3b", "M0", "VALUE:IIIC" ], [ "T1b", "N3c", "M0", "VALUE:IIIC" ], [ "T1b", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IA" ], [ "T1c", "N0(i-)", "M0", "VALUE:IA" ], [ "T1c", "N0(i+)", "M0", "VALUE:IA" ], [ "T1c", "N0(mol-)", "M0", "VALUE:IA" ], [ "T1c", "N0(mol+)", "M0", "VALUE:IA" ], [ "T1c", "N1", "M0", "VALUE:IIA" ], [ "T1c", "N1a", "M0", "VALUE:IIA" ], [ "T1c", "N1b", "M0", "VALUE:IIA" ], [ "T1c", "N1c", "M0", "VALUE:IIA" ], [ "T1c", "N1mi", "M0", "VALUE:IB" ], [ "T1c", "N1NOS", "M0", "VALUE:IIA" ], [ "T1c", "N2a", "M0", "VALUE:IIIA" ], [ "T1c", "N2b", "M0", "VALUE:IIIA" ], [ "T1c", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1c", "N3a", "M0", "VALUE:IIIC" ], [ "T1c", "N3b", "M0", "VALUE:IIIC" ], [ "T1c", "N3c", "M0", "VALUE:IIIC" ], [ "T1c", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:IA" ], [ "T1NOS", "N0(i-)", "M0", "VALUE:IA" ], [ "T1NOS", "N0(i+)", "M0", "VALUE:IA" ], [ "T1NOS", "N0(mol-)", "M0", "VALUE:IA" ], [ "T1NOS", "N0(mol+)", "M0", "VALUE:IA" ], [ "T1NOS", "N1", "M0", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "VALUE:IIA" ], [ "T1NOS", "N1c", "M0", "VALUE:IIA" ], [ "T1NOS", "N1mi", "M0", "VALUE:IB" ], [ "T1NOS", "N1NOS", "M0", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "VALUE:IIIA" ], [ "T1NOS", "N2b", "M0", "VALUE:IIIA" ], [ "T1NOS", "N2NOS", "M0", "VALUE:IIIA" ], [ "T1NOS", "N3a", "M0", "VALUE:IIIC" ], [ "T1NOS", "N3b", "M0", "VALUE:IIIC" ], [ "T1NOS", "N3c", "M0", "VALUE:IIIC" ], [ "T1NOS", "N3NOS", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IIA" ], [ "T2", "N0(i-)", "M0", "VALUE:IIA" ], [ "T2", "N0(i+)", "M0", "VALUE:IIA" ], [ "T2", "N0(mol-)", "M0", "VALUE:IIA" ], [ "T2", "N0(mol+)", "M0", "VALUE:IIA" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "N1a", "M0", "VALUE:IIB" ], [ "T2", "N1b", "M0", "VALUE:IIB" ], [ "T2", "N1c", "M0", "VALUE:IIB" ], [ "T2", "N1mi", "M0", "VALUE:IIB" ], [ "T2", "N1NOS", "M0", "VALUE:IIB" ], [ "T2", "N2a", "M0", "VALUE:IIIA" ], [ "T2", "N2b", "M0", "VALUE:IIIA" ], [ "T2", "N2NOS", "M0", "VALUE:IIIA" ], [ "T2", "N3a", "M0", "VALUE:IIIC" ], [ "T2", "N3b", "M0", "VALUE:IIIC" ], [ "T2", "N3c", "M0", "VALUE:IIIC" ], [ "T2", "N3NOS", "M0", "VALUE:IIIC" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N0(i-)", "M0", "VALUE:IIB" ], [ "T3", "N0(i+)", "M0", "VALUE:IIB" ], [ "T3", "N0(mol-)", "M0", "VALUE:IIB" ], [ "T3", "N0(mol+)", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N1a", "M0", "VALUE:IIIA" ], [ "T3", "N1b", "M0", "VALUE:IIIA" ], [ "T3", "N1c", "M0", "VALUE:IIIA" ], [ "T3", "N1mi", "M0", "VALUE:IIIA" ], [ "T3", "N1NOS", "M0", "VALUE:IIIA" ], [ "T3", "N2a", "M0", "VALUE:IIIA" ], [ "T3", "N2b", "M0", "VALUE:IIIA" ], [ "T3", "N2NOS", "M0", "VALUE:IIIA" ], [ "T3", "N3a", "M0", "VALUE:IIIC" ], [ "T3", "N3b", "M0", "VALUE:IIIC" ], [ "T3", "N3c", "M0", "VALUE:IIIC" ], [ "T3", "N3NOS", "M0", "VALUE:IIIC" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IIIB" ], [ "T4a", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4a", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4a", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4a", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4a", "N1", "M0", "VALUE:IIIB" ], [ "T4a", "N1a", "M0", "VALUE:IIIB" ], [ "T4a", "N1b", "M0", "VALUE:IIIB" ], [ "T4a", "N1c", "M0", "VALUE:IIIB" ], [ "T4a", "N1mi", "M0", "VALUE:IIIB" ], [ "T4a", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4a", "N2a", "M0", "VALUE:IIIB" ], [ "T4a", "N2b", "M0", "VALUE:IIIB" ], [ "T4a", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4a", "N3a", "M0", "VALUE:IIIC" ], [ "T4a", "N3b", "M0", "VALUE:IIIC" ], [ "T4a", "N3c", "M0", "VALUE:IIIC" ], [ "T4a", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4a", "NX", "M0", "VALUE:IIINOS" ], [ "T4b", "N0", "M0", "VALUE:IIIB" ], [ "T4b", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4b", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4b", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4b", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "VALUE:IIIB" ], [ "T4b", "N1a", "M0", "VALUE:IIIB" ], [ "T4b", "N1b", "M0", "VALUE:IIIB" ], [ "T4b", "N1c", "M0", "VALUE:IIIB" ], [ "T4b", "N1mi", "M0", "VALUE:IIIB" ], [ "T4b", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4b", "N2a", "M0", "VALUE:IIIB" ], [ "T4b", "N2b", "M0", "VALUE:IIIB" ], [ "T4b", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4b", "N3a", "M0", "VALUE:IIIC" ], [ "T4b", "N3b", "M0", "VALUE:IIIC" ], [ "T4b", "N3c", "M0", "VALUE:IIIC" ], [ "T4b", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "VALUE:IIINOS" ], [ "T4c", "N0", "M0", "VALUE:IIIB" ], [ "T4c", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4c", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4c", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4c", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4c", "N1", "M0", "VALUE:IIIB" ], [ "T4c", "N1a", "M0", "VALUE:IIIB" ], [ "T4c", "N1b", "M0", "VALUE:IIIB" ], [ "T4c", "N1c", "M0", "VALUE:IIIB" ], [ "T4c", "N1mi", "M0", "VALUE:IIIB" ], [ "T4c", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4c", "N2a", "M0", "VALUE:IIIB" ], [ "T4c", "N2b", "M0", "VALUE:IIIB" ], [ "T4c", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4c", "N3a", "M0", "VALUE:IIIC" ], [ "T4c", "N3b", "M0", "VALUE:IIIC" ], [ "T4c", "N3c", "M0", "VALUE:IIIC" ], [ "T4c", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4c", "NX", "M0", "VALUE:IIINOS" ], [ "T4d", "N0", "M0", "VALUE:IIIB" ], [ "T4d", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4d", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4d", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4d", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4d", "N1", "M0", "VALUE:IIIB" ], [ "T4d", "N1a", "M0", "VALUE:IIIB" ], [ "T4d", "N1b", "M0", "VALUE:IIIB" ], [ "T4d", "N1c", "M0", "VALUE:IIIB" ], [ "T4d", "N1mi", "M0", "VALUE:IIIB" ], [ "T4d", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4d", "N2a", "M0", "VALUE:IIIB" ], [ "T4d", "N2b", "M0", "VALUE:IIIB" ], [ "T4d", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4d", "N3a", "M0", "VALUE:IIIC" ], [ "T4d", "N3b", "M0", "VALUE:IIIC" ], [ "T4d", "N3c", "M0", "VALUE:IIIC" ], [ "T4d", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4d", "NX", "M0", "VALUE:IIINOS" ], [ "T4NOS", "N0", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(i-)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(i+)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(mol-)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N0(mol+)", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1a", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1b", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1c", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1mi", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4NOS", "N2a", "M0", "VALUE:IIIB" ], [ "T4NOS", "N2b", "M0", "VALUE:IIIB" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IIIB" ], [ "T4NOS", "N3a", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3b", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3c", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N0(i-)", "M0", "VALUE:UNK" ], [ "TX", "N0(i+)", "M0", "VALUE:UNK" ], [ "TX", "N0(mol-)", "M0", "VALUE:UNK" ], [ "TX", "N0(mol+)", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M0", "VALUE:UNK" ], [ "TX", "N1b", "M0", "VALUE:UNK" ], [ "TX", "N1c", "M0", "VALUE:UNK" ], [ "TX", "N1mi", "M0", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IIINOS" ], [ "TX", "N2b", "M0", "VALUE:IIINOS" ], [ "TX", "N2NOS", "M0", "VALUE:IIINOS" ], [ "TX", "N3a", "M0", "VALUE:IIIC" ], [ "TX", "N3b", "M0", "VALUE:IIIC" ], [ "TX", "N3c", "M0", "VALUE:IIIC" ], [ "TX", "N3NOS", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M0(i+)", "ERROR:" ], [ "T0", "N0(i-)", "M0(i+)", "ERROR:" ], [ "T0", "N0(i+)", "M0(i+)", "ERROR:" ], [ "T0", "N0(mol-)", "M0(i+)", "ERROR:" ], [ "T0", "N0(mol+)", "M0(i+)", "ERROR:" ], [ "T0", "N1", "M0(i+)", "VALUE:IIA" ], [ "T0", "N1a", "M0(i+)", "VALUE:IIA" ], [ "T0", "N1b", "M0(i+)", "VALUE:IIA" ], [ "T0", "N1c", "M0(i+)", "VALUE:IIA" ], [ "T0", "N1mi", "M0(i+)", "VALUE:IB" ], [ "T0", "N1NOS", "M0(i+)", "VALUE:IIA" ], [ "T0", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T0", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T0", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T0", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T0", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T0", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T0", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T0", "NX", "M0(i+)", "VALUE:UNK" ], [ "Tis", "N0", "M0(i+)", "VALUE:0" ], [ "Tis", "N0(i-)", "M0(i+)", "VALUE:0" ], [ "Tis", "N0(i+)", "M0(i+)", "VALUE:0" ], [ "Tis", "N0(mol-)", "M0(i+)", "VALUE:0" ], [ "Tis", "N0(mol+)", "M0(i+)", "VALUE:0" ], [ "Tis", "N1", "M0(i+)", "ERROR:" ], [ "Tis", "N1a", "M0(i+)", "ERROR:" ], [ "Tis", "N1b", "M0(i+)", "ERROR:" ], [ "Tis", "N1c", "M0(i+)", "ERROR:" ], [ "Tis", "N1mi", "M0(i+)", "ERROR:" ], [ "Tis", "N1NOS", "M0(i+)", "ERROR:" ], [ "Tis", "N2a", "M0(i+)", "ERROR:" ], [ "Tis", "N2b", "M0(i+)", "ERROR:" ], [ "Tis", "N2NOS", "M0(i+)", "ERROR:" ], [ "Tis", "N3a", "M0(i+)", "ERROR:" ], [ "Tis", "N3b", "M0(i+)", "ERROR:" ], [ "Tis", "N3c", "M0(i+)", "ERROR:" ], [ "Tis", "N3NOS", "M0(i+)", "ERROR:" ], [ "Tis", "NX", "M0(i+)", "VALUE:0" ], [ "T1mi", "N0", "M0(i+)", "VALUE:IA" ], [ "T1mi", "N0(i-)", "M0(i+)", "VALUE:IA" ], [ "T1mi", "N0(i+)", "M0(i+)", "VALUE:IA" ], [ "T1mi", "N0(mol-)", "M0(i+)", "VALUE:IA" ], [ "T1mi", "N0(mol+)", "M0(i+)", "VALUE:IA" ], [ "T1mi", "N1", "M0(i+)", "VALUE:IIA" ], [ "T1mi", "N1a", "M0(i+)", "VALUE:IIA" ], [ "T1mi", "N1b", "M0(i+)", "VALUE:IIA" ], [ "T1mi", "N1c", "M0(i+)", "VALUE:IIA" ], [ "T1mi", "N1mi", "M0(i+)", "VALUE:IB" ], [ "T1mi", "N1NOS", "M0(i+)", "VALUE:IIA" ], [ "T1mi", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T1mi", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T1mi", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T1mi", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T1mi", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T1mi", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T1mi", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T1mi", "NX", "M0(i+)", "VALUE:UNK" ], [ "T1a", "N0", "M0(i+)", "VALUE:IA" ], [ "T1a", "N0(i-)", "M0(i+)", "VALUE:IA" ], [ "T1a", "N0(i+)", "M0(i+)", "VALUE:IA" ], [ "T1a", "N0(mol-)", "M0(i+)", "VALUE:IA" ], [ "T1a", "N0(mol+)", "M0(i+)", "VALUE:IA" ], [ "T1a", "N1", "M0(i+)", "VALUE:IIA" ], [ "T1a", "N1a", "M0(i+)", "VALUE:IIA" ], [ "T1a", "N1b", "M0(i+)", "VALUE:IIA" ], [ "T1a", "N1c", "M0(i+)", "VALUE:IIA" ], [ "T1a", "N1mi", "M0(i+)", "VALUE:IB" ], [ "T1a", "N1NOS", "M0(i+)", "VALUE:IIA" ], [ "T1a", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T1a", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T1a", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T1a", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T1a", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T1a", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T1a", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T1a", "NX", "M0(i+)", "VALUE:UNK" ], [ "T1b", "N0", "M0(i+)", "VALUE:IA" ], [ "T1b", "N0(i-)", "M0(i+)", "VALUE:IA" ], [ "T1b", "N0(i+)", "M0(i+)", "VALUE:IA" ], [ "T1b", "N0(mol-)", "M0(i+)", "VALUE:IA" ], [ "T1b", "N0(mol+)", "M0(i+)", "VALUE:IA" ], [ "T1b", "N1", "M0(i+)", "VALUE:IIA" ], [ "T1b", "N1a", "M0(i+)", "VALUE:IIA" ], [ "T1b", "N1b", "M0(i+)", "VALUE:IIA" ], [ "T1b", "N1c", "M0(i+)", "VALUE:IIA" ], [ "T1b", "N1mi", "M0(i+)", "VALUE:IB" ], [ "T1b", "N1NOS", "M0(i+)", "VALUE:IIA" ], [ "T1b", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T1b", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T1b", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T1b", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T1b", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T1b", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T1b", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T1b", "NX", "M0(i+)", "VALUE:UNK" ], [ "T1c", "N0", "M0(i+)", "VALUE:IA" ], [ "T1c", "N0(i-)", "M0(i+)", "VALUE:IA" ], [ "T1c", "N0(i+)", "M0(i+)", "VALUE:IA" ], [ "T1c", "N0(mol-)", "M0(i+)", "VALUE:IA" ], [ "T1c", "N0(mol+)", "M0(i+)", "VALUE:IA" ], [ "T1c", "N1", "M0(i+)", "VALUE:IIA" ], [ "T1c", "N1a", "M0(i+)", "VALUE:IIA" ], [ "T1c", "N1b", "M0(i+)", "VALUE:IIA" ], [ "T1c", "N1c", "M0(i+)", "VALUE:IIA" ], [ "T1c", "N1mi", "M0(i+)", "VALUE:IB" ], [ "T1c", "N1NOS", "M0(i+)", "VALUE:IIA" ], [ "T1c", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T1c", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T1c", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T1c", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T1c", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T1c", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T1c", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T1c", "NX", "M0(i+)", "VALUE:UNK" ], [ "T1NOS", "N0", "M0(i+)", "VALUE:IA" ], [ "T1NOS", "N0(i-)", "M0(i+)", "VALUE:IA" ], [ "T1NOS", "N0(i+)", "M0(i+)", "VALUE:IA" ], [ "T1NOS", "N0(mol-)", "M0(i+)", "VALUE:IA" ], [ "T1NOS", "N0(mol+)", "M0(i+)", "VALUE:IA" ], [ "T1NOS", "N1", "M0(i+)", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0(i+)", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0(i+)", "VALUE:IIA" ], [ "T1NOS", "N1c", "M0(i+)", "VALUE:IIA" ], [ "T1NOS", "N1mi", "M0(i+)", "VALUE:IB" ], [ "T1NOS", "N1NOS", "M0(i+)", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T1NOS", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T1NOS", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T1NOS", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T1NOS", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T1NOS", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T1NOS", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0(i+)", "VALUE:UNK" ], [ "T2", "N0", "M0(i+)", "VALUE:IIA" ], [ "T2", "N0(i-)", "M0(i+)", "VALUE:IIA" ], [ "T2", "N0(i+)", "M0(i+)", "VALUE:IIA" ], [ "T2", "N0(mol-)", "M0(i+)", "VALUE:IIA" ], [ "T2", "N0(mol+)", "M0(i+)", "VALUE:IIA" ], [ "T2", "N1", "M0(i+)", "VALUE:IIB" ], [ "T2", "N1a", "M0(i+)", "VALUE:IIB" ], [ "T2", "N1b", "M0(i+)", "VALUE:IIB" ], [ "T2", "N1c", "M0(i+)", "VALUE:IIB" ], [ "T2", "N1mi", "M0(i+)", "VALUE:IIB" ], [ "T2", "N1NOS", "M0(i+)", "VALUE:IIB" ], [ "T2", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T2", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T2", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T2", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T2", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T2", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T2", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T2", "NX", "M0(i+)", "VALUE:UNK" ], [ "T3", "N0", "M0(i+)", "VALUE:IIB" ], [ "T3", "N0(i-)", "M0(i+)", "VALUE:IIB" ], [ "T3", "N0(i+)", "M0(i+)", "VALUE:IIB" ], [ "T3", "N0(mol-)", "M0(i+)", "VALUE:IIB" ], [ "T3", "N0(mol+)", "M0(i+)", "VALUE:IIB" ], [ "T3", "N1", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N1a", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N1b", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N1c", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N1mi", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N1NOS", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N2a", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N2b", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N2NOS", "M0(i+)", "VALUE:IIIA" ], [ "T3", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T3", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T3", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T3", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T3", "NX", "M0(i+)", "VALUE:UNK" ], [ "T4a", "N0", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N0(i-)", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N0(i+)", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N0(mol-)", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N0(mol+)", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N1", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N1a", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N1b", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N1c", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N1mi", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N1NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N2a", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N2b", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N2NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4a", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T4a", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T4a", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T4a", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T4a", "NX", "M0(i+)", "VALUE:IIINOS" ], [ "T4b", "N0", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N0(i-)", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N0(i+)", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N0(mol-)", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N0(mol+)", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N1", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N1a", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N1b", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N1c", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N1mi", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N1NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N2a", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N2b", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N2NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4b", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T4b", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T4b", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T4b", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T4b", "NX", "M0(i+)", "VALUE:IIINOS" ], [ "T4c", "N0", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N0(i-)", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N0(i+)", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N0(mol-)", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N0(mol+)", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N1", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N1a", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N1b", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N1c", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N1mi", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N1NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N2a", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N2b", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N2NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4c", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T4c", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T4c", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T4c", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T4c", "NX", "M0(i+)", "VALUE:IIINOS" ], [ "T4d", "N0", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N0(i-)", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N0(i+)", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N0(mol-)", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N0(mol+)", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N1", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N1a", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N1b", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N1c", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N1mi", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N1NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N2a", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N2b", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N2NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4d", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T4d", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T4d", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T4d", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T4d", "NX", "M0(i+)", "VALUE:IIINOS" ], [ "T4NOS", "N0", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N0(i-)", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N0(i+)", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N0(mol-)", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N0(mol+)", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N1", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N1a", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N1b", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N1c", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N1mi", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N1NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N2a", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N2b", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N2NOS", "M0(i+)", "VALUE:IIIB" ], [ "T4NOS", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "T4NOS", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "T4NOS", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "T4NOS", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0(i+)", "VALUE:IIINOS" ], [ "TX", "N0", "M0(i+)", "VALUE:UNK" ], [ "TX", "N0(i-)", "M0(i+)", "VALUE:UNK" ], [ "TX", "N0(i+)", "M0(i+)", "VALUE:UNK" ], [ "TX", "N0(mol-)", "M0(i+)", "VALUE:UNK" ], [ "TX", "N0(mol+)", "M0(i+)", "VALUE:UNK" ], [ "TX", "N1", "M0(i+)", "VALUE:UNK" ], [ "TX", "N1a", "M0(i+)", "VALUE:UNK" ], [ "TX", "N1b", "M0(i+)", "VALUE:UNK" ], [ "TX", "N1c", "M0(i+)", "VALUE:UNK" ], [ "TX", "N1mi", "M0(i+)", "VALUE:UNK" ], [ "TX", "N1NOS", "M0(i+)", "VALUE:UNK" ], [ "TX", "N2a", "M0(i+)", "VALUE:IIINOS" ], [ "TX", "N2b", "M0(i+)", "VALUE:IIINOS" ], [ "TX", "N2NOS", "M0(i+)", "VALUE:IIINOS" ], [ "TX", "N3a", "M0(i+)", "VALUE:IIIC" ], [ "TX", "N3b", "M0(i+)", "VALUE:IIIC" ], [ "TX", "N3c", "M0(i+)", "VALUE:IIIC" ], [ "TX", "N3NOS", "M0(i+)", "VALUE:IIIC" ], [ "TX", "NX", "M0(i+)", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N0(i-)", "M1", "VALUE:IV" ], [ "T0", "N0(i+)", "M1", "VALUE:IV" ], [ "T0", "N0(mol-)", "M1", "VALUE:IV" ], [ "T0", "N0(mol+)", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N1a", "M1", "VALUE:IV" ], [ "T0", "N1b", "M1", "VALUE:IV" ], [ "T0", "N1c", "M1", "VALUE:IV" ], [ "T0", "N1mi", "M1", "VALUE:IV" ], [ "T0", "N1NOS", "M1", "VALUE:IV" ], [ "T0", "N2a", "M1", "VALUE:IV" ], [ "T0", "N2b", "M1", "VALUE:IV" ], [ "T0", "N2NOS", "M1", "VALUE:IV" ], [ "T0", "N3a", "M1", "VALUE:IV" ], [ "T0", "N3b", "M1", "VALUE:IV" ], [ "T0", "N3c", "M1", "VALUE:IV" ], [ "T0", "N3NOS", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N0(i-)", "M1", "ERROR:" ], [ "Tis", "N0(i+)", "M1", "ERROR:" ], [ "Tis", "N0(mol-)", "M1", "ERROR:" ], [ "Tis", "N0(mol+)", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N1a", "M1", "ERROR:" ], [ "Tis", "N1b", "M1", "ERROR:" ], [ "Tis", "N1c", "M1", "ERROR:" ], [ "Tis", "N1mi", "M1", "ERROR:" ], [ "Tis", "N1NOS", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3a", "M1", "ERROR:" ], [ "Tis", "N3b", "M1", "ERROR:" ], [ "Tis", "N3c", "M1", "ERROR:" ], [ "Tis", "N3NOS", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1mi", "N0", "M1", "VALUE:IV" ], [ "T1mi", "N0(i-)", "M1", "VALUE:IV" ], [ "T1mi", "N0(i+)", "M1", "VALUE:IV" ], [ "T1mi", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1mi", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1mi", "N1", "M1", "VALUE:IV" ], [ "T1mi", "N1a", "M1", "VALUE:IV" ], [ "T1mi", "N1b", "M1", "VALUE:IV" ], [ "T1mi", "N1c", "M1", "VALUE:IV" ], [ "T1mi", "N1mi", "M1", "VALUE:IV" ], [ "T1mi", "N1NOS", "M1", "VALUE:IV" ], [ "T1mi", "N2a", "M1", "VALUE:IV" ], [ "T1mi", "N2b", "M1", "VALUE:IV" ], [ "T1mi", "N2NOS", "M1", "VALUE:IV" ], [ "T1mi", "N3a", "M1", "VALUE:IV" ], [ "T1mi", "N3b", "M1", "VALUE:IV" ], [ "T1mi", "N3c", "M1", "VALUE:IV" ], [ "T1mi", "N3NOS", "M1", "VALUE:IV" ], [ "T1mi", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N0(i-)", "M1", "VALUE:IV" ], [ "T1a", "N0(i+)", "M1", "VALUE:IV" ], [ "T1a", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1a", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N1a", "M1", "VALUE:IV" ], [ "T1a", "N1b", "M1", "VALUE:IV" ], [ "T1a", "N1c", "M1", "VALUE:IV" ], [ "T1a", "N1mi", "M1", "VALUE:IV" ], [ "T1a", "N1NOS", "M1", "VALUE:IV" ], [ "T1a", "N2a", "M1", "VALUE:IV" ], [ "T1a", "N2b", "M1", "VALUE:IV" ], [ "T1a", "N2NOS", "M1", "VALUE:IV" ], [ "T1a", "N3a", "M1", "VALUE:IV" ], [ "T1a", "N3b", "M1", "VALUE:IV" ], [ "T1a", "N3c", "M1", "VALUE:IV" ], [ "T1a", "N3NOS", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N0(i-)", "M1", "VALUE:IV" ], [ "T1b", "N0(i+)", "M1", "VALUE:IV" ], [ "T1b", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1b", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N1a", "M1", "VALUE:IV" ], [ "T1b", "N1b", "M1", "VALUE:IV" ], [ "T1b", "N1c", "M1", "VALUE:IV" ], [ "T1b", "N1mi", "M1", "VALUE:IV" ], [ "T1b", "N1NOS", "M1", "VALUE:IV" ], [ "T1b", "N2a", "M1", "VALUE:IV" ], [ "T1b", "N2b", "M1", "VALUE:IV" ], [ "T1b", "N2NOS", "M1", "VALUE:IV" ], [ "T1b", "N3a", "M1", "VALUE:IV" ], [ "T1b", "N3b", "M1", "VALUE:IV" ], [ "T1b", "N3c", "M1", "VALUE:IV" ], [ "T1b", "N3NOS", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N0(i-)", "M1", "VALUE:IV" ], [ "T1c", "N0(i+)", "M1", "VALUE:IV" ], [ "T1c", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1c", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "N1a", "M1", "VALUE:IV" ], [ "T1c", "N1b", "M1", "VALUE:IV" ], [ "T1c", "N1c", "M1", "VALUE:IV" ], [ "T1c", "N1mi", "M1", "VALUE:IV" ], [ "T1c", "N1NOS", "M1", "VALUE:IV" ], [ "T1c", "N2a", "M1", "VALUE:IV" ], [ "T1c", "N2b", "M1", "VALUE:IV" ], [ "T1c", "N2NOS", "M1", "VALUE:IV" ], [ "T1c", "N3a", "M1", "VALUE:IV" ], [ "T1c", "N3b", "M1", "VALUE:IV" ], [ "T1c", "N3c", "M1", "VALUE:IV" ], [ "T1c", "N3NOS", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N0(i-)", "M1", "VALUE:IV" ], [ "T1NOS", "N0(i+)", "M1", "VALUE:IV" ], [ "T1NOS", "N0(mol-)", "M1", "VALUE:IV" ], [ "T1NOS", "N0(mol+)", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N1a", "M1", "VALUE:IV" ], [ "T1NOS", "N1b", "M1", "VALUE:IV" ], [ "T1NOS", "N1c", "M1", "VALUE:IV" ], [ "T1NOS", "N1mi", "M1", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1", "VALUE:IV" ], [ "T1NOS", "N2a", "M1", "VALUE:IV" ], [ "T1NOS", "N2b", "M1", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1", "VALUE:IV" ], [ "T1NOS", "N3a", "M1", "VALUE:IV" ], [ "T1NOS", "N3b", "M1", "VALUE:IV" ], [ "T1NOS", "N3c", "M1", "VALUE:IV" ], [ "T1NOS", "N3NOS", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N0(i-)", "M1", "VALUE:IV" ], [ "T2", "N0(i+)", "M1", "VALUE:IV" ], [ "T2", "N0(mol-)", "M1", "VALUE:IV" ], [ "T2", "N0(mol+)", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N1a", "M1", "VALUE:IV" ], [ "T2", "N1b", "M1", "VALUE:IV" ], [ "T2", "N1c", "M1", "VALUE:IV" ], [ "T2", "N1mi", "M1", "VALUE:IV" ], [ "T2", "N1NOS", "M1", "VALUE:IV" ], [ "T2", "N2a", "M1", "VALUE:IV" ], [ "T2", "N2b", "M1", "VALUE:IV" ], [ "T2", "N2NOS", "M1", "VALUE:IV" ], [ "T2", "N3a", "M1", "VALUE:IV" ], [ "T2", "N3b", "M1", "VALUE:IV" ], [ "T2", "N3c", "M1", "VALUE:IV" ], [ "T2", "N3NOS", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N0(i-)", "M1", "VALUE:IV" ], [ "T3", "N0(i+)", "M1", "VALUE:IV" ], [ "T3", "N0(mol-)", "M1", "VALUE:IV" ], [ "T3", "N0(mol+)", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N1a", "M1", "VALUE:IV" ], [ "T3", "N1b", "M1", "VALUE:IV" ], [ "T3", "N1c", "M1", "VALUE:IV" ], [ "T3", "N1mi", "M1", "VALUE:IV" ], [ "T3", "N1NOS", "M1", "VALUE:IV" ], [ "T3", "N2a", "M1", "VALUE:IV" ], [ "T3", "N2b", "M1", "VALUE:IV" ], [ "T3", "N2NOS", "M1", "VALUE:IV" ], [ "T3", "N3a", "M1", "VALUE:IV" ], [ "T3", "N3b", "M1", "VALUE:IV" ], [ "T3", "N3c", "M1", "VALUE:IV" ], [ "T3", "N3NOS", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4a", "N0", "M1", "VALUE:IV" ], [ "T4a", "N0(i-)", "M1", "VALUE:IV" ], [ "T4a", "N0(i+)", "M1", "VALUE:IV" ], [ "T4a", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4a", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4a", "N1", "M1", "VALUE:IV" ], [ "T4a", "N1a", "M1", "VALUE:IV" ], [ "T4a", "N1b", "M1", "VALUE:IV" ], [ "T4a", "N1c", "M1", "VALUE:IV" ], [ "T4a", "N1mi", "M1", "VALUE:IV" ], [ "T4a", "N1NOS", "M1", "VALUE:IV" ], [ "T4a", "N2a", "M1", "VALUE:IV" ], [ "T4a", "N2b", "M1", "VALUE:IV" ], [ "T4a", "N2NOS", "M1", "VALUE:IV" ], [ "T4a", "N3a", "M1", "VALUE:IV" ], [ "T4a", "N3b", "M1", "VALUE:IV" ], [ "T4a", "N3c", "M1", "VALUE:IV" ], [ "T4a", "N3NOS", "M1", "VALUE:IV" ], [ "T4a", "NX", "M1", "VALUE:IV" ], [ "T4b", "N0", "M1", "VALUE:IV" ], [ "T4b", "N0(i-)", "M1", "VALUE:IV" ], [ "T4b", "N0(i+)", "M1", "VALUE:IV" ], [ "T4b", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4b", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4b", "N1", "M1", "VALUE:IV" ], [ "T4b", "N1a", "M1", "VALUE:IV" ], [ "T4b", "N1b", "M1", "VALUE:IV" ], [ "T4b", "N1c", "M1", "VALUE:IV" ], [ "T4b", "N1mi", "M1", "VALUE:IV" ], [ "T4b", "N1NOS", "M1", "VALUE:IV" ], [ "T4b", "N2a", "M1", "VALUE:IV" ], [ "T4b", "N2b", "M1", "VALUE:IV" ], [ "T4b", "N2NOS", "M1", "VALUE:IV" ], [ "T4b", "N3a", "M1", "VALUE:IV" ], [ "T4b", "N3b", "M1", "VALUE:IV" ], [ "T4b", "N3c", "M1", "VALUE:IV" ], [ "T4b", "N3NOS", "M1", "VALUE:IV" ], [ "T4b", "NX", "M1", "VALUE:IV" ], [ "T4c", "N0", "M1", "VALUE:IV" ], [ "T4c", "N0(i-)", "M1", "VALUE:IV" ], [ "T4c", "N0(i+)", "M1", "VALUE:IV" ], [ "T4c", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4c", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4c", "N1", "M1", "VALUE:IV" ], [ "T4c", "N1a", "M1", "VALUE:IV" ], [ "T4c", "N1b", "M1", "VALUE:IV" ], [ "T4c", "N1c", "M1", "VALUE:IV" ], [ "T4c", "N1mi", "M1", "VALUE:IV" ], [ "T4c", "N1NOS", "M1", "VALUE:IV" ], [ "T4c", "N2a", "M1", "VALUE:IV" ], [ "T4c", "N2b", "M1", "VALUE:IV" ], [ "T4c", "N2NOS", "M1", "VALUE:IV" ], [ "T4c", "N3a", "M1", "VALUE:IV" ], [ "T4c", "N3b", "M1", "VALUE:IV" ], [ "T4c", "N3c", "M1", "VALUE:IV" ], [ "T4c", "N3NOS", "M1", "VALUE:IV" ], [ "T4c", "NX", "M1", "VALUE:IV" ], [ "T4d", "N0", "M1", "VALUE:IV" ], [ "T4d", "N0(i-)", "M1", "VALUE:IV" ], [ "T4d", "N0(i+)", "M1", "VALUE:IV" ], [ "T4d", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4d", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4d", "N1", "M1", "VALUE:IV" ], [ "T4d", "N1a", "M1", "VALUE:IV" ], [ "T4d", "N1b", "M1", "VALUE:IV" ], [ "T4d", "N1c", "M1", "VALUE:IV" ], [ "T4d", "N1mi", "M1", "VALUE:IV" ], [ "T4d", "N1NOS", "M1", "VALUE:IV" ], [ "T4d", "N2a", "M1", "VALUE:IV" ], [ "T4d", "N2b", "M1", "VALUE:IV" ], [ "T4d", "N2NOS", "M1", "VALUE:IV" ], [ "T4d", "N3a", "M1", "VALUE:IV" ], [ "T4d", "N3b", "M1", "VALUE:IV" ], [ "T4d", "N3c", "M1", "VALUE:IV" ], [ "T4d", "N3NOS", "M1", "VALUE:IV" ], [ "T4d", "NX", "M1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "VALUE:IV" ], [ "T4NOS", "N0(i-)", "M1", "VALUE:IV" ], [ "T4NOS", "N0(i+)", "M1", "VALUE:IV" ], [ "T4NOS", "N0(mol-)", "M1", "VALUE:IV" ], [ "T4NOS", "N0(mol+)", "M1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "VALUE:IV" ], [ "T4NOS", "N1a", "M1", "VALUE:IV" ], [ "T4NOS", "N1b", "M1", "VALUE:IV" ], [ "T4NOS", "N1c", "M1", "VALUE:IV" ], [ "T4NOS", "N1mi", "M1", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IV" ], [ "T4NOS", "N2a", "M1", "VALUE:IV" ], [ "T4NOS", "N2b", "M1", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IV" ], [ "T4NOS", "N3a", "M1", "VALUE:IV" ], [ "T4NOS", "N3b", "M1", "VALUE:IV" ], [ "T4NOS", "N3c", "M1", "VALUE:IV" ], [ "T4NOS", "N3NOS", "M1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N0(i-)", "M1", "VALUE:IV" ], [ "TX", "N0(i+)", "M1", "VALUE:IV" ], [ "TX", "N0(mol-)", "M1", "VALUE:IV" ], [ "TX", "N0(mol+)", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N1a", "M1", "VALUE:IV" ], [ "TX", "N1b", "M1", "VALUE:IV" ], [ "TX", "N1c", "M1", "VALUE:IV" ], [ "TX", "N1mi", "M1", "VALUE:IV" ], [ "TX", "N1NOS", "M1", "VALUE:IV" ], [ "TX", "N2a", "M1", "VALUE:IV" ], [ "TX", "N2b", "M1", "VALUE:IV" ], [ "TX", "N2NOS", "M1", "VALUE:IV" ], [ "TX", "N3a", "M1", "VALUE:IV" ], [ "TX", "N3b", "M1", "VALUE:IV" ], [ "TX", "N3c", "M1", "VALUE:IV" ], [ "TX", "N3NOS", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uad.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uad.json
deleted file mode 100644
index 6d10aa05c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uad.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uad",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.642Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IIA" ], [ "T1b", "N1", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IIA" ], [ "T1c", "N1", "M0", "VALUE:IV" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:UNK" ], [ "T1NOS", "N1", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IIA" ], [ "T2NOS", "N1", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIB" ], [ "T3a", "N1", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:IIB" ], [ "T3NOS", "N1", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IIIA" ], [ "T4a", "N1", "M0", "VALUE:IV" ], [ "T4a", "NX", "M0", "VALUE:UNK" ], [ "T4b", "N0", "M0", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "VALUE:IV" ], [ "T4b", "NX", "M0", "VALUE:UNK" ], [ "T4NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T4NOS", "N1", "M0", "VALUE:IV" ], [ "T4NOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1a", "VALUE:IV" ], [ "T0", "N1", "M1a", "VALUE:IV" ], [ "T0", "NX", "M1a", "VALUE:IV" ], [ "T1a", "N0", "M1a", "VALUE:IV" ], [ "T1a", "N1", "M1a", "VALUE:IV" ], [ "T1a", "NX", "M1a", "VALUE:IV" ], [ "T1b", "N0", "M1a", "VALUE:IV" ], [ "T1b", "N1", "M1a", "VALUE:IV" ], [ "T1b", "NX", "M1a", "VALUE:IV" ], [ "T1c", "N0", "M1a", "VALUE:IV" ], [ "T1c", "N1", "M1a", "VALUE:IV" ], [ "T1c", "NX", "M1a", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "VALUE:IV" ], [ "T2a", "N0", "M1a", "VALUE:IV" ], [ "T2a", "N1", "M1a", "VALUE:IV" ], [ "T2a", "NX", "M1a", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "VALUE:IV" ], [ "T3a", "N0", "M1a", "VALUE:IV" ], [ "T3a", "N1", "M1a", "VALUE:IV" ], [ "T3a", "NX", "M1a", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "VALUE:IV" ], [ "T4a", "N0", "M1a", "VALUE:IV" ], [ "T4a", "N1", "M1a", "VALUE:IV" ], [ "T4a", "NX", "M1a", "VALUE:IV" ], [ "T4b", "N0", "M1a", "VALUE:IV" ], [ "T4b", "N1", "M1a", "VALUE:IV" ], [ "T4b", "NX", "M1a", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", "VALUE:IV" ], [ "TX", "N0", "M1a", "VALUE:IV" ], [ "TX", "N1", "M1a", "VALUE:IV" ], [ "TX", "NX", "M1a", "VALUE:IV" ], [ "T0", "N0", "M1b", "VALUE:IV" ], [ "T0", "N1", "M1b", "VALUE:IV" ], [ "T0", "NX", "M1b", "VALUE:IV" ], [ "T1a", "N0", "M1b", "VALUE:IV" ], [ "T1a", "N1", "M1b", "VALUE:IV" ], [ "T1a", "NX", "M1b", "VALUE:IV" ], [ "T1b", "N0", "M1b", "VALUE:IV" ], [ "T1b", "N1", "M1b", "VALUE:IV" ], [ "T1b", "NX", "M1b", "VALUE:IV" ], [ "T1c", "N0", "M1b", "VALUE:IV" ], [ "T1c", "N1", "M1b", "VALUE:IV" ], [ "T1c", "NX", "M1b", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "VALUE:IV" ], [ "T2a", "N0", "M1b", "VALUE:IV" ], [ "T2a", "N1", "M1b", "VALUE:IV" ], [ "T2a", "NX", "M1b", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "VALUE:IV" ], [ "T3a", "N0", "M1b", "VALUE:IV" ], [ "T3a", "N1", "M1b", "VALUE:IV" ], [ "T3a", "NX", "M1b", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "VALUE:IV" ], [ "T4a", "N0", "M1b", "VALUE:IV" ], [ "T4a", "N1", "M1b", "VALUE:IV" ], [ "T4a", "NX", "M1b", "VALUE:IV" ], [ "T4b", "N0", "M1b", "VALUE:IV" ], [ "T4b", "N1", "M1b", "VALUE:IV" ], [ "T4b", "NX", "M1b", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", "VALUE:IV" ], [ "TX", "N0", "M1b", "VALUE:IV" ], [ "TX", "N1", "M1b", "VALUE:IV" ], [ "TX", "NX", "M1b", "VALUE:IV" ], [ "T0", "N0", "M1c", "VALUE:IV" ], [ "T0", "N1", "M1c", "VALUE:IV" ], [ "T0", "NX", "M1c", "VALUE:IV" ], [ "T1a", "N0", "M1c", "VALUE:IV" ], [ "T1a", "N1", "M1c", "VALUE:IV" ], [ "T1a", "NX", "M1c", "VALUE:IV" ], [ "T1b", "N0", "M1c", "VALUE:IV" ], [ "T1b", "N1", "M1c", "VALUE:IV" ], [ "T1b", "NX", "M1c", "VALUE:IV" ], [ "T1c", "N0", "M1c", "VALUE:IV" ], [ "T1c", "N1", "M1c", "VALUE:IV" ], [ "T1c", "NX", "M1c", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "VALUE:IV" ], [ "T2a", "N0", "M1c", "VALUE:IV" ], [ "T2a", "N1", "M1c", "VALUE:IV" ], [ "T2a", "NX", "M1c", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "VALUE:IV" ], [ "T3a", "N0", "M1c", "VALUE:IV" ], [ "T3a", "N1", "M1c", "VALUE:IV" ], [ "T3a", "NX", "M1c", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "VALUE:IV" ], [ "T4a", "N0", "M1c", "VALUE:IV" ], [ "T4a", "N1", "M1c", "VALUE:IV" ], [ "T4a", "NX", "M1c", "VALUE:IV" ], [ "T4b", "N0", "M1c", "VALUE:IV" ], [ "T4b", "N1", "M1c", "VALUE:IV" ], [ "T4b", "NX", "M1c", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", "VALUE:IV" ], [ "TX", "N0", "M1c", "VALUE:IV" ], [ "TX", "N1", "M1c", "VALUE:IV" ], [ "TX", "NX", "M1c", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uae.json
deleted file mode 100644
index b74be168b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uae.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.711Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2", "M0", "VALUE:UNK" ], [ "T0", "N3a", "M0", "VALUE:IVB" ], [ "T0", "N3b", "M0", "VALUE:IVB" ], [ "T0", "N3NOS", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3a", "M0", "ERROR:" ], [ "Tis", "N3b", "M0", "ERROR:" ], [ "Tis", "N3NOS", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:II" ], [ "T1", "N2", "M0", "VALUE:III" ], [ "T1", "N3a", "M0", "VALUE:IVB" ], [ "T1", "N3b", "M0", "VALUE:IVB" ], [ "T1", "N3NOS", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:II" ], [ "T2", "N2", "M0", "VALUE:III" ], [ "T2", "N3a", "M0", "VALUE:IVB" ], [ "T2", "N3b", "M0", "VALUE:IVB" ], [ "T2", "N3NOS", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:III" ], [ "T3", "N3a", "M0", "VALUE:IVB" ], [ "T3", "N3b", "M0", "VALUE:IVB" ], [ "T3", "N3NOS", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "N2", "M0", "VALUE:IVA" ], [ "T4", "N3a", "M0", "VALUE:IVB" ], [ "T4", "N3b", "M0", "VALUE:IVB" ], [ "T4", "N3NOS", "M0", "VALUE:IVB" ], [ "T4", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3a", "M0", "VALUE:IVB" ], [ "TX", "N3b", "M0", "VALUE:IVB" ], [ "TX", "N3NOS", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2", "M1", "VALUE:IVC" ], [ "T0", "N3a", "M1", "VALUE:IVC" ], [ "T0", "N3b", "M1", "VALUE:IVC" ], [ "T0", "N3NOS", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3a", "M1", "ERROR:" ], [ "Tis", "N3b", "M1", "ERROR:" ], [ "Tis", "N3NOS", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N1", "M1", "VALUE:IVC" ], [ "T1", "N2", "M1", "VALUE:IVC" ], [ "T1", "N3a", "M1", "VALUE:IVC" ], [ "T1", "N3b", "M1", "VALUE:IVC" ], [ "T1", "N3NOS", "M1", "VALUE:IVC" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2", "M1", "VALUE:IVC" ], [ "T2", "N3a", "M1", "VALUE:IVC" ], [ "T2", "N3b", "M1", "VALUE:IVC" ], [ "T2", "N3NOS", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2", "M1", "VALUE:IVC" ], [ "T3", "N3a", "M1", "VALUE:IVC" ], [ "T3", "N3b", "M1", "VALUE:IVC" ], [ "T3", "N3NOS", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4", "N0", "M1", "VALUE:IVC" ], [ "T4", "N1", "M1", "VALUE:IVC" ], [ "T4", "N2", "M1", "VALUE:IVC" ], [ "T4", "N3a", "M1", "VALUE:IVC" ], [ "T4", "N3b", "M1", "VALUE:IVC" ], [ "T4", "N3NOS", "M1", "VALUE:IVC" ], [ "T4", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2", "M1", "VALUE:IVC" ], [ "TX", "N3a", "M1", "VALUE:IVC" ], [ "TX", "N3b", "M1", "VALUE:IVC" ], [ "TX", "N3NOS", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaf.json
deleted file mode 100644
index 10b0259f2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaf.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uaf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.766Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IB" ], [ "T2a", "N1", "M0", "VALUE:IIIB" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IC" ], [ "T2b", "N1", "M0", "VALUE:IIIB" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:INOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIB" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:II" ], [ "T3a", "N1", "M0", "VALUE:IIIB" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:IIIA" ], [ "T3b", "N1", "M0", "VALUE:IIIB" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N0", "M0", "VALUE:UNK" ], [ "T3NOS", "N1", "M0", "VALUE:IIIB" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIC" ], [ "T4", "N1", "M0", "VALUE:IIIC" ], [ "T4", "NX", "M0", "VALUE:IIIC" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIINOS" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uag.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uag.json
deleted file mode 100644
index e50a911a7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uag.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uag",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage-Thyroid: Papillary and Follicular Age less than 45",
- "last_modified" : "2015-05-27T16:18:54.821Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_stage",
- "name" : "Stage Table 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "VALUE:I" ], [ "T0", "N1a", "M0", "VALUE:I" ], [ "T0", "N1b", "M0", "VALUE:I" ], [ "T0", "N1NOS", "M0", "VALUE:I" ], [ "T0", "NX", "M0", "VALUE:I" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1a", "M0", "VALUE:I" ], [ "T1a", "N1b", "M0", "VALUE:I" ], [ "T1a", "N1NOS", "M0", "VALUE:I" ], [ "T1a", "NX", "M0", "VALUE:I" ], [ "T1a(s)", "N0", "M0", "VALUE:I" ], [ "T1a(s)", "N1a", "M0", "VALUE:I" ], [ "T1a(s)", "N1b", "M0", "VALUE:I" ], [ "T1a(s)", "N1NOS", "M0", "VALUE:I" ], [ "T1a(s)", "NX", "M0", "VALUE:I" ], [ "T1a(m)", "N0", "M0", "VALUE:I" ], [ "T1a(m)", "N1a", "M0", "VALUE:I" ], [ "T1a(m)", "N1b", "M0", "VALUE:I" ], [ "T1a(m)", "N1NOS", "M0", "VALUE:I" ], [ "T1a(m)", "NX", "M0", "VALUE:I" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1a", "M0", "VALUE:I" ], [ "T1b", "N1b", "M0", "VALUE:I" ], [ "T1b", "N1NOS", "M0", "VALUE:I" ], [ "T1b", "NX", "M0", "VALUE:I" ], [ "T1b(s)", "N0", "M0", "VALUE:I" ], [ "T1b(s)", "N1a", "M0", "VALUE:I" ], [ "T1b(s)", "N1b", "M0", "VALUE:I" ], [ "T1b(s)", "N1NOS", "M0", "VALUE:I" ], [ "T1b(s)", "NX", "M0", "VALUE:I" ], [ "T1b(m)", "N0", "M0", "VALUE:I" ], [ "T1b(m)", "N1a", "M0", "VALUE:I" ], [ "T1b(m)", "N1b", "M0", "VALUE:I" ], [ "T1b(m)", "N1NOS", "M0", "VALUE:I" ], [ "T1b(m)", "NX", "M0", "VALUE:I" ], [ "T1NOS(s)", "N0", "M0", "VALUE:I" ], [ "T1NOS(s)", "N1a", "M0", "VALUE:I" ], [ "T1NOS(s)", "N1b", "M0", "VALUE:I" ], [ "T1NOS(s)", "N1NOS", "M0", "VALUE:I" ], [ "T1NOS(s)", "NX", "M0", "VALUE:I" ], [ "T1NOS(m)", "N0", "M0", "VALUE:I" ], [ "T1NOS(m)", "N1a", "M0", "VALUE:I" ], [ "T1NOS(m)", "N1b", "M0", "VALUE:I" ], [ "T1NOS(m)", "N1NOS", "M0", "VALUE:I" ], [ "T1NOS(m)", "NX", "M0", "VALUE:I" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1a", "M0", "VALUE:I" ], [ "T1NOS", "N1b", "M0", "VALUE:I" ], [ "T1NOS", "N1NOS", "M0", "VALUE:I" ], [ "T1NOS", "NX", "M0", "VALUE:I" ], [ "T2", "N0", "M0", "VALUE:I" ], [ "T2", "N1a", "M0", "VALUE:I" ], [ "T2", "N1b", "M0", "VALUE:I" ], [ "T2", "N1NOS", "M0", "VALUE:I" ], [ "T2", "NX", "M0", "VALUE:I" ], [ "T2(s)", "N0", "M0", "VALUE:I" ], [ "T2(s)", "N1a", "M0", "VALUE:I" ], [ "T2(s)", "N1b", "M0", "VALUE:I" ], [ "T2(s)", "N1NOS", "M0", "VALUE:I" ], [ "T2(s)", "NX", "M0", "VALUE:I" ], [ "T2(m)", "N0", "M0", "VALUE:I" ], [ "T2(m)", "N1a", "M0", "VALUE:I" ], [ "T2(m)", "N1b", "M0", "VALUE:I" ], [ "T2(m)", "N1NOS", "M0", "VALUE:I" ], [ "T2(m)", "NX", "M0", "VALUE:I" ], [ "T3", "N0", "M0", "VALUE:I" ], [ "T3", "N1a", "M0", "VALUE:I" ], [ "T3", "N1b", "M0", "VALUE:I" ], [ "T3", "N1NOS", "M0", "VALUE:I" ], [ "T3", "NX", "M0", "VALUE:I" ], [ "T3(s)", "N0", "M0", "VALUE:I" ], [ "T3(s)", "N1a", "M0", "VALUE:I" ], [ "T3(s)", "N1b", "M0", "VALUE:I" ], [ "T3(s)", "N1NOS", "M0", "VALUE:I" ], [ "T3(s)", "NX", "M0", "VALUE:I" ], [ "T3(m)", "N0", "M0", "VALUE:I" ], [ "T3(m)", "N1a", "M0", "VALUE:I" ], [ "T3(m)", "N1b", "M0", "VALUE:I" ], [ "T3(m)", "N1NOS", "M0", "VALUE:I" ], [ "T3(m)", "NX", "M0", "VALUE:I" ], [ "T4a", "N0", "M0", "VALUE:I" ], [ "T4a", "N1a", "M0", "VALUE:I" ], [ "T4a", "N1b", "M0", "VALUE:I" ], [ "T4a", "N1NOS", "M0", "VALUE:I" ], [ "T4a", "NX", "M0", "VALUE:I" ], [ "T4a(s)", "N0", "M0", "VALUE:I" ], [ "T4a(s)", "N1a", "M0", "VALUE:I" ], [ "T4a(s)", "N1b", "M0", "VALUE:I" ], [ "T4a(s)", "N1NOS", "M0", "VALUE:I" ], [ "T4a(s)", "NX", "M0", "VALUE:I" ], [ "T4a(m)", "N0", "M0", "VALUE:I" ], [ "T4a(m)", "N1a", "M0", "VALUE:I" ], [ "T4a(m)", "N1b", "M0", "VALUE:I" ], [ "T4a(m)", "N1NOS", "M0", "VALUE:I" ], [ "T4a(m)", "NX", "M0", "VALUE:I" ], [ "T4b", "N0", "M0", "VALUE:I" ], [ "T4b", "N1a", "M0", "VALUE:I" ], [ "T4b", "N1b", "M0", "VALUE:I" ], [ "T4b", "N1NOS", "M0", "VALUE:I" ], [ "T4b", "NX", "M0", "VALUE:I" ], [ "T4b(s)", "N0", "M0", "VALUE:I" ], [ "T4b(s)", "N1a", "M0", "VALUE:I" ], [ "T4b(s)", "N1b", "M0", "VALUE:I" ], [ "T4b(s)", "N1NOS", "M0", "VALUE:I" ], [ "T4b(s)", "NX", "M0", "VALUE:I" ], [ "T4b(m)", "N0", "M0", "VALUE:I" ], [ "T4b(m)", "N1a", "M0", "VALUE:I" ], [ "T4b(m)", "N1b", "M0", "VALUE:I" ], [ "T4b(m)", "N1NOS", "M0", "VALUE:I" ], [ "T4b(m)", "NX", "M0", "VALUE:I" ], [ "T4NOS(s)", "N0", "M0", "VALUE:I" ], [ "T4NOS(s)", "N1a", "M0", "VALUE:I" ], [ "T4NOS(s)", "N1b", "M0", "VALUE:I" ], [ "T4NOS(s)", "N1NOS", "M0", "VALUE:I" ], [ "T4NOS(s)", "NX", "M0", "VALUE:I" ], [ "T4NOS(m)", "N0", "M0", "VALUE:I" ], [ "T4NOS(m)", "N1a", "M0", "VALUE:I" ], [ "T4NOS(m)", "N1b", "M0", "VALUE:I" ], [ "T4NOS(m)", "N1NOS", "M0", "VALUE:I" ], [ "T4NOS(m)", "NX", "M0", "VALUE:I" ], [ "T4NOS", "N0", "M0", "VALUE:I" ], [ "T4NOS", "N1a", "M0", "VALUE:I" ], [ "T4NOS", "N1b", "M0", "VALUE:I" ], [ "T4NOS", "N1NOS", "M0", "VALUE:I" ], [ "T4NOS", "NX", "M0", "VALUE:I" ], [ "TX", "N0", "M0", "VALUE:I" ], [ "TX", "N1a", "M0", "VALUE:I" ], [ "TX", "N1b", "M0", "VALUE:I" ], [ "TX", "N1NOS", "M0", "VALUE:I" ], [ "TX", "NX", "M0", "VALUE:I" ], [ "T0", "N0", "M1", "VALUE:II" ], [ "T0", "N1a", "M1", "VALUE:II" ], [ "T0", "N1b", "M1", "VALUE:II" ], [ "T0", "N1NOS", "M1", "VALUE:II" ], [ "T0", "NX", "M1", "VALUE:II" ], [ "T1a", "N0", "M1", "VALUE:II" ], [ "T1a", "N1a", "M1", "VALUE:II" ], [ "T1a", "N1b", "M1", "VALUE:II" ], [ "T1a", "N1NOS", "M1", "VALUE:II" ], [ "T1a", "NX", "M1", "VALUE:II" ], [ "T1a(s)", "N0", "M1", "VALUE:II" ], [ "T1a(s)", "N1a", "M1", "VALUE:II" ], [ "T1a(s)", "N1b", "M1", "VALUE:II" ], [ "T1a(s)", "N1NOS", "M1", "VALUE:II" ], [ "T1a(s)", "NX", "M1", "VALUE:II" ], [ "T1a(m)", "N0", "M1", "VALUE:II" ], [ "T1a(m)", "N1a", "M1", "VALUE:II" ], [ "T1a(m)", "N1b", "M1", "VALUE:II" ], [ "T1a(m)", "N1NOS", "M1", "VALUE:II" ], [ "T1a(m)", "NX", "M1", "VALUE:II" ], [ "T1b", "N0", "M1", "VALUE:II" ], [ "T1b", "N1a", "M1", "VALUE:II" ], [ "T1b", "N1b", "M1", "VALUE:II" ], [ "T1b", "N1NOS", "M1", "VALUE:II" ], [ "T1b", "NX", "M1", "VALUE:II" ], [ "T1b(s)", "N0", "M1", "VALUE:II" ], [ "T1b(s)", "N1a", "M1", "VALUE:II" ], [ "T1b(s)", "N1b", "M1", "VALUE:II" ], [ "T1b(s)", "N1NOS", "M1", "VALUE:II" ], [ "T1b(s)", "NX", "M1", "VALUE:II" ], [ "T1b(m)", "N0", "M1", "VALUE:II" ], [ "T1b(m)", "N1a", "M1", "VALUE:II" ], [ "T1b(m)", "N1b", "M1", "VALUE:II" ], [ "T1b(m)", "N1NOS", "M1", "VALUE:II" ], [ "T1b(m)", "NX", "M1", "VALUE:II" ], [ "T1NOS(s)", "N0", "M1", "VALUE:II" ], [ "T1NOS(s)", "N1a", "M1", "VALUE:II" ], [ "T1NOS(s)", "N1b", "M1", "VALUE:II" ], [ "T1NOS(s)", "N1NOS", "M1", "VALUE:II" ], [ "T1NOS(s)", "NX", "M1", "VALUE:II" ], [ "T1NOS(m)", "N0", "M1", "VALUE:II" ], [ "T1NOS(m)", "N1a", "M1", "VALUE:II" ], [ "T1NOS(m)", "N1b", "M1", "VALUE:II" ], [ "T1NOS(m)", "N1NOS", "M1", "VALUE:II" ], [ "T1NOS(m)", "NX", "M1", "VALUE:II" ], [ "T1NOS", "N0", "M1", "VALUE:II" ], [ "T1NOS", "N1a", "M1", "VALUE:II" ], [ "T1NOS", "N1b", "M1", "VALUE:II" ], [ "T1NOS", "N1NOS", "M1", "VALUE:II" ], [ "T1NOS", "NX", "M1", "VALUE:II" ], [ "T2", "N0", "M1", "VALUE:II" ], [ "T2", "N1a", "M1", "VALUE:II" ], [ "T2", "N1b", "M1", "VALUE:II" ], [ "T2", "N1NOS", "M1", "VALUE:II" ], [ "T2", "NX", "M1", "VALUE:II" ], [ "T2(s)", "N0", "M1", "VALUE:II" ], [ "T2(s)", "N1a", "M1", "VALUE:II" ], [ "T2(s)", "N1b", "M1", "VALUE:II" ], [ "T2(s)", "N1NOS", "M1", "VALUE:II" ], [ "T2(s)", "NX", "M1", "VALUE:II" ], [ "T2(m)", "N0", "M1", "VALUE:II" ], [ "T2(m)", "N1a", "M1", "VALUE:II" ], [ "T2(m)", "N1b", "M1", "VALUE:II" ], [ "T2(m)", "N1NOS", "M1", "VALUE:II" ], [ "T2(m)", "NX", "M1", "VALUE:II" ], [ "T3", "N0", "M1", "VALUE:II" ], [ "T3", "N1a", "M1", "VALUE:II" ], [ "T3", "N1b", "M1", "VALUE:II" ], [ "T3", "N1NOS", "M1", "VALUE:II" ], [ "T3", "NX", "M1", "VALUE:II" ], [ "T3(s)", "N0", "M1", "VALUE:II" ], [ "T3(s)", "N1a", "M1", "VALUE:II" ], [ "T3(s)", "N1b", "M1", "VALUE:II" ], [ "T3(s)", "N1NOS", "M1", "VALUE:II" ], [ "T3(s)", "NX", "M1", "VALUE:II" ], [ "T3(m)", "N0", "M1", "VALUE:II" ], [ "T3(m)", "N1a", "M1", "VALUE:II" ], [ "T3(m)", "N1b", "M1", "VALUE:II" ], [ "T3(m)", "N1NOS", "M1", "VALUE:II" ], [ "T3(m)", "NX", "M1", "VALUE:II" ], [ "T4a", "N0", "M1", "VALUE:II" ], [ "T4a", "N1a", "M1", "VALUE:II" ], [ "T4a", "N1b", "M1", "VALUE:II" ], [ "T4a", "N1NOS", "M1", "VALUE:II" ], [ "T4a", "NX", "M1", "VALUE:II" ], [ "T4a(s)", "N0", "M1", "VALUE:II" ], [ "T4a(s)", "N1a", "M1", "VALUE:II" ], [ "T4a(s)", "N1b", "M1", "VALUE:II" ], [ "T4a(s)", "N1NOS", "M1", "VALUE:II" ], [ "T4a(s)", "NX", "M1", "VALUE:II" ], [ "T4a(m)", "N0", "M1", "VALUE:II" ], [ "T4a(m)", "N1a", "M1", "VALUE:II" ], [ "T4a(m)", "N1b", "M1", "VALUE:II" ], [ "T4a(m)", "N1NOS", "M1", "VALUE:II" ], [ "T4a(m)", "NX", "M1", "VALUE:II" ], [ "T4b", "N0", "M1", "VALUE:II" ], [ "T4b", "N1a", "M1", "VALUE:II" ], [ "T4b", "N1b", "M1", "VALUE:II" ], [ "T4b", "N1NOS", "M1", "VALUE:II" ], [ "T4b", "NX", "M1", "VALUE:II" ], [ "T4b(s)", "N0", "M1", "VALUE:II" ], [ "T4b(s)", "N1a", "M1", "VALUE:II" ], [ "T4b(s)", "N1b", "M1", "VALUE:II" ], [ "T4b(s)", "N1NOS", "M1", "VALUE:II" ], [ "T4b(s)", "NX", "M1", "VALUE:II" ], [ "T4b(m)", "N0", "M1", "VALUE:II" ], [ "T4b(m)", "N1a", "M1", "VALUE:II" ], [ "T4b(m)", "N1b", "M1", "VALUE:II" ], [ "T4b(m)", "N1NOS", "M1", "VALUE:II" ], [ "T4b(m)", "NX", "M1", "VALUE:II" ], [ "T4NOS(s)", "N0", "M1", "VALUE:II" ], [ "T4NOS(s)", "N1a", "M1", "VALUE:II" ], [ "T4NOS(s)", "N1b", "M1", "VALUE:II" ], [ "T4NOS(s)", "N1NOS", "M1", "VALUE:II" ], [ "T4NOS(s)", "NX", "M1", "VALUE:II" ], [ "T4NOS(m)", "N0", "M1", "VALUE:II" ], [ "T4NOS(m)", "N1a", "M1", "VALUE:II" ], [ "T4NOS(m)", "N1b", "M1", "VALUE:II" ], [ "T4NOS(m)", "N1NOS", "M1", "VALUE:II" ], [ "T4NOS(m)", "NX", "M1", "VALUE:II" ], [ "T4NOS", "N0", "M1", "VALUE:II" ], [ "T4NOS", "N1a", "M1", "VALUE:II" ], [ "T4NOS", "N1b", "M1", "VALUE:II" ], [ "T4NOS", "N1NOS", "M1", "VALUE:II" ], [ "T4NOS", "NX", "M1", "VALUE:II" ], [ "TX", "N0", "M1", "VALUE:II" ], [ "TX", "N1a", "M1", "VALUE:II" ], [ "TX", "N1b", "M1", "VALUE:II" ], [ "TX", "N1NOS", "M1", "VALUE:II" ], [ "TX", "NX", "M1", "VALUE:II" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uak.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uak.json
deleted file mode 100644
index 2f04f0a24..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uak.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uak",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.906Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:III" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ual.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ual.json
deleted file mode 100644
index e833928e3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ual.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ual",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:54.958Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIA" ], [ "T0", "N2", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "VALUE:IIIB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "VALUE:IIIB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "VALUE:IIIB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:I" ], [ "T2", "N1", "M0", "VALUE:IIIA" ], [ "T2", "N2", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIB" ], [ "T4", "N1", "M0", "VALUE:IIIA" ], [ "T4", "N2", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIA" ], [ "TX", "N2", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N2", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N2", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uam.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uam.json
deleted file mode 100644
index b04ff376e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uam.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uam",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.008Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2", "M0", "VALUE:UNK" ], [ "T0", "N3a", "M0", "VALUE:UNK" ], [ "T0", "N3b", "M0", "VALUE:UNK" ], [ "T0", "N3NOS", "M0", "VALUE:UNK" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3a", "M0", "ERROR:" ], [ "Tis", "N3b", "M0", "ERROR:" ], [ "Tis", "N3NOS", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IB" ], [ "T1a", "N2", "M0", "VALUE:IIA" ], [ "T1a", "N3a", "M0", "VALUE:IIB" ], [ "T1a", "N3b", "M0", "VALUE:IIB" ], [ "T1a", "N3NOS", "M0", "VALUE:IIB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IA" ], [ "T1b", "N1", "M0", "VALUE:IB" ], [ "T1b", "N2", "M0", "VALUE:IIA" ], [ "T1b", "N3a", "M0", "VALUE:IIB" ], [ "T1b", "N3b", "M0", "VALUE:IIB" ], [ "T1b", "N3NOS", "M0", "VALUE:IIB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:IA" ], [ "T1NOS", "N1", "M0", "VALUE:IB" ], [ "T1NOS", "N2", "M0", "VALUE:IIA" ], [ "T1NOS", "N3a", "M0", "VALUE:IIB" ], [ "T1NOS", "N3b", "M0", "VALUE:IIB" ], [ "T1NOS", "N3NOS", "M0", "VALUE:IIB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIA" ], [ "T2", "N2", "M0", "VALUE:IIB" ], [ "T2", "N3a", "M0", "VALUE:IIIA" ], [ "T2", "N3b", "M0", "VALUE:IIIA" ], [ "T2", "N3NOS", "M0", "VALUE:IIIA" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "N2", "M0", "VALUE:IIIA" ], [ "T3", "N3a", "M0", "VALUE:IIIB" ], [ "T3", "N3b", "M0", "VALUE:IIIB" ], [ "T3", "N3NOS", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IIB" ], [ "T4a", "N1", "M0", "VALUE:IIIA" ], [ "T4a", "N2", "M0", "VALUE:IIIB" ], [ "T4a", "N3a", "M0", "VALUE:IIIC" ], [ "T4a", "N3b", "M0", "VALUE:IIIC" ], [ "T4a", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4a", "NX", "M0", "VALUE:UNK" ], [ "T4b", "N0", "M0", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "VALUE:IIIB" ], [ "T4b", "N2", "M0", "VALUE:IIIC" ], [ "T4b", "N3a", "M0", "VALUE:IIIC" ], [ "T4b", "N3b", "M0", "VALUE:IIIC" ], [ "T4b", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "VALUE:IIINOS" ], [ "T4NOS", "N0", "M0", "VALUE:IIB" ], [ "T4NOS", "N1", "M0", "VALUE:IIIA" ], [ "T4NOS", "N2", "M0", "VALUE:IIINOS" ], [ "T4NOS", "N3a", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3b", "M0", "VALUE:IIIC" ], [ "T4NOS", "N3NOS", "M0", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3a", "M0", "VALUE:UNK" ], [ "TX", "N3b", "M0", "VALUE:UNK" ], [ "TX", "N3NOS", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3a", "M1", "VALUE:IV" ], [ "T0", "N3b", "M1", "VALUE:IV" ], [ "T0", "N3NOS", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3a", "M1", "ERROR:" ], [ "Tis", "N3b", "M1", "ERROR:" ], [ "Tis", "N3NOS", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N2", "M1", "VALUE:IV" ], [ "T1a", "N3a", "M1", "VALUE:IV" ], [ "T1a", "N3b", "M1", "VALUE:IV" ], [ "T1a", "N3NOS", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N2", "M1", "VALUE:IV" ], [ "T1b", "N3a", "M1", "VALUE:IV" ], [ "T1b", "N3b", "M1", "VALUE:IV" ], [ "T1b", "N3NOS", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "VALUE:IV" ], [ "T1NOS", "N3a", "M1", "VALUE:IV" ], [ "T1NOS", "N3b", "M1", "VALUE:IV" ], [ "T1NOS", "N3NOS", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3a", "M1", "VALUE:IV" ], [ "T2", "N3b", "M1", "VALUE:IV" ], [ "T2", "N3NOS", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3a", "M1", "VALUE:IV" ], [ "T3", "N3b", "M1", "VALUE:IV" ], [ "T3", "N3NOS", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4a", "N0", "M1", "VALUE:IV" ], [ "T4a", "N1", "M1", "VALUE:IV" ], [ "T4a", "N2", "M1", "VALUE:IV" ], [ "T4a", "N3a", "M1", "VALUE:IV" ], [ "T4a", "N3b", "M1", "VALUE:IV" ], [ "T4a", "N3NOS", "M1", "VALUE:IV" ], [ "T4a", "NX", "M1", "VALUE:IV" ], [ "T4b", "N0", "M1", "VALUE:IV" ], [ "T4b", "N1", "M1", "VALUE:IV" ], [ "T4b", "N2", "M1", "VALUE:IV" ], [ "T4b", "N3a", "M1", "VALUE:IV" ], [ "T4b", "N3b", "M1", "VALUE:IV" ], [ "T4b", "N3NOS", "M1", "VALUE:IV" ], [ "T4b", "NX", "M1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "VALUE:IV" ], [ "T4NOS", "N3a", "M1", "VALUE:IV" ], [ "T4NOS", "N3b", "M1", "VALUE:IV" ], [ "T4NOS", "N3NOS", "M1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3a", "M1", "VALUE:IV" ], [ "TX", "N3b", "M1", "VALUE:IV" ], [ "TX", "N3NOS", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uao.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uao.json
deleted file mode 100644
index d4587cefe..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uao.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uao",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.090Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IIA" ], [ "T2", "N1", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uap.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uap.json
deleted file mode 100644
index 035ce400a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uap.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_uap",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.174Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "mitotic_rate",
- "name" : "Mitotic Rate",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "High", "ERROR:" ], [ "T0", "N0", "M0", "Low", "ERROR:" ], [ "T0", "N0", "M0", "Unknown", "ERROR:" ], [ "T0", "N1", "M0", "High", "VALUE:IV" ], [ "T0", "N1", "M0", "Low", "VALUE:IV" ], [ "T0", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T1", "N0", "M0", "High", "VALUE:II" ], [ "T1", "N0", "M0", "Low", "VALUE:IA" ], [ "T1", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T1", "N1", "M0", "High", "VALUE:IV" ], [ "T1", "N1", "M0", "Low", "VALUE:IV" ], [ "T1", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T2", "N0", "M0", "High", "VALUE:II" ], [ "T2", "N0", "M0", "Low", "VALUE:IA" ], [ "T2", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T2", "N1", "M0", "High", "VALUE:IV" ], [ "T2", "N1", "M0", "Low", "VALUE:IV" ], [ "T2", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T3", "N0", "M0", "High", "VALUE:IIIA" ], [ "T3", "N0", "M0", "Low", "VALUE:IB" ], [ "T3", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T3", "N1", "M0", "High", "VALUE:IV" ], [ "T3", "N1", "M0", "Low", "VALUE:IV" ], [ "T3", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T4", "N0", "M0", "High", "VALUE:IIIB" ], [ "T4", "N0", "M0", "Low", "VALUE:II" ], [ "T4", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T4", "N1", "M0", "High", "VALUE:IV" ], [ "T4", "N1", "M0", "Low", "VALUE:IV" ], [ "T4", "N1", "M0", "Unknown", "VALUE:IV" ], [ "TX", "N0", "M0", "High", "VALUE:UNK" ], [ "TX", "N0", "M0", "Low", "VALUE:UNK" ], [ "TX", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "TX", "N1", "M0", "High", "VALUE:IV" ], [ "TX", "N1", "M0", "Low", "VALUE:IV" ], [ "TX", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T0", "N0", "M1", "High", "VALUE:IV" ], [ "T0", "N0", "M1", "Low", "VALUE:IV" ], [ "T0", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T0", "N1", "M1", "High", "VALUE:IV" ], [ "T0", "N1", "M1", "Low", "VALUE:IV" ], [ "T0", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T1", "N0", "M1", "High", "VALUE:IV" ], [ "T1", "N0", "M1", "Low", "VALUE:IV" ], [ "T1", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T1", "N1", "M1", "High", "VALUE:IV" ], [ "T1", "N1", "M1", "Low", "VALUE:IV" ], [ "T1", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T2", "N0", "M1", "High", "VALUE:IV" ], [ "T2", "N0", "M1", "Low", "VALUE:IV" ], [ "T2", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T2", "N1", "M1", "High", "VALUE:IV" ], [ "T2", "N1", "M1", "Low", "VALUE:IV" ], [ "T2", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T3", "N0", "M1", "High", "VALUE:IV" ], [ "T3", "N0", "M1", "Low", "VALUE:IV" ], [ "T3", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T3", "N1", "M1", "High", "VALUE:IV" ], [ "T3", "N1", "M1", "Low", "VALUE:IV" ], [ "T3", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T4", "N0", "M1", "High", "VALUE:IV" ], [ "T4", "N0", "M1", "Low", "VALUE:IV" ], [ "T4", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T4", "N1", "M1", "High", "VALUE:IV" ], [ "T4", "N1", "M1", "Low", "VALUE:IV" ], [ "T4", "N1", "M1", "Unknown", "VALUE:IV" ], [ "TX", "N0", "M1", "High", "VALUE:IV" ], [ "TX", "N0", "M1", "Low", "VALUE:IV" ], [ "TX", "N0", "M1", "Unknown", "VALUE:IV" ], [ "TX", "N1", "M1", "High", "VALUE:IV" ], [ "TX", "N1", "M1", "Low", "VALUE:IV" ], [ "TX", "N1", "M1", "Unknown", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaq.json
deleted file mode 100644
index 6dbf17a68..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaq.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uaq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.263Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2", "M0", "VALUE:III" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "N2", "M0", "VALUE:III" ], [ "T1a", "N3", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "N2", "M0", "VALUE:III" ], [ "T1b", "N3", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "N2", "M0", "VALUE:III" ], [ "T1NOS", "N3", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2", "M0", "VALUE:III" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:III" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:III" ], [ "TX", "N2", "M0", "VALUE:III" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N2", "M1", "VALUE:IV" ], [ "T1a", "N3", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N2", "M1", "VALUE:IV" ], [ "T1b", "N3", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uar.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uar.json
deleted file mode 100644
index c0a804814..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uar.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_uar",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.353Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade_category",
- "name" : "C",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "C1", "ERROR:" ], [ "T0", "N0", "M0", "C2", "ERROR:" ], [ "T0", "N0", "M0", "C3", "ERROR:" ], [ "T0", "N0", "M0", "C4", "ERROR:" ], [ "T0", "N0", "M0", "CX", "ERROR:" ], [ "T0", "N1", "M0", "C1", "VALUE:IIINOS" ], [ "T0", "N1", "M0", "C2", "VALUE:IIINOS" ], [ "T0", "N1", "M0", "C3", "VALUE:IIINOS" ], [ "T0", "N1", "M0", "C4", "VALUE:IIINOS" ], [ "T0", "N1", "M0", "CX", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "C1", "VALUE:IIIC" ], [ "T0", "N2", "M0", "C2", "VALUE:IIIC" ], [ "T0", "N2", "M0", "C3", "VALUE:IIIC" ], [ "T0", "N2", "M0", "C4", "VALUE:IIIC" ], [ "T0", "N2", "M0", "CX", "VALUE:IIIC" ], [ "T0", "NX", "M0", "C1", "VALUE:UNK" ], [ "T0", "NX", "M0", "C2", "VALUE:UNK" ], [ "T0", "NX", "M0", "C3", "VALUE:UNK" ], [ "T0", "NX", "M0", "C4", "VALUE:UNK" ], [ "T0", "NX", "M0", "CX", "VALUE:UNK" ], [ "Tis", "N0", "M0", "C1", "VALUE:0" ], [ "Tis", "N0", "M0", "C2", "VALUE:0" ], [ "Tis", "N0", "M0", "C3", "VALUE:0" ], [ "Tis", "N0", "M0", "C4", "VALUE:0" ], [ "Tis", "N0", "M0", "CX", "VALUE:0" ], [ "Tis", "N1", "M0", "C1", "ERROR:" ], [ "Tis", "N1", "M0", "C2", "ERROR:" ], [ "Tis", "N1", "M0", "C3", "ERROR:" ], [ "Tis", "N1", "M0", "C4", "ERROR:" ], [ "Tis", "N1", "M0", "CX", "ERROR:" ], [ "Tis", "N2", "M0", "C1", "ERROR:" ], [ "Tis", "N2", "M0", "C2", "ERROR:" ], [ "Tis", "N2", "M0", "C3", "ERROR:" ], [ "Tis", "N2", "M0", "C4", "ERROR:" ], [ "Tis", "N2", "M0", "CX", "ERROR:" ], [ "Tis", "NX", "M0", "C1", "VALUE:0" ], [ "Tis", "NX", "M0", "C2", "VALUE:0" ], [ "Tis", "NX", "M0", "C3", "VALUE:0" ], [ "Tis", "NX", "M0", "C4", "VALUE:0" ], [ "Tis", "NX", "M0", "CX", "VALUE:0" ], [ "T1", "N0", "M0", "C1", "VALUE:I" ], [ "T1", "N0", "M0", "C2", "VALUE:I" ], [ "T1", "N0", "M0", "C3", "VALUE:I" ], [ "T1", "N0", "M0", "C4", "VALUE:I" ], [ "T1", "N0", "M0", "CX", "VALUE:I" ], [ "T1", "N1", "M0", "C1", "VALUE:IIIA" ], [ "T1", "N1", "M0", "C2", "VALUE:IIIA" ], [ "T1", "N1", "M0", "C3", "VALUE:IIIA" ], [ "T1", "N1", "M0", "C4", "VALUE:IIIA" ], [ "T1", "N1", "M0", "CX", "VALUE:IIIA" ], [ "T1", "N2", "M0", "C1", "VALUE:IIIC" ], [ "T1", "N2", "M0", "C2", "VALUE:IIIC" ], [ "T1", "N2", "M0", "C3", "VALUE:IIIC" ], [ "T1", "N2", "M0", "C4", "VALUE:IIIC" ], [ "T1", "N2", "M0", "CX", "VALUE:IIIC" ], [ "T1", "NX", "M0", "C1", "VALUE:UNK" ], [ "T1", "NX", "M0", "C2", "VALUE:UNK" ], [ "T1", "NX", "M0", "C3", "VALUE:UNK" ], [ "T1", "NX", "M0", "C4", "VALUE:UNK" ], [ "T1", "NX", "M0", "CX", "VALUE:UNK" ], [ "T2", "N0", "M0", "C1", "VALUE:I" ], [ "T2", "N0", "M0", "C2", "VALUE:I" ], [ "T2", "N0", "M0", "C3", "VALUE:I" ], [ "T2", "N0", "M0", "C4", "VALUE:I" ], [ "T2", "N0", "M0", "CX", "VALUE:I" ], [ "T2", "N1", "M0", "C1", "VALUE:IIIA" ], [ "T2", "N1", "M0", "C2", "VALUE:IIIA" ], [ "T2", "N1", "M0", "C3", "VALUE:IIIA" ], [ "T2", "N1", "M0", "C4", "VALUE:IIIA" ], [ "T2", "N1", "M0", "CX", "VALUE:IIIA" ], [ "T2", "N2", "M0", "C1", "VALUE:IIIC" ], [ "T2", "N2", "M0", "C2", "VALUE:IIIC" ], [ "T2", "N2", "M0", "C3", "VALUE:IIIC" ], [ "T2", "N2", "M0", "C4", "VALUE:IIIC" ], [ "T2", "N2", "M0", "CX", "VALUE:IIIC" ], [ "T2", "NX", "M0", "C1", "VALUE:UNK" ], [ "T2", "NX", "M0", "C2", "VALUE:UNK" ], [ "T2", "NX", "M0", "C3", "VALUE:UNK" ], [ "T2", "NX", "M0", "C4", "VALUE:UNK" ], [ "T2", "NX", "M0", "CX", "VALUE:UNK" ], [ "T3", "N0", "M0", "C1", "VALUE:IIA" ], [ "T3", "N0", "M0", "C2", "VALUE:IIA" ], [ "T3", "N0", "M0", "C3", "VALUE:IIA" ], [ "T3", "N0", "M0", "C4", "VALUE:IIA" ], [ "T3", "N0", "M0", "CX", "VALUE:IIA" ], [ "T3", "N1", "M0", "C1", "VALUE:IIIB" ], [ "T3", "N1", "M0", "C2", "VALUE:IIIB" ], [ "T3", "N1", "M0", "C3", "VALUE:IIIB" ], [ "T3", "N1", "M0", "C4", "VALUE:IIIB" ], [ "T3", "N1", "M0", "CX", "VALUE:IIIB" ], [ "T3", "N2", "M0", "C1", "VALUE:IIIC" ], [ "T3", "N2", "M0", "C2", "VALUE:IIIC" ], [ "T3", "N2", "M0", "C3", "VALUE:IIIC" ], [ "T3", "N2", "M0", "C4", "VALUE:IIIC" ], [ "T3", "N2", "M0", "CX", "VALUE:IIIC" ], [ "T3", "NX", "M0", "C1", "VALUE:UNK" ], [ "T3", "NX", "M0", "C2", "VALUE:UNK" ], [ "T3", "NX", "M0", "C3", "VALUE:UNK" ], [ "T3", "NX", "M0", "C4", "VALUE:UNK" ], [ "T3", "NX", "M0", "CX", "VALUE:UNK" ], [ "T4a", "N0", "M0", "C1", "VALUE:IIB" ], [ "T4a", "N0", "M0", "C2", "VALUE:IIB" ], [ "T4a", "N0", "M0", "C3", "VALUE:IIB" ], [ "T4a", "N0", "M0", "C4", "VALUE:IIB" ], [ "T4a", "N0", "M0", "CX", "VALUE:IIB" ], [ "T4a", "N1", "M0", "C1", "VALUE:IIIB" ], [ "T4a", "N1", "M0", "C2", "VALUE:IIIB" ], [ "T4a", "N1", "M0", "C3", "VALUE:IIIB" ], [ "T4a", "N1", "M0", "C4", "VALUE:IIIB" ], [ "T4a", "N1", "M0", "CX", "VALUE:IIIB" ], [ "T4a", "N2", "M0", "C1", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "C2", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "C3", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "C4", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "CX", "VALUE:IIIC" ], [ "T4a", "NX", "M0", "C1", "VALUE:UNK" ], [ "T4a", "NX", "M0", "C2", "VALUE:UNK" ], [ "T4a", "NX", "M0", "C3", "VALUE:UNK" ], [ "T4a", "NX", "M0", "C4", "VALUE:UNK" ], [ "T4a", "NX", "M0", "CX", "VALUE:UNK" ], [ "T4b", "N0", "M0", "C1", "VALUE:IIC" ], [ "T4b", "N0", "M0", "C2", "VALUE:IIC" ], [ "T4b", "N0", "M0", "C3", "VALUE:IIC" ], [ "T4b", "N0", "M0", "C4", "VALUE:IIC" ], [ "T4b", "N0", "M0", "CX", "VALUE:IIC" ], [ "T4b", "N1", "M0", "C1", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "C2", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "C3", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "C4", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "CX", "VALUE:IIIB" ], [ "T4b", "N2", "M0", "C1", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "C2", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "C3", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "C4", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "CX", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "C1", "VALUE:UNK" ], [ "T4b", "NX", "M0", "C2", "VALUE:UNK" ], [ "T4b", "NX", "M0", "C3", "VALUE:UNK" ], [ "T4b", "NX", "M0", "C4", "VALUE:UNK" ], [ "T4b", "NX", "M0", "CX", "VALUE:UNK" ], [ "T4NOS", "N0", "M0", "C1", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "C2", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "C3", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "C4", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "CX", "VALUE:IINOS" ], [ "T4NOS", "N1", "M0", "C1", "VALUE:IIIB" ], [ "T4NOS", "N1", "M0", "C2", "VALUE:IIIB" ], [ "T4NOS", "N1", "M0", "C3", "VALUE:IIIB" ], [ "T4NOS", "N1", "M0", "C4", "VALUE:IIIB" ], [ "T4NOS", "N1", "M0", "CX", "VALUE:IIIB" ], [ "T4NOS", "N2", "M0", "C1", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "C2", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "C3", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "C4", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "CX", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", "C1", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "C2", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "C3", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "C4", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "CX", "VALUE:UNK" ], [ "TX", "N0", "M0", "C1", "VALUE:UNK" ], [ "TX", "N0", "M0", "C2", "VALUE:UNK" ], [ "TX", "N0", "M0", "C3", "VALUE:UNK" ], [ "TX", "N0", "M0", "C4", "VALUE:UNK" ], [ "TX", "N0", "M0", "CX", "VALUE:UNK" ], [ "TX", "N1", "M0", "C1", "VALUE:IIINOS" ], [ "TX", "N1", "M0", "C2", "VALUE:IIINOS" ], [ "TX", "N1", "M0", "C3", "VALUE:IIINOS" ], [ "TX", "N1", "M0", "C4", "VALUE:IIINOS" ], [ "TX", "N1", "M0", "CX", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "C1", "VALUE:IIIC" ], [ "TX", "N2", "M0", "C2", "VALUE:IIIC" ], [ "TX", "N2", "M0", "C3", "VALUE:IIIC" ], [ "TX", "N2", "M0", "C4", "VALUE:IIIC" ], [ "TX", "N2", "M0", "CX", "VALUE:IIIC" ], [ "TX", "NX", "M0", "C1", "VALUE:UNK" ], [ "TX", "NX", "M0", "C2", "VALUE:UNK" ], [ "TX", "NX", "M0", "C3", "VALUE:UNK" ], [ "TX", "NX", "M0", "C4", "VALUE:UNK" ], [ "TX", "NX", "M0", "CX", "VALUE:UNK" ], [ "T0", "N0", "M1a", "C1", "VALUE:IVA" ], [ "T0", "N0", "M1a", "C2", "VALUE:IVB" ], [ "T0", "N0", "M1a", "C3", "VALUE:IVB" ], [ "T0", "N0", "M1a", "C4", "VALUE:IVB" ], [ "T0", "N0", "M1a", "CX", "VALUE:IVA" ], [ "T0", "N1", "M1a", "C1", "VALUE:IVB" ], [ "T0", "N1", "M1a", "C2", "VALUE:IVB" ], [ "T0", "N1", "M1a", "C3", "VALUE:IVB" ], [ "T0", "N1", "M1a", "C4", "VALUE:IVB" ], [ "T0", "N1", "M1a", "CX", "VALUE:IVB" ], [ "T0", "N2", "M1a", "C1", "VALUE:IVB" ], [ "T0", "N2", "M1a", "C2", "VALUE:IVB" ], [ "T0", "N2", "M1a", "C3", "VALUE:IVB" ], [ "T0", "N2", "M1a", "C4", "VALUE:IVB" ], [ "T0", "N2", "M1a", "CX", "VALUE:IVB" ], [ "T0", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "T0", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "Tis", "N0", "M1a", "C1", "ERROR:" ], [ "Tis", "N0", "M1a", "C2", "ERROR:" ], [ "Tis", "N0", "M1a", "C3", "ERROR:" ], [ "Tis", "N0", "M1a", "C4", "ERROR:" ], [ "Tis", "N0", "M1a", "CX", "ERROR:" ], [ "Tis", "N1", "M1a", "C1", "ERROR:" ], [ "Tis", "N1", "M1a", "C2", "ERROR:" ], [ "Tis", "N1", "M1a", "C3", "ERROR:" ], [ "Tis", "N1", "M1a", "C4", "ERROR:" ], [ "Tis", "N1", "M1a", "CX", "ERROR:" ], [ "Tis", "N2", "M1a", "C1", "ERROR:" ], [ "Tis", "N2", "M1a", "C2", "ERROR:" ], [ "Tis", "N2", "M1a", "C3", "ERROR:" ], [ "Tis", "N2", "M1a", "C4", "ERROR:" ], [ "Tis", "N2", "M1a", "CX", "ERROR:" ], [ "Tis", "NX", "M1a", "C1", "ERROR:" ], [ "Tis", "NX", "M1a", "C2", "ERROR:" ], [ "Tis", "NX", "M1a", "C3", "ERROR:" ], [ "Tis", "NX", "M1a", "C4", "ERROR:" ], [ "Tis", "NX", "M1a", "CX", "ERROR:" ], [ "T1", "N0", "M1a", "C1", "VALUE:IVA" ], [ "T1", "N0", "M1a", "C2", "VALUE:IVB" ], [ "T1", "N0", "M1a", "C3", "VALUE:IVB" ], [ "T1", "N0", "M1a", "C4", "VALUE:IVB" ], [ "T1", "N0", "M1a", "CX", "VALUE:IVA" ], [ "T1", "N1", "M1a", "C1", "VALUE:IVB" ], [ "T1", "N1", "M1a", "C2", "VALUE:IVB" ], [ "T1", "N1", "M1a", "C3", "VALUE:IVB" ], [ "T1", "N1", "M1a", "C4", "VALUE:IVB" ], [ "T1", "N1", "M1a", "CX", "VALUE:IVB" ], [ "T1", "N2", "M1a", "C1", "VALUE:IVB" ], [ "T1", "N2", "M1a", "C2", "VALUE:IVB" ], [ "T1", "N2", "M1a", "C3", "VALUE:IVB" ], [ "T1", "N2", "M1a", "C4", "VALUE:IVB" ], [ "T1", "N2", "M1a", "CX", "VALUE:IVB" ], [ "T1", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "T1", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "T2", "N0", "M1a", "C1", "VALUE:IVA" ], [ "T2", "N0", "M1a", "C2", "VALUE:IVB" ], [ "T2", "N0", "M1a", "C3", "VALUE:IVB" ], [ "T2", "N0", "M1a", "C4", "VALUE:IVB" ], [ "T2", "N0", "M1a", "CX", "VALUE:IVA" ], [ "T2", "N1", "M1a", "C1", "VALUE:IVB" ], [ "T2", "N1", "M1a", "C2", "VALUE:IVB" ], [ "T2", "N1", "M1a", "C3", "VALUE:IVB" ], [ "T2", "N1", "M1a", "C4", "VALUE:IVB" ], [ "T2", "N1", "M1a", "CX", "VALUE:IVB" ], [ "T2", "N2", "M1a", "C1", "VALUE:IVB" ], [ "T2", "N2", "M1a", "C2", "VALUE:IVB" ], [ "T2", "N2", "M1a", "C3", "VALUE:IVB" ], [ "T2", "N2", "M1a", "C4", "VALUE:IVB" ], [ "T2", "N2", "M1a", "CX", "VALUE:IVB" ], [ "T2", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "T2", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "T3", "N0", "M1a", "C1", "VALUE:IVA" ], [ "T3", "N0", "M1a", "C2", "VALUE:IVB" ], [ "T3", "N0", "M1a", "C3", "VALUE:IVB" ], [ "T3", "N0", "M1a", "C4", "VALUE:IVB" ], [ "T3", "N0", "M1a", "CX", "VALUE:IVA" ], [ "T3", "N1", "M1a", "C1", "VALUE:IVB" ], [ "T3", "N1", "M1a", "C2", "VALUE:IVB" ], [ "T3", "N1", "M1a", "C3", "VALUE:IVB" ], [ "T3", "N1", "M1a", "C4", "VALUE:IVB" ], [ "T3", "N1", "M1a", "CX", "VALUE:IVB" ], [ "T3", "N2", "M1a", "C1", "VALUE:IVB" ], [ "T3", "N2", "M1a", "C2", "VALUE:IVB" ], [ "T3", "N2", "M1a", "C3", "VALUE:IVB" ], [ "T3", "N2", "M1a", "C4", "VALUE:IVB" ], [ "T3", "N2", "M1a", "CX", "VALUE:IVB" ], [ "T3", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "T3", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "T4a", "N0", "M1a", "C1", "VALUE:IVA" ], [ "T4a", "N0", "M1a", "C2", "VALUE:IVB" ], [ "T4a", "N0", "M1a", "C3", "VALUE:IVB" ], [ "T4a", "N0", "M1a", "C4", "VALUE:IVB" ], [ "T4a", "N0", "M1a", "CX", "VALUE:IVA" ], [ "T4a", "N1", "M1a", "C1", "VALUE:IVB" ], [ "T4a", "N1", "M1a", "C2", "VALUE:IVB" ], [ "T4a", "N1", "M1a", "C3", "VALUE:IVB" ], [ "T4a", "N1", "M1a", "C4", "VALUE:IVB" ], [ "T4a", "N1", "M1a", "CX", "VALUE:IVB" ], [ "T4a", "N2", "M1a", "C1", "VALUE:IVB" ], [ "T4a", "N2", "M1a", "C2", "VALUE:IVB" ], [ "T4a", "N2", "M1a", "C3", "VALUE:IVB" ], [ "T4a", "N2", "M1a", "C4", "VALUE:IVB" ], [ "T4a", "N2", "M1a", "CX", "VALUE:IVB" ], [ "T4a", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "T4a", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "T4a", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "T4a", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "T4a", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "T4b", "N0", "M1a", "C1", "VALUE:IVA" ], [ "T4b", "N0", "M1a", "C2", "VALUE:IVB" ], [ "T4b", "N0", "M1a", "C3", "VALUE:IVB" ], [ "T4b", "N0", "M1a", "C4", "VALUE:IVB" ], [ "T4b", "N0", "M1a", "CX", "VALUE:IVA" ], [ "T4b", "N1", "M1a", "C1", "VALUE:IVB" ], [ "T4b", "N1", "M1a", "C2", "VALUE:IVB" ], [ "T4b", "N1", "M1a", "C3", "VALUE:IVB" ], [ "T4b", "N1", "M1a", "C4", "VALUE:IVB" ], [ "T4b", "N1", "M1a", "CX", "VALUE:IVB" ], [ "T4b", "N2", "M1a", "C1", "VALUE:IVB" ], [ "T4b", "N2", "M1a", "C2", "VALUE:IVB" ], [ "T4b", "N2", "M1a", "C3", "VALUE:IVB" ], [ "T4b", "N2", "M1a", "C4", "VALUE:IVB" ], [ "T4b", "N2", "M1a", "CX", "VALUE:IVB" ], [ "T4b", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "T4b", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "T4b", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "T4b", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "T4b", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1a", "C1", "VALUE:IVA" ], [ "T4NOS", "N0", "M1a", "C2", "VALUE:IVB" ], [ "T4NOS", "N0", "M1a", "C3", "VALUE:IVB" ], [ "T4NOS", "N0", "M1a", "C4", "VALUE:IVB" ], [ "T4NOS", "N0", "M1a", "CX", "VALUE:IVA" ], [ "T4NOS", "N1", "M1a", "C1", "VALUE:IVB" ], [ "T4NOS", "N1", "M1a", "C2", "VALUE:IVB" ], [ "T4NOS", "N1", "M1a", "C3", "VALUE:IVB" ], [ "T4NOS", "N1", "M1a", "C4", "VALUE:IVB" ], [ "T4NOS", "N1", "M1a", "CX", "VALUE:IVB" ], [ "T4NOS", "N2", "M1a", "C1", "VALUE:IVB" ], [ "T4NOS", "N2", "M1a", "C2", "VALUE:IVB" ], [ "T4NOS", "N2", "M1a", "C3", "VALUE:IVB" ], [ "T4NOS", "N2", "M1a", "C4", "VALUE:IVB" ], [ "T4NOS", "N2", "M1a", "CX", "VALUE:IVB" ], [ "T4NOS", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "TX", "N0", "M1a", "C1", "VALUE:IVA" ], [ "TX", "N0", "M1a", "C2", "VALUE:IVB" ], [ "TX", "N0", "M1a", "C3", "VALUE:IVB" ], [ "TX", "N0", "M1a", "C4", "VALUE:IVB" ], [ "TX", "N0", "M1a", "CX", "VALUE:IVA" ], [ "TX", "N1", "M1a", "C1", "VALUE:IVB" ], [ "TX", "N1", "M1a", "C2", "VALUE:IVB" ], [ "TX", "N1", "M1a", "C3", "VALUE:IVB" ], [ "TX", "N1", "M1a", "C4", "VALUE:IVB" ], [ "TX", "N1", "M1a", "CX", "VALUE:IVB" ], [ "TX", "N2", "M1a", "C1", "VALUE:IVB" ], [ "TX", "N2", "M1a", "C2", "VALUE:IVB" ], [ "TX", "N2", "M1a", "C3", "VALUE:IVB" ], [ "TX", "N2", "M1a", "C4", "VALUE:IVB" ], [ "TX", "N2", "M1a", "CX", "VALUE:IVB" ], [ "TX", "NX", "M1a", "C1", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "C2", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "C3", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "C4", "VALUE:IVNOS" ], [ "TX", "NX", "M1a", "CX", "VALUE:IVNOS" ], [ "T0", "N0", "M1b", "C1", "VALUE:IVC" ], [ "T0", "N0", "M1b", "C2", "VALUE:IVC" ], [ "T0", "N0", "M1b", "C3", "VALUE:IVC" ], [ "T0", "N0", "M1b", "C4", "VALUE:IVC" ], [ "T0", "N0", "M1b", "CX", "VALUE:IVC" ], [ "T0", "N1", "M1b", "C1", "VALUE:IVC" ], [ "T0", "N1", "M1b", "C2", "VALUE:IVC" ], [ "T0", "N1", "M1b", "C3", "VALUE:IVC" ], [ "T0", "N1", "M1b", "C4", "VALUE:IVC" ], [ "T0", "N1", "M1b", "CX", "VALUE:IVC" ], [ "T0", "N2", "M1b", "C1", "VALUE:IVC" ], [ "T0", "N2", "M1b", "C2", "VALUE:IVC" ], [ "T0", "N2", "M1b", "C3", "VALUE:IVC" ], [ "T0", "N2", "M1b", "C4", "VALUE:IVC" ], [ "T0", "N2", "M1b", "CX", "VALUE:IVC" ], [ "T0", "NX", "M1b", "C1", "VALUE:IVC" ], [ "T0", "NX", "M1b", "C2", "VALUE:IVC" ], [ "T0", "NX", "M1b", "C3", "VALUE:IVC" ], [ "T0", "NX", "M1b", "C4", "VALUE:IVC" ], [ "T0", "NX", "M1b", "CX", "VALUE:IVC" ], [ "Tis", "N0", "M1b", "C1", "ERROR:" ], [ "Tis", "N0", "M1b", "C2", "ERROR:" ], [ "Tis", "N0", "M1b", "C3", "ERROR:" ], [ "Tis", "N0", "M1b", "C4", "ERROR:" ], [ "Tis", "N0", "M1b", "CX", "ERROR:" ], [ "Tis", "N1", "M1b", "C1", "ERROR:" ], [ "Tis", "N1", "M1b", "C2", "ERROR:" ], [ "Tis", "N1", "M1b", "C3", "ERROR:" ], [ "Tis", "N1", "M1b", "C4", "ERROR:" ], [ "Tis", "N1", "M1b", "CX", "ERROR:" ], [ "Tis", "N2", "M1b", "C1", "ERROR:" ], [ "Tis", "N2", "M1b", "C2", "ERROR:" ], [ "Tis", "N2", "M1b", "C3", "ERROR:" ], [ "Tis", "N2", "M1b", "C4", "ERROR:" ], [ "Tis", "N2", "M1b", "CX", "ERROR:" ], [ "Tis", "NX", "M1b", "C1", "ERROR:" ], [ "Tis", "NX", "M1b", "C2", "ERROR:" ], [ "Tis", "NX", "M1b", "C3", "ERROR:" ], [ "Tis", "NX", "M1b", "C4", "ERROR:" ], [ "Tis", "NX", "M1b", "CX", "ERROR:" ], [ "T1", "N0", "M1b", "C1", "VALUE:IVC" ], [ "T1", "N0", "M1b", "C2", "VALUE:IVC" ], [ "T1", "N0", "M1b", "C3", "VALUE:IVC" ], [ "T1", "N0", "M1b", "C4", "VALUE:IVC" ], [ "T1", "N0", "M1b", "CX", "VALUE:IVC" ], [ "T1", "N1", "M1b", "C1", "VALUE:IVC" ], [ "T1", "N1", "M1b", "C2", "VALUE:IVC" ], [ "T1", "N1", "M1b", "C3", "VALUE:IVC" ], [ "T1", "N1", "M1b", "C4", "VALUE:IVC" ], [ "T1", "N1", "M1b", "CX", "VALUE:IVC" ], [ "T1", "N2", "M1b", "C1", "VALUE:IVC" ], [ "T1", "N2", "M1b", "C2", "VALUE:IVC" ], [ "T1", "N2", "M1b", "C3", "VALUE:IVC" ], [ "T1", "N2", "M1b", "C4", "VALUE:IVC" ], [ "T1", "N2", "M1b", "CX", "VALUE:IVC" ], [ "T1", "NX", "M1b", "C1", "VALUE:IVC" ], [ "T1", "NX", "M1b", "C2", "VALUE:IVC" ], [ "T1", "NX", "M1b", "C3", "VALUE:IVC" ], [ "T1", "NX", "M1b", "C4", "VALUE:IVC" ], [ "T1", "NX", "M1b", "CX", "VALUE:IVC" ], [ "T2", "N0", "M1b", "C1", "VALUE:IVC" ], [ "T2", "N0", "M1b", "C2", "VALUE:IVC" ], [ "T2", "N0", "M1b", "C3", "VALUE:IVC" ], [ "T2", "N0", "M1b", "C4", "VALUE:IVC" ], [ "T2", "N0", "M1b", "CX", "VALUE:IVC" ], [ "T2", "N1", "M1b", "C1", "VALUE:IVC" ], [ "T2", "N1", "M1b", "C2", "VALUE:IVC" ], [ "T2", "N1", "M1b", "C3", "VALUE:IVC" ], [ "T2", "N1", "M1b", "C4", "VALUE:IVC" ], [ "T2", "N1", "M1b", "CX", "VALUE:IVC" ], [ "T2", "N2", "M1b", "C1", "VALUE:IVC" ], [ "T2", "N2", "M1b", "C2", "VALUE:IVC" ], [ "T2", "N2", "M1b", "C3", "VALUE:IVC" ], [ "T2", "N2", "M1b", "C4", "VALUE:IVC" ], [ "T2", "N2", "M1b", "CX", "VALUE:IVC" ], [ "T2", "NX", "M1b", "C1", "VALUE:IVC" ], [ "T2", "NX", "M1b", "C2", "VALUE:IVC" ], [ "T2", "NX", "M1b", "C3", "VALUE:IVC" ], [ "T2", "NX", "M1b", "C4", "VALUE:IVC" ], [ "T2", "NX", "M1b", "CX", "VALUE:IVC" ], [ "T3", "N0", "M1b", "C1", "VALUE:IVC" ], [ "T3", "N0", "M1b", "C2", "VALUE:IVC" ], [ "T3", "N0", "M1b", "C3", "VALUE:IVC" ], [ "T3", "N0", "M1b", "C4", "VALUE:IVC" ], [ "T3", "N0", "M1b", "CX", "VALUE:IVC" ], [ "T3", "N1", "M1b", "C1", "VALUE:IVC" ], [ "T3", "N1", "M1b", "C2", "VALUE:IVC" ], [ "T3", "N1", "M1b", "C3", "VALUE:IVC" ], [ "T3", "N1", "M1b", "C4", "VALUE:IVC" ], [ "T3", "N1", "M1b", "CX", "VALUE:IVC" ], [ "T3", "N2", "M1b", "C1", "VALUE:IVC" ], [ "T3", "N2", "M1b", "C2", "VALUE:IVC" ], [ "T3", "N2", "M1b", "C3", "VALUE:IVC" ], [ "T3", "N2", "M1b", "C4", "VALUE:IVC" ], [ "T3", "N2", "M1b", "CX", "VALUE:IVC" ], [ "T3", "NX", "M1b", "C1", "VALUE:IVC" ], [ "T3", "NX", "M1b", "C2", "VALUE:IVC" ], [ "T3", "NX", "M1b", "C3", "VALUE:IVC" ], [ "T3", "NX", "M1b", "C4", "VALUE:IVC" ], [ "T3", "NX", "M1b", "CX", "VALUE:IVC" ], [ "T4a", "N0", "M1b", "C1", "VALUE:IVC" ], [ "T4a", "N0", "M1b", "C2", "VALUE:IVC" ], [ "T4a", "N0", "M1b", "C3", "VALUE:IVC" ], [ "T4a", "N0", "M1b", "C4", "VALUE:IVC" ], [ "T4a", "N0", "M1b", "CX", "VALUE:IVC" ], [ "T4a", "N1", "M1b", "C1", "VALUE:IVC" ], [ "T4a", "N1", "M1b", "C2", "VALUE:IVC" ], [ "T4a", "N1", "M1b", "C3", "VALUE:IVC" ], [ "T4a", "N1", "M1b", "C4", "VALUE:IVC" ], [ "T4a", "N1", "M1b", "CX", "VALUE:IVC" ], [ "T4a", "N2", "M1b", "C1", "VALUE:IVC" ], [ "T4a", "N2", "M1b", "C2", "VALUE:IVC" ], [ "T4a", "N2", "M1b", "C3", "VALUE:IVC" ], [ "T4a", "N2", "M1b", "C4", "VALUE:IVC" ], [ "T4a", "N2", "M1b", "CX", "VALUE:IVC" ], [ "T4a", "NX", "M1b", "C1", "VALUE:IVC" ], [ "T4a", "NX", "M1b", "C2", "VALUE:IVC" ], [ "T4a", "NX", "M1b", "C3", "VALUE:IVC" ], [ "T4a", "NX", "M1b", "C4", "VALUE:IVC" ], [ "T4a", "NX", "M1b", "CX", "VALUE:IVC" ], [ "T4b", "N0", "M1b", "C1", "VALUE:IVC" ], [ "T4b", "N0", "M1b", "C2", "VALUE:IVC" ], [ "T4b", "N0", "M1b", "C3", "VALUE:IVC" ], [ "T4b", "N0", "M1b", "C4", "VALUE:IVC" ], [ "T4b", "N0", "M1b", "CX", "VALUE:IVC" ], [ "T4b", "N1", "M1b", "C1", "VALUE:IVC" ], [ "T4b", "N1", "M1b", "C2", "VALUE:IVC" ], [ "T4b", "N1", "M1b", "C3", "VALUE:IVC" ], [ "T4b", "N1", "M1b", "C4", "VALUE:IVC" ], [ "T4b", "N1", "M1b", "CX", "VALUE:IVC" ], [ "T4b", "N2", "M1b", "C1", "VALUE:IVC" ], [ "T4b", "N2", "M1b", "C2", "VALUE:IVC" ], [ "T4b", "N2", "M1b", "C3", "VALUE:IVC" ], [ "T4b", "N2", "M1b", "C4", "VALUE:IVC" ], [ "T4b", "N2", "M1b", "CX", "VALUE:IVC" ], [ "T4b", "NX", "M1b", "C1", "VALUE:IVC" ], [ "T4b", "NX", "M1b", "C2", "VALUE:IVC" ], [ "T4b", "NX", "M1b", "C3", "VALUE:IVC" ], [ "T4b", "NX", "M1b", "C4", "VALUE:IVC" ], [ "T4b", "NX", "M1b", "CX", "VALUE:IVC" ], [ "T4NOS", "N0", "M1b", "C1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1b", "C2", "VALUE:IVC" ], [ "T4NOS", "N0", "M1b", "C3", "VALUE:IVC" ], [ "T4NOS", "N0", "M1b", "C4", "VALUE:IVC" ], [ "T4NOS", "N0", "M1b", "CX", "VALUE:IVC" ], [ "T4NOS", "N1", "M1b", "C1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1b", "C2", "VALUE:IVC" ], [ "T4NOS", "N1", "M1b", "C3", "VALUE:IVC" ], [ "T4NOS", "N1", "M1b", "C4", "VALUE:IVC" ], [ "T4NOS", "N1", "M1b", "CX", "VALUE:IVC" ], [ "T4NOS", "N2", "M1b", "C1", "VALUE:IVC" ], [ "T4NOS", "N2", "M1b", "C2", "VALUE:IVC" ], [ "T4NOS", "N2", "M1b", "C3", "VALUE:IVC" ], [ "T4NOS", "N2", "M1b", "C4", "VALUE:IVC" ], [ "T4NOS", "N2", "M1b", "CX", "VALUE:IVC" ], [ "T4NOS", "NX", "M1b", "C1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1b", "C2", "VALUE:IVC" ], [ "T4NOS", "NX", "M1b", "C3", "VALUE:IVC" ], [ "T4NOS", "NX", "M1b", "C4", "VALUE:IVC" ], [ "T4NOS", "NX", "M1b", "CX", "VALUE:IVC" ], [ "TX", "N0", "M1b", "C1", "VALUE:IVC" ], [ "TX", "N0", "M1b", "C2", "VALUE:IVC" ], [ "TX", "N0", "M1b", "C3", "VALUE:IVC" ], [ "TX", "N0", "M1b", "C4", "VALUE:IVC" ], [ "TX", "N0", "M1b", "CX", "VALUE:IVC" ], [ "TX", "N1", "M1b", "C1", "VALUE:IVC" ], [ "TX", "N1", "M1b", "C2", "VALUE:IVC" ], [ "TX", "N1", "M1b", "C3", "VALUE:IVC" ], [ "TX", "N1", "M1b", "C4", "VALUE:IVC" ], [ "TX", "N1", "M1b", "CX", "VALUE:IVC" ], [ "TX", "N2", "M1b", "C1", "VALUE:IVC" ], [ "TX", "N2", "M1b", "C2", "VALUE:IVC" ], [ "TX", "N2", "M1b", "C3", "VALUE:IVC" ], [ "TX", "N2", "M1b", "C4", "VALUE:IVC" ], [ "TX", "N2", "M1b", "CX", "VALUE:IVC" ], [ "TX", "NX", "M1b", "C1", "VALUE:IVC" ], [ "TX", "NX", "M1b", "C2", "VALUE:IVC" ], [ "TX", "NX", "M1b", "C3", "VALUE:IVC" ], [ "TX", "NX", "M1b", "C4", "VALUE:IVC" ], [ "TX", "NX", "M1b", "CX", "VALUE:IVC" ], [ "T0", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T0", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T0", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T0", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T0", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T0", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T0", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "CX", "VALUE:IVNOS" ], [ "Tis", "N0", "M1NOS", "C1", "ERROR:" ], [ "Tis", "N0", "M1NOS", "C2", "ERROR:" ], [ "Tis", "N0", "M1NOS", "C3", "ERROR:" ], [ "Tis", "N0", "M1NOS", "C4", "ERROR:" ], [ "Tis", "N0", "M1NOS", "CX", "ERROR:" ], [ "Tis", "N1", "M1NOS", "C1", "ERROR:" ], [ "Tis", "N1", "M1NOS", "C2", "ERROR:" ], [ "Tis", "N1", "M1NOS", "C3", "ERROR:" ], [ "Tis", "N1", "M1NOS", "C4", "ERROR:" ], [ "Tis", "N1", "M1NOS", "CX", "ERROR:" ], [ "Tis", "N2", "M1NOS", "C1", "ERROR:" ], [ "Tis", "N2", "M1NOS", "C2", "ERROR:" ], [ "Tis", "N2", "M1NOS", "C3", "ERROR:" ], [ "Tis", "N2", "M1NOS", "C4", "ERROR:" ], [ "Tis", "N2", "M1NOS", "CX", "ERROR:" ], [ "Tis", "NX", "M1NOS", "C1", "ERROR:" ], [ "Tis", "NX", "M1NOS", "C2", "ERROR:" ], [ "Tis", "NX", "M1NOS", "C3", "ERROR:" ], [ "Tis", "NX", "M1NOS", "C4", "ERROR:" ], [ "Tis", "NX", "M1NOS", "CX", "ERROR:" ], [ "T1", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T1", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T1", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T1", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T1", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T1", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T2", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T2", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T2", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T2", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T2", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T3", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T3", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T3", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T3", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T3", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4a", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4a", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4a", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4a", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4a", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4a", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4a", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4a", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4a", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4a", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4a", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4a", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4a", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4a", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4a", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4a", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4a", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4a", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4a", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4a", "NX", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4b", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4b", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4b", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4b", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4b", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4b", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4b", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4b", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4b", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4b", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4b", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4b", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4b", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4b", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4b", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4b", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4b", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4b", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4b", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4b", "NX", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4NOS", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4NOS", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4NOS", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4NOS", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4NOS", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1NOS", "CX", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "C1", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "C2", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "C3", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "C4", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "CX", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "C1", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "C2", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "C3", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "C4", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "CX", "VALUE:IVNOS" ], [ "TX", "N2", "M1NOS", "C1", "VALUE:IVNOS" ], [ "TX", "N2", "M1NOS", "C2", "VALUE:IVNOS" ], [ "TX", "N2", "M1NOS", "C3", "VALUE:IVNOS" ], [ "TX", "N2", "M1NOS", "C4", "VALUE:IVNOS" ], [ "TX", "N2", "M1NOS", "CX", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "C1", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "C2", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "C3", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "C4", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "CX", "VALUE:IVNOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uau.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uau.json
deleted file mode 100644
index ce555a3ac..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uau.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uau",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.528Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "N2", "M0", "VALUE:IV" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0a" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "N3", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0a" ], [ "Tis", "N0", "M0", "VALUE:0is" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0is" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IV" ], [ "T1", "N2", "M0", "VALUE:IV" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:IV" ], [ "T2a", "N2", "M0", "VALUE:IV" ], [ "T2a", "N3", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:IV" ], [ "T2b", "N2", "M0", "VALUE:IV" ], [ "T2b", "N3", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:IV" ], [ "T2NOS", "N2", "M0", "VALUE:IV" ], [ "T2NOS", "N3", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:III" ], [ "T3a", "N1", "M0", "VALUE:IV" ], [ "T3a", "N2", "M0", "VALUE:IV" ], [ "T3a", "N3", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:III" ], [ "T3b", "N1", "M0", "VALUE:IV" ], [ "T3b", "N2", "M0", "VALUE:IV" ], [ "T3b", "N3", "M0", "VALUE:IV" ], [ "T3b", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:III" ], [ "T3NOS", "N1", "M0", "VALUE:IV" ], [ "T3NOS", "N2", "M0", "VALUE:IV" ], [ "T3NOS", "N3", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:III" ], [ "T4a", "N1", "M0", "VALUE:IV" ], [ "T4a", "N2", "M0", "VALUE:IV" ], [ "T4a", "N3", "M0", "VALUE:IV" ], [ "T4a", "NX", "M0", "VALUE:UNK" ], [ "T4b", "N0", "M0", "VALUE:IV" ], [ "T4b", "N1", "M0", "VALUE:IV" ], [ "T4b", "N2", "M0", "VALUE:IV" ], [ "T4b", "N3", "M0", "VALUE:IV" ], [ "T4b", "NX", "M0", "VALUE:IV" ], [ "T4NOS", "N0", "M0", "VALUE:UNK" ], [ "T4NOS", "N1", "M0", "VALUE:IV" ], [ "T4NOS", "N2", "M0", "VALUE:IV" ], [ "T4NOS", "N3", "M0", "VALUE:IV" ], [ "T4NOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "N2", "M0", "VALUE:IV" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "N3", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "N2", "M1", "VALUE:IV" ], [ "T2a", "N3", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "N2", "M1", "VALUE:IV" ], [ "T2b", "N3", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "N2", "M1", "VALUE:IV" ], [ "T2NOS", "N3", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "N2", "M1", "VALUE:IV" ], [ "T3a", "N3", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "N2", "M1", "VALUE:IV" ], [ "T3b", "N3", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "N2", "M1", "VALUE:IV" ], [ "T3NOS", "N3", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "T4a", "N0", "M1", "VALUE:IV" ], [ "T4a", "N1", "M1", "VALUE:IV" ], [ "T4a", "N2", "M1", "VALUE:IV" ], [ "T4a", "N3", "M1", "VALUE:IV" ], [ "T4a", "NX", "M1", "VALUE:IV" ], [ "T4b", "N0", "M1", "VALUE:IV" ], [ "T4b", "N1", "M1", "VALUE:IV" ], [ "T4b", "N2", "M1", "VALUE:IV" ], [ "T4b", "N3", "M1", "VALUE:IV" ], [ "T4b", "NX", "M1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uav.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uav.json
deleted file mode 100644
index fe20716a3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uav.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uav",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.596Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIA" ], [ "T0", "N2", "M0", "VALUE:IIIB" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "N3", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "VALUE:IIIB" ], [ "T1a", "N3", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:II" ], [ "T1b", "N1", "M0", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "VALUE:IIIB" ], [ "T1b", "N3", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "VALUE:IIIB" ], [ "T1NOS", "N3", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IIIA" ], [ "T2", "N2", "M0", "VALUE:IIIB" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIB" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "N3", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "N2", "M1", "VALUE:IV" ], [ "T1a", "N3", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "N2", "M1", "VALUE:IV" ], [ "T1b", "N3", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaw.json
deleted file mode 100644
index dbd7c44ae..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaw.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uaw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.673Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:III" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:III" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:III" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:III" ], [ "T3a", "N1", "M0", "VALUE:III" ], [ "T3a", "NX", "M0", "VALUE:III" ], [ "T3b", "N0", "M0", "VALUE:III" ], [ "T3b", "N1", "M0", "VALUE:III" ], [ "T3b", "NX", "M0", "VALUE:III" ], [ "T3c", "N0", "M0", "VALUE:III" ], [ "T3c", "N1", "M0", "VALUE:III" ], [ "T3c", "NX", "M0", "VALUE:III" ], [ "T3NOS", "N0", "M0", "VALUE:III" ], [ "T3NOS", "N1", "M0", "VALUE:III" ], [ "T3NOS", "NX", "M0", "VALUE:III" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3c", "N0", "M1", "VALUE:IV" ], [ "T3c", "N1", "M1", "VALUE:IV" ], [ "T3c", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uax.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uax.json
deleted file mode 100644
index 53b67150d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uax.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uax",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.740Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "SSF1",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "M0", "000", "ERROR:" ], [ "T0", "M0", "001", "ERROR:" ], [ "T0", "M0", "002", "ERROR:" ], [ "T0", "M0", "010", "ERROR:" ], [ "T0", "M0", "050", "ERROR:" ], [ "T0", "M0", "110", "ERROR:" ], [ "T0", "M0", "150", "ERROR:" ], [ "T0", "M0", "200", "ERROR:" ], [ "T0", "M0", "988", "ERROR:" ], [ "T0", "M0", "999", "ERROR:" ], [ "T1", "M0", "000", "VALUE:IA" ], [ "T1", "M0", "001", "ERROR:" ], [ "T1", "M0", "002", "ERROR:" ], [ "T1", "M0", "010", "VALUE:IA" ], [ "T1", "M0", "050", "VALUE:IA" ], [ "T1", "M0", "110", "VALUE:IB" ], [ "T1", "M0", "150", "VALUE:IB" ], [ "T1", "M0", "200", "VALUE:IA" ], [ "T1", "M0", "988", "VALUE:INOS" ], [ "T1", "M0", "999", "VALUE:INOS" ], [ "T2", "M0", "000", "VALUE:IIA" ], [ "T2", "M0", "001", "ERROR:" ], [ "T2", "M0", "002", "ERROR:" ], [ "T2", "M0", "010", "VALUE:IIA" ], [ "T2", "M0", "050", "VALUE:IIA" ], [ "T2", "M0", "110", "VALUE:IIB" ], [ "T2", "M0", "150", "VALUE:IIB" ], [ "T2", "M0", "200", "VALUE:IIA" ], [ "T2", "M0", "988", "VALUE:IINOS" ], [ "T2", "M0", "999", "VALUE:IINOS" ], [ "TX", "M0", "000", "VALUE:UNK" ], [ "TX", "M0", "001", "ERROR:" ], [ "TX", "M0", "002", "ERROR:" ], [ "TX", "M0", "010", "VALUE:UNK" ], [ "TX", "M0", "050", "VALUE:UNK" ], [ "TX", "M0", "110", "VALUE:UNK" ], [ "TX", "M0", "150", "VALUE:UNK" ], [ "TX", "M0", "200", "VALUE:UNK" ], [ "TX", "M0", "988", "VALUE:UNK" ], [ "TX", "M0", "999", "VALUE:UNK" ], [ "T0", "M1a", "000", "VALUE:IIIA" ], [ "T0", "M1a", "001", "ERROR:" ], [ "T0", "M1a", "002", "ERROR:" ], [ "T0", "M1a", "010", "VALUE:IIIA" ], [ "T0", "M1a", "050", "VALUE:IIIA" ], [ "T0", "M1a", "110", "VALUE:IIIB" ], [ "T0", "M1a", "150", "VALUE:IIIB" ], [ "T0", "M1a", "200", "VALUE:IIIA" ], [ "T0", "M1a", "988", "VALUE:IIINOS" ], [ "T0", "M1a", "999", "VALUE:IIINOS" ], [ "T1", "M1a", "000", "VALUE:IIIA" ], [ "T1", "M1a", "001", "ERROR:" ], [ "T1", "M1a", "002", "ERROR:" ], [ "T1", "M1a", "010", "VALUE:IIIA" ], [ "T1", "M1a", "050", "VALUE:IIIA" ], [ "T1", "M1a", "110", "VALUE:IIIB" ], [ "T1", "M1a", "150", "VALUE:IIIB" ], [ "T1", "M1a", "200", "VALUE:IIIA" ], [ "T1", "M1a", "988", "VALUE:IIINOS" ], [ "T1", "M1a", "999", "VALUE:IIINOS" ], [ "T2", "M1a", "000", "VALUE:IIIA" ], [ "T2", "M1a", "001", "ERROR:" ], [ "T2", "M1a", "002", "ERROR:" ], [ "T2", "M1a", "010", "VALUE:IIIA" ], [ "T2", "M1a", "050", "VALUE:IIIA" ], [ "T2", "M1a", "110", "VALUE:IIIB" ], [ "T2", "M1a", "150", "VALUE:IIIB" ], [ "T2", "M1a", "200", "VALUE:IIIA" ], [ "T2", "M1a", "988", "VALUE:IIINOS" ], [ "T2", "M1a", "999", "VALUE:IIINOS" ], [ "TX", "M1a", "000", "VALUE:IIIA" ], [ "TX", "M1a", "001", "ERROR:" ], [ "TX", "M1a", "002", "ERROR:" ], [ "TX", "M1a", "010", "VALUE:IIIA" ], [ "TX", "M1a", "050", "VALUE:IIIA" ], [ "TX", "M1a", "110", "VALUE:IIIB" ], [ "TX", "M1a", "150", "VALUE:IIIB" ], [ "TX", "M1a", "200", "VALUE:IIIA" ], [ "TX", "M1a", "988", "VALUE:IIINOS" ], [ "TX", "M1a", "999", "VALUE:IIINOS" ], [ "T0", "M1b", "000", "VALUE:IVA" ], [ "T0", "M1b", "001", "ERROR:" ], [ "T0", "M1b", "002", "ERROR:" ], [ "T0", "M1b", "010", "VALUE:IVA" ], [ "T0", "M1b", "050", "VALUE:IVA" ], [ "T0", "M1b", "110", "VALUE:IVB" ], [ "T0", "M1b", "150", "VALUE:IVB" ], [ "T0", "M1b", "200", "VALUE:IVA" ], [ "T0", "M1b", "988", "VALUE:IVNOS" ], [ "T0", "M1b", "999", "VALUE:IVNOS" ], [ "T1", "M1b", "000", "VALUE:IVA" ], [ "T1", "M1b", "001", "ERROR:" ], [ "T1", "M1b", "002", "ERROR:" ], [ "T1", "M1b", "010", "VALUE:IVA" ], [ "T1", "M1b", "050", "VALUE:IVA" ], [ "T1", "M1b", "110", "VALUE:IVB" ], [ "T1", "M1b", "150", "VALUE:IVB" ], [ "T1", "M1b", "200", "VALUE:IVA" ], [ "T1", "M1b", "988", "VALUE:IVNOS" ], [ "T1", "M1b", "999", "VALUE:IVNOS" ], [ "T2", "M1b", "000", "VALUE:IVA" ], [ "T2", "M1b", "001", "ERROR:" ], [ "T2", "M1b", "002", "ERROR:" ], [ "T2", "M1b", "010", "VALUE:IVA" ], [ "T2", "M1b", "050", "VALUE:IVA" ], [ "T2", "M1b", "110", "VALUE:IVB" ], [ "T2", "M1b", "150", "VALUE:IVB" ], [ "T2", "M1b", "200", "VALUE:IVA" ], [ "T2", "M1b", "988", "VALUE:IVNOS" ], [ "T2", "M1b", "999", "VALUE:IVNOS" ], [ "TX", "M1b", "000", "VALUE:IVA" ], [ "TX", "M1b", "001", "ERROR:" ], [ "TX", "M1b", "002", "ERROR:" ], [ "TX", "M1b", "010", "VALUE:IVA" ], [ "TX", "M1b", "050", "VALUE:IVA" ], [ "TX", "M1b", "110", "VALUE:IVB" ], [ "TX", "M1b", "150", "VALUE:IVB" ], [ "TX", "M1b", "200", "VALUE:IVA" ], [ "TX", "M1b", "988", "VALUE:IVNOS" ], [ "TX", "M1b", "999", "VALUE:IVNOS" ], [ "T0", "M1NOS", "000", "VALUE:UNK" ], [ "T0", "M1NOS", "001", "ERROR:" ], [ "T0", "M1NOS", "002", "ERROR:" ], [ "T0", "M1NOS", "010", "VALUE:UNK" ], [ "T0", "M1NOS", "050", "VALUE:UNK" ], [ "T0", "M1NOS", "110", "VALUE:UNK" ], [ "T0", "M1NOS", "150", "VALUE:UNK" ], [ "T0", "M1NOS", "200", "VALUE:UNK" ], [ "T0", "M1NOS", "988", "VALUE:UNK" ], [ "T0", "M1NOS", "999", "VALUE:UNK" ], [ "T1", "M1NOS", "000", "VALUE:UNK" ], [ "T1", "M1NOS", "001", "ERROR:" ], [ "T1", "M1NOS", "002", "ERROR:" ], [ "T1", "M1NOS", "010", "VALUE:UNK" ], [ "T1", "M1NOS", "050", "VALUE:UNK" ], [ "T1", "M1NOS", "110", "VALUE:UNK" ], [ "T1", "M1NOS", "150", "VALUE:UNK" ], [ "T1", "M1NOS", "200", "VALUE:UNK" ], [ "T1", "M1NOS", "988", "VALUE:UNK" ], [ "T1", "M1NOS", "999", "VALUE:UNK" ], [ "T2", "M1NOS", "000", "VALUE:UNK" ], [ "T2", "M1NOS", "001", "ERROR:" ], [ "T2", "M1NOS", "002", "ERROR:" ], [ "T2", "M1NOS", "010", "VALUE:UNK" ], [ "T2", "M1NOS", "050", "VALUE:UNK" ], [ "T2", "M1NOS", "110", "VALUE:UNK" ], [ "T2", "M1NOS", "150", "VALUE:UNK" ], [ "T2", "M1NOS", "200", "VALUE:UNK" ], [ "T2", "M1NOS", "988", "VALUE:UNK" ], [ "T2", "M1NOS", "999", "VALUE:UNK" ], [ "TX", "M1NOS", "000", "VALUE:UNK" ], [ "TX", "M1NOS", "001", "ERROR:" ], [ "TX", "M1NOS", "002", "ERROR:" ], [ "TX", "M1NOS", "010", "VALUE:UNK" ], [ "TX", "M1NOS", "050", "VALUE:UNK" ], [ "TX", "M1NOS", "110", "VALUE:UNK" ], [ "TX", "M1NOS", "150", "VALUE:UNK" ], [ "TX", "M1NOS", "200", "VALUE:UNK" ], [ "TX", "M1NOS", "988", "VALUE:UNK" ], [ "TX", "M1NOS", "999", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uay.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uay.json
deleted file mode 100644
index f5fc1be47..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uay.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uay",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.835Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2a", "M0", "VALUE:IV" ], [ "T0", "N2b", "M0", "VALUE:IV" ], [ "T0", "N2c", "M0", "VALUE:IV" ], [ "T0", "N2NOS", "M0", "VALUE:IV" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2a", "M0", "VALUE:IV" ], [ "T1", "N2b", "M0", "VALUE:IV" ], [ "T1", "N2c", "M0", "VALUE:IV" ], [ "T1", "N2NOS", "M0", "VALUE:IV" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IV" ], [ "T2", "N2b", "M0", "VALUE:IV" ], [ "T2", "N2c", "M0", "VALUE:IV" ], [ "T2", "N2NOS", "M0", "VALUE:IV" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2a", "M0", "VALUE:IV" ], [ "T4", "N2b", "M0", "VALUE:IV" ], [ "T4", "N2c", "M0", "VALUE:IV" ], [ "T4", "N2NOS", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:III" ], [ "TX", "N2a", "M0", "VALUE:IV" ], [ "TX", "N2b", "M0", "VALUE:IV" ], [ "TX", "N2c", "M0", "VALUE:IV" ], [ "TX", "N2NOS", "M0", "VALUE:IV" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2a", "M1", "VALUE:IV" ], [ "T0", "N2b", "M1", "VALUE:IV" ], [ "T0", "N2c", "M1", "VALUE:IV" ], [ "T0", "N2NOS", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2a", "M1", "VALUE:IV" ], [ "T1", "N2b", "M1", "VALUE:IV" ], [ "T1", "N2c", "M1", "VALUE:IV" ], [ "T1", "N2NOS", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2a", "M1", "VALUE:IV" ], [ "T2", "N2b", "M1", "VALUE:IV" ], [ "T2", "N2c", "M1", "VALUE:IV" ], [ "T2", "N2NOS", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2a", "M1", "VALUE:IV" ], [ "T4", "N2b", "M1", "VALUE:IV" ], [ "T4", "N2c", "M1", "VALUE:IV" ], [ "T4", "N2NOS", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2a", "M1", "VALUE:IV" ], [ "TX", "N2b", "M1", "VALUE:IV" ], [ "TX", "N2c", "M1", "VALUE:IV" ], [ "TX", "N2NOS", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaz.json
deleted file mode 100644
index 2eb818dea..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uaz.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uaz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.917Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0a" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0a" ], [ "Tis", "N0", "M0", "VALUE:0is" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0is" ], [ "Tispu", "N0", "M0", "VALUE:0is" ], [ "Tispu", "N1", "M0", "ERROR:" ], [ "Tispu", "N2", "M0", "ERROR:" ], [ "Tispu", "NX", "M0", "VALUE:0is" ], [ "Tispd", "N0", "M0", "VALUE:0is" ], [ "Tispd", "N1", "M0", "ERROR:" ], [ "Tispd", "N2", "M0", "ERROR:" ], [ "Tispd", "NX", "M0", "VALUE:0is" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "Tispu", "N0", "M1", "ERROR:" ], [ "Tispu", "N1", "M1", "ERROR:" ], [ "Tispu", "N2", "M1", "ERROR:" ], [ "Tispu", "NX", "M1", "ERROR:" ], [ "Tispd", "N0", "M1", "ERROR:" ], [ "Tispd", "N1", "M1", "ERROR:" ], [ "Tispd", "N2", "M1", "ERROR:" ], [ "Tispd", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uba.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uba.json
deleted file mode 100644
index 029a9cdcd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uba.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uba",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:55.980Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubb.json
deleted file mode 100644
index 9091589f5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubb.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.052Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IC" ], [ "T1c", "N1", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIC" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIC" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:IIC" ], [ "T2c", "N1", "M0", "VALUE:IIIC" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3c", "N0", "M0", "VALUE:IIIC" ], [ "T3c", "N1", "M0", "VALUE:IIIC" ], [ "T3c", "NX", "M0", "VALUE:IIIC" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2c", "N0", "M1", "VALUE:IV" ], [ "T2c", "N1", "M1", "VALUE:IV" ], [ "T2c", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3c", "N0", "M1", "VALUE:IV" ], [ "T3c", "N1", "M1", "VALUE:IV" ], [ "T3c", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubc.json
deleted file mode 100644
index 31acb5a36..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubc.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.101Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "NX", "M0", "VALUE:III" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVB" ], [ "T1", "N1", "M1", "VALUE:IVB" ], [ "T1", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubd.json
deleted file mode 100644
index 85d48dcc6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubd.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.158Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1a", "M0", "VALUE:IIIA" ], [ "T0", "N1b", "M0", "VALUE:IIIA" ], [ "T0", "N1NOS", "M0", "VALUE:IIIA" ], [ "T0", "N2a", "M0", "VALUE:IIIB" ], [ "T0", "N2b", "M0", "VALUE:IIIB" ], [ "T0", "N2c", "M0", "VALUE:IIIC" ], [ "T0", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T0", "N3", "M0", "VALUE:IVA" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1a", "M0", "ERROR:" ], [ "Tis", "N1b", "M0", "ERROR:" ], [ "Tis", "N1NOS", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1a", "M0", "VALUE:IIIA" ], [ "T1a", "N1b", "M0", "VALUE:IIIA" ], [ "T1a", "N1NOS", "M0", "VALUE:IIIA" ], [ "T1a", "N2a", "M0", "VALUE:IIIB" ], [ "T1a", "N2b", "M0", "VALUE:IIIB" ], [ "T1a", "N2c", "M0", "VALUE:IIIC" ], [ "T1a", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T1a", "N3", "M0", "VALUE:IVA" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1a", "M0", "VALUE:IIIA" ], [ "T1b", "N1b", "M0", "VALUE:IIIA" ], [ "T1b", "N1NOS", "M0", "VALUE:IIIA" ], [ "T1b", "N2a", "M0", "VALUE:IIIB" ], [ "T1b", "N2b", "M0", "VALUE:IIIB" ], [ "T1b", "N2c", "M0", "VALUE:IIIC" ], [ "T1b", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T1b", "N3", "M0", "VALUE:IVA" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1a", "M0", "VALUE:IIIA" ], [ "T1NOS", "N1b", "M0", "VALUE:IIIA" ], [ "T1NOS", "N1NOS", "M0", "VALUE:IIIA" ], [ "T1NOS", "N2a", "M0", "VALUE:IIIB" ], [ "T1NOS", "N2b", "M0", "VALUE:IIIB" ], [ "T1NOS", "N2c", "M0", "VALUE:IIIC" ], [ "T1NOS", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T1NOS", "N3", "M0", "VALUE:IVA" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1a", "M0", "VALUE:IIIA" ], [ "T2", "N1b", "M0", "VALUE:IIIA" ], [ "T2", "N1NOS", "M0", "VALUE:IIIA" ], [ "T2", "N2a", "M0", "VALUE:IIIB" ], [ "T2", "N2b", "M0", "VALUE:IIIB" ], [ "T2", "N2c", "M0", "VALUE:IIIC" ], [ "T2", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T2", "N3", "M0", "VALUE:IVA" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IVA" ], [ "T3", "N1a", "M0", "VALUE:IVA" ], [ "T3", "N1b", "M0", "VALUE:IVA" ], [ "T3", "N1NOS", "M0", "VALUE:IVA" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVA" ], [ "T3", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M0", "VALUE:UNK" ], [ "TX", "N1b", "M0", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:UNK" ], [ "TX", "N2b", "M0", "VALUE:UNK" ], [ "TX", "N2c", "M0", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "VALUE:UNK" ], [ "TX", "N3", "M0", "VALUE:IVA" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1a", "M1", "VALUE:IVB" ], [ "T0", "N1b", "M1", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "VALUE:IVB" ], [ "T0", "N2a", "M1", "VALUE:IVB" ], [ "T0", "N2b", "M1", "VALUE:IVB" ], [ "T0", "N2c", "M1", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "VALUE:IVB" ], [ "T0", "N3", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1a", "M1", "ERROR:" ], [ "Tis", "N1b", "M1", "ERROR:" ], [ "Tis", "N1NOS", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "VALUE:IVB" ], [ "T1a", "N2c", "M1", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "VALUE:IVB" ], [ "T1a", "N3", "M1", "VALUE:IVB" ], [ "T1a", "NX", "M1", "VALUE:IVB" ], [ "T1b", "N0", "M1", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "VALUE:IVB" ], [ "T1b", "N2c", "M1", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "VALUE:IVB" ], [ "T1b", "N3", "M1", "VALUE:IVB" ], [ "T1b", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "VALUE:IVB" ], [ "T1NOS", "N2c", "M1", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1a", "M1", "VALUE:IVB" ], [ "T2", "N1b", "M1", "VALUE:IVB" ], [ "T2", "N1NOS", "M1", "VALUE:IVB" ], [ "T2", "N2a", "M1", "VALUE:IVB" ], [ "T2", "N2b", "M1", "VALUE:IVB" ], [ "T2", "N2c", "M1", "VALUE:IVB" ], [ "T2", "N2NOS", "M1", "VALUE:IVB" ], [ "T2", "N3", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1a", "M1", "VALUE:IVB" ], [ "T3", "N1b", "M1", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "VALUE:IVB" ], [ "T3", "N2a", "M1", "VALUE:IVB" ], [ "T3", "N2b", "M1", "VALUE:IVB" ], [ "T3", "N2c", "M1", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "VALUE:IVB" ], [ "T3", "N3", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1a", "M1", "VALUE:IVB" ], [ "TX", "N1b", "M1", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "VALUE:IVB" ], [ "TX", "N2a", "M1", "VALUE:IVB" ], [ "TX", "N2b", "M1", "VALUE:IVB" ], [ "TX", "N2c", "M1", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "VALUE:IVB" ], [ "TX", "N3", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubf.json
deleted file mode 100644
index 8fb51e79d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubf.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.230Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IC" ], [ "T1c", "N1", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIC" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIC" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:IIC" ], [ "T2c", "N1", "M0", "VALUE:IIIC" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3c", "N0", "M0", "VALUE:IIIC" ], [ "T3c", "N1", "M0", "VALUE:IIIC" ], [ "T3c", "NX", "M0", "VALUE:IIIC" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1c", "N0", "M1", "VALUE:IV" ], [ "T1c", "N1", "M1", "VALUE:IV" ], [ "T1c", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2a", "N0", "M1", "VALUE:IV" ], [ "T2a", "N1", "M1", "VALUE:IV" ], [ "T2a", "NX", "M1", "VALUE:IV" ], [ "T2b", "N0", "M1", "VALUE:IV" ], [ "T2b", "N1", "M1", "VALUE:IV" ], [ "T2b", "NX", "M1", "VALUE:IV" ], [ "T2c", "N0", "M1", "VALUE:IV" ], [ "T2c", "N1", "M1", "VALUE:IV" ], [ "T2c", "NX", "M1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3c", "N0", "M1", "VALUE:IV" ], [ "T3c", "N1", "M1", "VALUE:IV" ], [ "T3c", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubg.json
deleted file mode 100644
index b8bd35096..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubg.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.286Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:III" ], [ "T0", "N2a", "M0", "VALUE:IV" ], [ "T0", "N2b", "M0", "VALUE:IV" ], [ "T0", "N2c", "M0", "VALUE:IV" ], [ "T0", "N2NOS", "M0", "VALUE:IV" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2a", "M0", "VALUE:IV" ], [ "T1", "N2b", "M0", "VALUE:IV" ], [ "T1", "N2c", "M0", "VALUE:IV" ], [ "T1", "N2NOS", "M0", "VALUE:IV" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IV" ], [ "T2", "N2b", "M0", "VALUE:IV" ], [ "T2", "N2c", "M0", "VALUE:IV" ], [ "T2", "N2NOS", "M0", "VALUE:IV" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IV" ], [ "T3", "N2b", "M0", "VALUE:IV" ], [ "T3", "N2c", "M0", "VALUE:IV" ], [ "T3", "N2NOS", "M0", "VALUE:IV" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2a", "M0", "VALUE:IV" ], [ "T4", "N2b", "M0", "VALUE:IV" ], [ "T4", "N2c", "M0", "VALUE:IV" ], [ "T4", "N2NOS", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IV" ], [ "TX", "N2b", "M0", "VALUE:IV" ], [ "TX", "N2c", "M0", "VALUE:IV" ], [ "TX", "N2NOS", "M0", "VALUE:IV" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2a", "M1", "VALUE:IV" ], [ "T0", "N2b", "M1", "VALUE:IV" ], [ "T0", "N2c", "M1", "VALUE:IV" ], [ "T0", "N2NOS", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2a", "M1", "VALUE:IV" ], [ "T1", "N2b", "M1", "VALUE:IV" ], [ "T1", "N2c", "M1", "VALUE:IV" ], [ "T1", "N2NOS", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2a", "M1", "VALUE:IV" ], [ "T2", "N2b", "M1", "VALUE:IV" ], [ "T2", "N2c", "M1", "VALUE:IV" ], [ "T2", "N2NOS", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2a", "M1", "VALUE:IV" ], [ "T3", "N2b", "M1", "VALUE:IV" ], [ "T3", "N2c", "M1", "VALUE:IV" ], [ "T3", "N2NOS", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2a", "M1", "VALUE:IV" ], [ "T4", "N2b", "M1", "VALUE:IV" ], [ "T4", "N2c", "M1", "VALUE:IV" ], [ "T4", "N2NOS", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2a", "M1", "VALUE:IV" ], [ "TX", "N2b", "M1", "VALUE:IV" ], [ "TX", "N2c", "M1", "VALUE:IV" ], [ "TX", "N2NOS", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubh.json
deleted file mode 100644
index 1526ef7f5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubh.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.566Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a1", "N0", "M0", "VALUE:IA1" ], [ "T1a1", "N1", "M0", "VALUE:IIIB" ], [ "T1a1", "NX", "M0", "VALUE:UNK" ], [ "T1a2", "N0", "M0", "VALUE:IA2" ], [ "T1a2", "N1", "M0", "VALUE:IIIB" ], [ "T1a2", "NX", "M0", "VALUE:UNK" ], [ "T1b1", "N0", "M0", "VALUE:IB1" ], [ "T1b1", "N1", "M0", "VALUE:IIIB" ], [ "T1b1", "NX", "M0", "VALUE:UNK" ], [ "T1b2", "N0", "M0", "VALUE:IB2" ], [ "T1b2", "N1", "M0", "VALUE:IIIB" ], [ "T1b2", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a1", "N0", "M0", "VALUE:IIA1" ], [ "T2a1", "N1", "M0", "VALUE:IIIB" ], [ "T2a1", "NX", "M0", "VALUE:UNK" ], [ "T2a2", "N0", "M0", "VALUE:IIA2" ], [ "T2a2", "N1", "M0", "VALUE:IIIB" ], [ "T2a2", "NX", "M0", "VALUE:UNK" ], [ "T2aNOS", "N0", "M0", "VALUE:IIANOS" ], [ "T2aNOS", "N1", "M0", "VALUE:IIIB" ], [ "T2aNOS", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIB" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIB" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIB" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIB" ], [ "T3b", "NX", "M0", "VALUE:IIIB" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIB" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "T1aNOS", "N0", "M0", "VALUE:IANOS" ], [ "T1aNOS", "N1", "M0", "VALUE:IIIB" ], [ "T1aNOS", "NX", "M0", "VALUE:UNK" ], [ "T1bNOS", "N0", "M0", "VALUE:IBNOS" ], [ "T1bNOS", "N1", "M0", "VALUE:IIIB" ], [ "T1bNOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a1", "N0", "M1", "VALUE:IVB" ], [ "T1a1", "N1", "M1", "VALUE:IVB" ], [ "T1a1", "NX", "M1", "VALUE:IVB" ], [ "T1a2", "N0", "M1", "VALUE:IVB" ], [ "T1a2", "N1", "M1", "VALUE:IVB" ], [ "T1a2", "NX", "M1", "VALUE:IVB" ], [ "T1b1", "N0", "M1", "VALUE:IVB" ], [ "T1b1", "N1", "M1", "VALUE:IVB" ], [ "T1b1", "NX", "M1", "VALUE:IVB" ], [ "T1b2", "N0", "M1", "VALUE:IVB" ], [ "T1b2", "N1", "M1", "VALUE:IVB" ], [ "T1b2", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2a1", "N0", "M1", "VALUE:IVB" ], [ "T2a1", "N1", "M1", "VALUE:IVB" ], [ "T2a1", "NX", "M1", "VALUE:IVB" ], [ "T2a2", "N0", "M1", "VALUE:IVB" ], [ "T2a2", "N1", "M1", "VALUE:IVB" ], [ "T2a2", "NX", "M1", "VALUE:IVB" ], [ "T2aNOS", "N0", "M1", "VALUE:IVB" ], [ "T2aNOS", "N1", "M1", "VALUE:IVB" ], [ "T2aNOS", "NX", "M1", "VALUE:IVB" ], [ "T2b", "N0", "M1", "VALUE:IVB" ], [ "T2b", "N1", "M1", "VALUE:IVB" ], [ "T2b", "NX", "M1", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "VALUE:IVB" ], [ "T2NOS", "N1", "M1", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "VALUE:IVB" ], [ "T3a", "N0", "M1", "VALUE:IVB" ], [ "T3a", "N1", "M1", "VALUE:IVB" ], [ "T3a", "NX", "M1", "VALUE:IVB" ], [ "T3b", "N0", "M1", "VALUE:IVB" ], [ "T3b", "N1", "M1", "VALUE:IVB" ], [ "T3b", "NX", "M1", "VALUE:IVB" ], [ "T3NOS", "N0", "M1", "VALUE:IVB" ], [ "T3NOS", "N1", "M1", "VALUE:IVB" ], [ "T3NOS", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "T1aNOS", "N0", "M1", "VALUE:IVB" ], [ "T1aNOS", "N1", "M1", "VALUE:IVB" ], [ "T1aNOS", "NX", "M1", "VALUE:IVB" ], [ "T1bNOS", "N0", "M1", "VALUE:IVB" ], [ "T1bNOS", "N1", "M1", "VALUE:IVB" ], [ "T1bNOS", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubi.json
deleted file mode 100644
index 03e686038..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubi.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.621Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IVA" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IVA" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:IVA" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:IVA" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:IVA" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:IVA" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IVA" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVB" ], [ "T1", "N1", "M1", "VALUE:IVB" ], [ "T1", "NX", "M1", "VALUE:IVB" ], [ "T2a", "N0", "M1", "VALUE:IVB" ], [ "T2a", "N1", "M1", "VALUE:IVB" ], [ "T2a", "NX", "M1", "VALUE:IVB" ], [ "T2b", "N0", "M1", "VALUE:IVB" ], [ "T2b", "N1", "M1", "VALUE:IVB" ], [ "T2b", "NX", "M1", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "VALUE:IVB" ], [ "T2NOS", "N1", "M1", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubj.json
deleted file mode 100644
index 4daa6d1aa..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubj.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_ubj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.710Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade_ssf1",
- "name" : "Grade based on SSF#1",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N1", "M0", "1", "VALUE:III" ], [ "T0", "N1", "M0", "2", "VALUE:III" ], [ "T0", "N1", "M0", "3", "VALUE:III" ], [ "T0", "N1", "M0", "9", "VALUE:III" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "VALUE:UNK" ], [ "T1a", "N0", "M0", "1", "VALUE:IA" ], [ "T1a", "N0", "M0", "2", "VALUE:IIA" ], [ "T1a", "N0", "M0", "3", "VALUE:IIA" ], [ "T1a", "N0", "M0", "9", "VALUE:IA" ], [ "T1a", "N1", "M0", "1", "VALUE:III" ], [ "T1a", "N1", "M0", "2", "VALUE:III" ], [ "T1a", "N1", "M0", "3", "VALUE:III" ], [ "T1a", "N1", "M0", "9", "VALUE:III" ], [ "T1a", "NX", "M0", "1", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2", "VALUE:UNK" ], [ "T1a", "NX", "M0", "3", "VALUE:UNK" ], [ "T1a", "NX", "M0", "9", "VALUE:UNK" ], [ "T1b", "N0", "M0", "1", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "VALUE:IIA" ], [ "T1b", "N0", "M0", "3", "VALUE:IIA" ], [ "T1b", "N0", "M0", "9", "VALUE:IA" ], [ "T1b", "N1", "M0", "1", "VALUE:III" ], [ "T1b", "N1", "M0", "2", "VALUE:III" ], [ "T1b", "N1", "M0", "3", "VALUE:III" ], [ "T1b", "N1", "M0", "9", "VALUE:III" ], [ "T1b", "NX", "M0", "1", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2", "VALUE:UNK" ], [ "T1b", "NX", "M0", "3", "VALUE:UNK" ], [ "T1b", "NX", "M0", "9", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "1", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "2", "VALUE:IIA" ], [ "T1NOS", "N0", "M0", "3", "VALUE:IIA" ], [ "T1NOS", "N0", "M0", "9", "VALUE:IA" ], [ "T1NOS", "N1", "M0", "1", "VALUE:III" ], [ "T1NOS", "N1", "M0", "2", "VALUE:III" ], [ "T1NOS", "N1", "M0", "3", "VALUE:III" ], [ "T1NOS", "N1", "M0", "9", "VALUE:III" ], [ "T1NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "T2a", "N0", "M0", "1", "VALUE:IB" ], [ "T2a", "N0", "M0", "2", "VALUE:IIB" ], [ "T2a", "N0", "M0", "3", "VALUE:III" ], [ "T2a", "N0", "M0", "9", "VALUE:IB" ], [ "T2a", "N1", "M0", "1", "VALUE:III" ], [ "T2a", "N1", "M0", "2", "VALUE:III" ], [ "T2a", "N1", "M0", "3", "VALUE:III" ], [ "T2a", "N1", "M0", "9", "VALUE:III" ], [ "T2a", "NX", "M0", "1", "VALUE:UNK" ], [ "T2a", "NX", "M0", "2", "VALUE:UNK" ], [ "T2a", "NX", "M0", "3", "VALUE:UNK" ], [ "T2a", "NX", "M0", "9", "VALUE:UNK" ], [ "T2b", "N0", "M0", "1", "VALUE:IB" ], [ "T2b", "N0", "M0", "2", "VALUE:IIB" ], [ "T2b", "N0", "M0", "3", "VALUE:III" ], [ "T2b", "N0", "M0", "9", "VALUE:IB" ], [ "T2b", "N1", "M0", "1", "VALUE:III" ], [ "T2b", "N1", "M0", "2", "VALUE:III" ], [ "T2b", "N1", "M0", "3", "VALUE:III" ], [ "T2b", "N1", "M0", "9", "VALUE:III" ], [ "T2b", "NX", "M0", "1", "VALUE:UNK" ], [ "T2b", "NX", "M0", "2", "VALUE:UNK" ], [ "T2b", "NX", "M0", "3", "VALUE:UNK" ], [ "T2b", "NX", "M0", "9", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "1", "VALUE:IB" ], [ "T2NOS", "N0", "M0", "2", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "3", "VALUE:III" ], [ "T2NOS", "N0", "M0", "9", "VALUE:IB" ], [ "T2NOS", "N1", "M0", "1", "VALUE:III" ], [ "T2NOS", "N1", "M0", "2", "VALUE:III" ], [ "T2NOS", "N1", "M0", "3", "VALUE:III" ], [ "T2NOS", "N1", "M0", "9", "VALUE:III" ], [ "T2NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "TX", "N0", "M0", "1", "VALUE:INOS" ], [ "TX", "N0", "M0", "2", "VALUE:IINOS" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:INOS" ], [ "TX", "N1", "M0", "1", "VALUE:III" ], [ "TX", "N1", "M0", "2", "VALUE:III" ], [ "TX", "N1", "M0", "3", "VALUE:III" ], [ "TX", "N1", "M0", "9", "VALUE:III" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "N0", "M1", "1", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "VALUE:IV" ], [ "T0", "N0", "M1", "9", "VALUE:IV" ], [ "T0", "N1", "M1", "1", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "VALUE:IV" ], [ "T0", "N1", "M1", "9", "VALUE:IV" ], [ "T0", "NX", "M1", "1", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "VALUE:IV" ], [ "T0", "NX", "M1", "9", "VALUE:IV" ], [ "T1a", "N0", "M1", "1", "VALUE:IV" ], [ "T1a", "N0", "M1", "2", "VALUE:IV" ], [ "T1a", "N0", "M1", "3", "VALUE:IV" ], [ "T1a", "N0", "M1", "9", "VALUE:IV" ], [ "T1a", "N1", "M1", "1", "VALUE:IV" ], [ "T1a", "N1", "M1", "2", "VALUE:IV" ], [ "T1a", "N1", "M1", "3", "VALUE:IV" ], [ "T1a", "N1", "M1", "9", "VALUE:IV" ], [ "T1a", "NX", "M1", "1", "VALUE:IV" ], [ "T1a", "NX", "M1", "2", "VALUE:IV" ], [ "T1a", "NX", "M1", "3", "VALUE:IV" ], [ "T1a", "NX", "M1", "9", "VALUE:IV" ], [ "T1b", "N0", "M1", "1", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "VALUE:IV" ], [ "T1b", "N0", "M1", "9", "VALUE:IV" ], [ "T1b", "N1", "M1", "1", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "VALUE:IV" ], [ "T1b", "N1", "M1", "9", "VALUE:IV" ], [ "T1b", "NX", "M1", "1", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "VALUE:IV" ], [ "T1b", "NX", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "9", "VALUE:IV" ], [ "T2a", "N0", "M1", "1", "VALUE:IV" ], [ "T2a", "N0", "M1", "2", "VALUE:IV" ], [ "T2a", "N0", "M1", "3", "VALUE:IV" ], [ "T2a", "N0", "M1", "9", "VALUE:IV" ], [ "T2a", "N1", "M1", "1", "VALUE:IV" ], [ "T2a", "N1", "M1", "2", "VALUE:IV" ], [ "T2a", "N1", "M1", "3", "VALUE:IV" ], [ "T2a", "N1", "M1", "9", "VALUE:IV" ], [ "T2a", "NX", "M1", "1", "VALUE:IV" ], [ "T2a", "NX", "M1", "2", "VALUE:IV" ], [ "T2a", "NX", "M1", "3", "VALUE:IV" ], [ "T2a", "NX", "M1", "9", "VALUE:IV" ], [ "T2b", "N0", "M1", "1", "VALUE:IV" ], [ "T2b", "N0", "M1", "2", "VALUE:IV" ], [ "T2b", "N0", "M1", "3", "VALUE:IV" ], [ "T2b", "N0", "M1", "9", "VALUE:IV" ], [ "T2b", "N1", "M1", "1", "VALUE:IV" ], [ "T2b", "N1", "M1", "2", "VALUE:IV" ], [ "T2b", "N1", "M1", "3", "VALUE:IV" ], [ "T2b", "N1", "M1", "9", "VALUE:IV" ], [ "T2b", "NX", "M1", "1", "VALUE:IV" ], [ "T2b", "NX", "M1", "2", "VALUE:IV" ], [ "T2b", "NX", "M1", "3", "VALUE:IV" ], [ "T2b", "NX", "M1", "9", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T2NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T2NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T2NOS", "NX", "M1", "9", "VALUE:IV" ], [ "TX", "N0", "M1", "1", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "VALUE:IV" ], [ "TX", "N0", "M1", "9", "VALUE:IV" ], [ "TX", "N1", "M1", "1", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "VALUE:IV" ], [ "TX", "N1", "M1", "9", "VALUE:IV" ], [ "TX", "NX", "M1", "1", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "VALUE:IV" ], [ "TX", "NX", "M1", "9", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubk.json
deleted file mode 100644
index 5460ca261..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubk.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.784Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2a", "M0", "VALUE:IVA" ], [ "T0", "N2b", "M0", "VALUE:IVA" ], [ "T0", "N2c", "M0", "VALUE:IVA" ], [ "T0", "N2NOS", "M0", "VALUE:IVA" ], [ "T0", "N3", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:III" ], [ "T1a", "N2a", "M0", "VALUE:IVA" ], [ "T1a", "N2b", "M0", "VALUE:IVA" ], [ "T1a", "N2c", "M0", "VALUE:IVA" ], [ "T1a", "N2NOS", "M0", "VALUE:IVA" ], [ "T1a", "N3", "M0", "VALUE:IVB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:III" ], [ "T1b", "N2a", "M0", "VALUE:IVA" ], [ "T1b", "N2b", "M0", "VALUE:IVA" ], [ "T1b", "N2c", "M0", "VALUE:IVA" ], [ "T1b", "N2NOS", "M0", "VALUE:IVA" ], [ "T1b", "N3", "M0", "VALUE:IVB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:III" ], [ "T1NOS", "N2a", "M0", "VALUE:IVA" ], [ "T1NOS", "N2b", "M0", "VALUE:IVA" ], [ "T1NOS", "N2c", "M0", "VALUE:IVA" ], [ "T1NOS", "N2NOS", "M0", "VALUE:IVA" ], [ "T1NOS", "N3", "M0", "VALUE:IVB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IVA" ], [ "T2", "N2b", "M0", "VALUE:IVA" ], [ "T2", "N2c", "M0", "VALUE:IVA" ], [ "T2", "N2NOS", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "N2a", "M0", "VALUE:IVA" ], [ "T4a", "N2b", "M0", "VALUE:IVA" ], [ "T4a", "N2c", "M0", "VALUE:IVA" ], [ "T4a", "N2NOS", "M0", "VALUE:IVA" ], [ "T4a", "N3", "M0", "VALUE:IVB" ], [ "T4a", "NX", "M0", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "N2a", "M0", "VALUE:IVB" ], [ "T4b", "N2b", "M0", "VALUE:IVB" ], [ "T4b", "N2c", "M0", "VALUE:IVB" ], [ "T4b", "N2NOS", "M0", "VALUE:IVB" ], [ "T4b", "N3", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N3", "M0", "VALUE:IVB" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IVNOS" ], [ "TX", "N2b", "M0", "VALUE:IVNOS" ], [ "TX", "N2c", "M0", "VALUE:IVNOS" ], [ "TX", "N2NOS", "M0", "VALUE:IVNOS" ], [ "TX", "N3", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2a", "M1", "VALUE:IVC" ], [ "T0", "N2b", "M1", "VALUE:IVC" ], [ "T0", "N2c", "M1", "VALUE:IVC" ], [ "T0", "N2NOS", "M1", "VALUE:IVC" ], [ "T0", "N3", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IVC" ], [ "T1a", "N1", "M1", "VALUE:IVC" ], [ "T1a", "N2a", "M1", "VALUE:IVC" ], [ "T1a", "N2b", "M1", "VALUE:IVC" ], [ "T1a", "N2c", "M1", "VALUE:IVC" ], [ "T1a", "N2NOS", "M1", "VALUE:IVC" ], [ "T1a", "N3", "M1", "VALUE:IVC" ], [ "T1a", "NX", "M1", "VALUE:IVC" ], [ "T1b", "N0", "M1", "VALUE:IVC" ], [ "T1b", "N1", "M1", "VALUE:IVC" ], [ "T1b", "N2a", "M1", "VALUE:IVC" ], [ "T1b", "N2b", "M1", "VALUE:IVC" ], [ "T1b", "N2c", "M1", "VALUE:IVC" ], [ "T1b", "N2NOS", "M1", "VALUE:IVC" ], [ "T1b", "N3", "M1", "VALUE:IVC" ], [ "T1b", "NX", "M1", "VALUE:IVC" ], [ "T1NOS", "N0", "M1", "VALUE:IVC" ], [ "T1NOS", "N1", "M1", "VALUE:IVC" ], [ "T1NOS", "N2a", "M1", "VALUE:IVC" ], [ "T1NOS", "N2b", "M1", "VALUE:IVC" ], [ "T1NOS", "N2c", "M1", "VALUE:IVC" ], [ "T1NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T1NOS", "N3", "M1", "VALUE:IVC" ], [ "T1NOS", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2a", "M1", "VALUE:IVC" ], [ "T2", "N2b", "M1", "VALUE:IVC" ], [ "T2", "N2c", "M1", "VALUE:IVC" ], [ "T2", "N2NOS", "M1", "VALUE:IVC" ], [ "T2", "N3", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2a", "M1", "VALUE:IVC" ], [ "T3", "N2b", "M1", "VALUE:IVC" ], [ "T3", "N2c", "M1", "VALUE:IVC" ], [ "T3", "N2NOS", "M1", "VALUE:IVC" ], [ "T3", "N3", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "N2a", "M1", "VALUE:IVC" ], [ "T4a", "N2b", "M1", "VALUE:IVC" ], [ "T4a", "N2c", "M1", "VALUE:IVC" ], [ "T4a", "N2NOS", "M1", "VALUE:IVC" ], [ "T4a", "N3", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "N2a", "M1", "VALUE:IVC" ], [ "T4b", "N2b", "M1", "VALUE:IVC" ], [ "T4b", "N2c", "M1", "VALUE:IVC" ], [ "T4b", "N2NOS", "M1", "VALUE:IVC" ], [ "T4b", "N3", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "N2a", "M1", "VALUE:IVC" ], [ "T4NOS", "N2b", "M1", "VALUE:IVC" ], [ "T4NOS", "N2c", "M1", "VALUE:IVC" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N3", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2a", "M1", "VALUE:IVC" ], [ "TX", "N2b", "M1", "VALUE:IVC" ], [ "TX", "N2c", "M1", "VALUE:IVC" ], [ "TX", "N2NOS", "M1", "VALUE:IVC" ], [ "TX", "N3", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubl.json
deleted file mode 100644
index 658f5ae0f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubl.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.853Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IVA" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IVA" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IVA" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IVA" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IVA" ], [ "T3b", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IVA" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIC" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IVA" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "T1", "N0", "M1", "VALUE:IVB" ], [ "T1", "N1", "M1", "VALUE:IVB" ], [ "T1", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3a", "N0", "M1", "VALUE:IVB" ], [ "T3a", "N1", "M1", "VALUE:IVB" ], [ "T3a", "NX", "M1", "VALUE:IVB" ], [ "T3b", "N0", "M1", "VALUE:IVB" ], [ "T3b", "N1", "M1", "VALUE:IVB" ], [ "T3b", "NX", "M1", "VALUE:IVB" ], [ "T3NOS", "N0", "M1", "VALUE:IVB" ], [ "T3NOS", "N1", "M1", "VALUE:IVB" ], [ "T3NOS", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubm.json
deleted file mode 100644
index 99eb530af..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubm.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.901Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubn.json
deleted file mode 100644
index 2e21c20a2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubn.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:56.958Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIB" ], [ "T1", "N2", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:II" ], [ "T2a", "N1", "M0", "VALUE:IIIB" ], [ "T2a", "N2", "M0", "VALUE:IVB" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:II" ], [ "T2b", "N1", "M0", "VALUE:IIIB" ], [ "T2b", "N2", "M0", "VALUE:IVB" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:II" ], [ "T2NOS", "N1", "M0", "VALUE:IIIB" ], [ "T2NOS", "N2", "M0", "VALUE:IVB" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIIA" ], [ "T3", "N1", "M0", "VALUE:IIIB" ], [ "T3", "N2", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "N2", "M0", "VALUE:IVB" ], [ "T4", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "N2", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVB" ], [ "T1", "N1", "M1", "VALUE:IVB" ], [ "T1", "N2", "M1", "VALUE:IVB" ], [ "T1", "NX", "M1", "VALUE:IVB" ], [ "T2a", "N0", "M1", "VALUE:IVB" ], [ "T2a", "N1", "M1", "VALUE:IVB" ], [ "T2a", "N2", "M1", "VALUE:IVB" ], [ "T2a", "NX", "M1", "VALUE:IVB" ], [ "T2b", "N0", "M1", "VALUE:IVB" ], [ "T2b", "N1", "M1", "VALUE:IVB" ], [ "T2b", "N2", "M1", "VALUE:IVB" ], [ "T2b", "NX", "M1", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "VALUE:IVB" ], [ "T2NOS", "N1", "M1", "VALUE:IVB" ], [ "T2NOS", "N2", "M1", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1", "M1", "VALUE:IVB" ], [ "T3", "N2", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "N2", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "N2", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubp.json
deleted file mode 100644
index 31e2cf92c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubp.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "ajcc7_stage_ubp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:57.025Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "PSA",
- "type" : "INPUT"
- }, {
- "key" : "gleason",
- "name" : "Gleason",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N0", "M0", "001-099", "002-006", "ERROR:" ], [ "T0", "N0", "M0", "001-099", "007", "ERROR:" ], [ "T0", "N0", "M0", "001-099", "008-010", "ERROR:" ], [ "T0", "N0", "M0", "001-099", "988,998,999", "ERROR:" ], [ "T0", "N0", "M0", "100-199", "002-006", "ERROR:" ], [ "T0", "N0", "M0", "100-199", "007", "ERROR:" ], [ "T0", "N0", "M0", "100-199", "008-010", "ERROR:" ], [ "T0", "N0", "M0", "100-199", "988,998,999", "ERROR:" ], [ "T0", "N0", "M0", "200-980", "002-006", "ERROR:" ], [ "T0", "N0", "M0", "200-980", "007", "ERROR:" ], [ "T0", "N0", "M0", "200-980", "008-010", "ERROR:" ], [ "T0", "N0", "M0", "200-980", "988,998,999", "ERROR:" ], [ "T0", "N0", "M0", "988,997,998,999", "002-006", "ERROR:" ], [ "T0", "N0", "M0", "988,997,998,999", "007", "ERROR:" ], [ "T0", "N0", "M0", "988,997,998,999", "008-010", "ERROR:" ], [ "T0", "N0", "M0", "988,997,998,999", "988,998,999", "ERROR:" ], [ "T0", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T0", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T0", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T0", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T0", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T0", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T0", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T0", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T0", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T0", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T0", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T0", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T0", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T0", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T0", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T0", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T0", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T0", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T0", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T1a", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N0", "M0", "001-099", "002-006", "VALUE:I" ], [ "T1a", "N0", "M0", "001-099", "007", "VALUE:IIA" ], [ "T1a", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T1a", "N0", "M0", "001-099", "988,998,999", "VALUE:I" ], [ "T1a", "N0", "M0", "100-199", "002-006", "VALUE:IIA" ], [ "T1a", "N0", "M0", "100-199", "007", "VALUE:IIA" ], [ "T1a", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T1a", "N0", "M0", "100-199", "988,998,999", "VALUE:IIA" ], [ "T1a", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T1a", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T1a", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T1a", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T1a", "N0", "M0", "988,997,998,999", "002-006", "VALUE:I" ], [ "T1a", "N0", "M0", "988,997,998,999", "007", "VALUE:IIA" ], [ "T1a", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T1a", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:I" ], [ "T1a", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T1a", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T1a", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T1a", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T1a", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T1a", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T1a", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T1a", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T1a", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T1a", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T1a", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T1a", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T1a", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T1a", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T1a", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T1a", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T1a", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T1a", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T1a", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T1b", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N0", "M0", "001-099", "002-006", "VALUE:I" ], [ "T1b", "N0", "M0", "001-099", "007", "VALUE:IIA" ], [ "T1b", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T1b", "N0", "M0", "001-099", "988,998,999", "VALUE:I" ], [ "T1b", "N0", "M0", "100-199", "002-006", "VALUE:IIA" ], [ "T1b", "N0", "M0", "100-199", "007", "VALUE:IIA" ], [ "T1b", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T1b", "N0", "M0", "100-199", "988,998,999", "VALUE:IIA" ], [ "T1b", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T1b", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T1b", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T1b", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T1b", "N0", "M0", "988,997,998,999", "002-006", "VALUE:I" ], [ "T1b", "N0", "M0", "988,997,998,999", "007", "VALUE:IIA" ], [ "T1b", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T1b", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:I" ], [ "T1b", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T1b", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T1b", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T1b", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T1b", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T1b", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T1b", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T1b", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T1b", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T1b", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T1b", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T1b", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T1b", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T1b", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T1b", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T1b", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T1b", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T1b", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T1b", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T1c", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N0", "M0", "001-099", "002-006", "VALUE:I" ], [ "T1c", "N0", "M0", "001-099", "007", "VALUE:IIA" ], [ "T1c", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T1c", "N0", "M0", "001-099", "988,998,999", "VALUE:I" ], [ "T1c", "N0", "M0", "100-199", "002-006", "VALUE:IIA" ], [ "T1c", "N0", "M0", "100-199", "007", "VALUE:IIA" ], [ "T1c", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T1c", "N0", "M0", "100-199", "988,998,999", "VALUE:IIA" ], [ "T1c", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T1c", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T1c", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T1c", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T1c", "N0", "M0", "988,997,998,999", "002-006", "VALUE:I" ], [ "T1c", "N0", "M0", "988,997,998,999", "007", "VALUE:IIA" ], [ "T1c", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T1c", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:I" ], [ "T1c", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T1c", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T1c", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T1c", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T1c", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T1c", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T1c", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T1c", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T1c", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T1c", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T1c", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T1c", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T1c", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T1c", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T1c", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T1c", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T1c", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T1c", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T1c", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N0", "M0", "001-099", "002-006", "VALUE:I" ], [ "T1NOS", "N0", "M0", "001-099", "007", "VALUE:IIA" ], [ "T1NOS", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T1NOS", "N0", "M0", "001-099", "988,998,999", "VALUE:I" ], [ "T1NOS", "N0", "M0", "100-199", "002-006", "VALUE:IIA" ], [ "T1NOS", "N0", "M0", "100-199", "007", "VALUE:IIA" ], [ "T1NOS", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T1NOS", "N0", "M0", "100-199", "988,998,999", "VALUE:IIA" ], [ "T1NOS", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T1NOS", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T1NOS", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T1NOS", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T1NOS", "N0", "M0", "988,997,998,999", "002-006", "VALUE:I" ], [ "T1NOS", "N0", "M0", "988,997,998,999", "007", "VALUE:IIA" ], [ "T1NOS", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T1NOS", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:I" ], [ "T1NOS", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T2a", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N0", "M0", "001-099", "002-006", "VALUE:I" ], [ "T2a", "N0", "M0", "001-099", "007", "VALUE:IIA" ], [ "T2a", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T2a", "N0", "M0", "001-099", "988,998,999", "VALUE:I" ], [ "T2a", "N0", "M0", "100-199", "002-006", "VALUE:IIA" ], [ "T2a", "N0", "M0", "100-199", "007", "VALUE:IIA" ], [ "T2a", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T2a", "N0", "M0", "100-199", "988,998,999", "VALUE:IIA" ], [ "T2a", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T2a", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T2a", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T2a", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T2a", "N0", "M0", "988,997,998,999", "002-006", "VALUE:I" ], [ "T2a", "N0", "M0", "988,997,998,999", "007", "VALUE:IIA" ], [ "T2a", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T2a", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:I" ], [ "T2a", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T2a", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T2a", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T2a", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T2a", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T2a", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T2a", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T2a", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T2a", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T2a", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T2a", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T2a", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T2a", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T2a", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T2a", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T2a", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T2a", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T2a", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T2a", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T2b", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N0", "M0", "001-099", "002-006", "VALUE:IIA" ], [ "T2b", "N0", "M0", "001-099", "007", "VALUE:IIA" ], [ "T2b", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T2b", "N0", "M0", "001-099", "988,998,999", "VALUE:IIA" ], [ "T2b", "N0", "M0", "100-199", "002-006", "VALUE:IIA" ], [ "T2b", "N0", "M0", "100-199", "007", "VALUE:IIA" ], [ "T2b", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T2b", "N0", "M0", "100-199", "988,998,999", "VALUE:IIA" ], [ "T2b", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T2b", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T2b", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T2b", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T2b", "N0", "M0", "988,997,998,999", "002-006", "VALUE:IIA" ], [ "T2b", "N0", "M0", "988,997,998,999", "007", "VALUE:IIA" ], [ "T2b", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T2b", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:IIA" ], [ "T2b", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T2b", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T2b", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T2b", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T2b", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T2b", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T2b", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T2b", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T2b", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T2b", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T2b", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T2b", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T2b", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T2b", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T2b", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T2b", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T2b", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T2b", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T2b", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T2c", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N0", "M0", "001-099", "002-006", "VALUE:IIB" ], [ "T2c", "N0", "M0", "001-099", "007", "VALUE:IIB" ], [ "T2c", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T2c", "N0", "M0", "001-099", "988,998,999", "VALUE:IIB" ], [ "T2c", "N0", "M0", "100-199", "002-006", "VALUE:IIB" ], [ "T2c", "N0", "M0", "100-199", "007", "VALUE:IIB" ], [ "T2c", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T2c", "N0", "M0", "100-199", "988,998,999", "VALUE:IIB" ], [ "T2c", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T2c", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T2c", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T2c", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T2c", "N0", "M0", "988,997,998,999", "002-006", "VALUE:IIB" ], [ "T2c", "N0", "M0", "988,997,998,999", "007", "VALUE:IIB" ], [ "T2c", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T2c", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:IIB" ], [ "T2c", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T2c", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T2c", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T2c", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T2c", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T2c", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T2c", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T2c", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T2c", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T2c", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T2c", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T2c", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T2c", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T2c", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T2c", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T2c", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T2c", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T2c", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T2c", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N0", "M0", "001-099", "002-006", "VALUE:I" ], [ "T2NOS", "N0", "M0", "001-099", "007", "VALUE:IIA" ], [ "T2NOS", "N0", "M0", "001-099", "008-010", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "001-099", "988,998,999", "VALUE:I" ], [ "T2NOS", "N0", "M0", "100-199", "002-006", "VALUE:IIA" ], [ "T2NOS", "N0", "M0", "100-199", "007", "VALUE:IIA" ], [ "T2NOS", "N0", "M0", "100-199", "008-010", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "100-199", "988,998,999", "VALUE:IIA" ], [ "T2NOS", "N0", "M0", "200-980", "002-006", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "200-980", "007", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "200-980", "008-010", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "200-980", "988,998,999", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "988,997,998,999", "002-006", "VALUE:I" ], [ "T2NOS", "N0", "M0", "988,997,998,999", "007", "VALUE:IIA" ], [ "T2NOS", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IIB" ], [ "T2NOS", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:I" ], [ "T2NOS", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T3a", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N0", "M0", "001-099", "002-006", "VALUE:III" ], [ "T3a", "N0", "M0", "001-099", "007", "VALUE:III" ], [ "T3a", "N0", "M0", "001-099", "008-010", "VALUE:III" ], [ "T3a", "N0", "M0", "001-099", "988,998,999", "VALUE:III" ], [ "T3a", "N0", "M0", "100-199", "002-006", "VALUE:III" ], [ "T3a", "N0", "M0", "100-199", "007", "VALUE:III" ], [ "T3a", "N0", "M0", "100-199", "008-010", "VALUE:III" ], [ "T3a", "N0", "M0", "100-199", "988,998,999", "VALUE:III" ], [ "T3a", "N0", "M0", "200-980", "002-006", "VALUE:III" ], [ "T3a", "N0", "M0", "200-980", "007", "VALUE:III" ], [ "T3a", "N0", "M0", "200-980", "008-010", "VALUE:III" ], [ "T3a", "N0", "M0", "200-980", "988,998,999", "VALUE:III" ], [ "T3a", "N0", "M0", "988,997,998,999", "002-006", "VALUE:III" ], [ "T3a", "N0", "M0", "988,997,998,999", "007", "VALUE:III" ], [ "T3a", "N0", "M0", "988,997,998,999", "008-010", "VALUE:III" ], [ "T3a", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:III" ], [ "T3a", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T3a", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T3a", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T3a", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T3a", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T3a", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T3a", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T3a", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T3a", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T3a", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T3a", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T3a", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T3a", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T3a", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T3a", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T3a", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T3a", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T3a", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T3a", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T3b", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N0", "M0", "001-099", "002-006", "VALUE:III" ], [ "T3b", "N0", "M0", "001-099", "007", "VALUE:III" ], [ "T3b", "N0", "M0", "001-099", "008-010", "VALUE:III" ], [ "T3b", "N0", "M0", "001-099", "988,998,999", "VALUE:III" ], [ "T3b", "N0", "M0", "100-199", "002-006", "VALUE:III" ], [ "T3b", "N0", "M0", "100-199", "007", "VALUE:III" ], [ "T3b", "N0", "M0", "100-199", "008-010", "VALUE:III" ], [ "T3b", "N0", "M0", "100-199", "988,998,999", "VALUE:III" ], [ "T3b", "N0", "M0", "200-980", "002-006", "VALUE:III" ], [ "T3b", "N0", "M0", "200-980", "007", "VALUE:III" ], [ "T3b", "N0", "M0", "200-980", "008-010", "VALUE:III" ], [ "T3b", "N0", "M0", "200-980", "988,998,999", "VALUE:III" ], [ "T3b", "N0", "M0", "988,997,998,999", "002-006", "VALUE:III" ], [ "T3b", "N0", "M0", "988,997,998,999", "007", "VALUE:III" ], [ "T3b", "N0", "M0", "988,997,998,999", "008-010", "VALUE:III" ], [ "T3b", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:III" ], [ "T3b", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T3b", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T3b", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T3b", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T3b", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T3b", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T3b", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T3b", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T3b", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T3b", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T3b", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T3b", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T3b", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T3b", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T3b", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T3b", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T3b", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T3b", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T3b", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N0", "M0", "001-099", "002-006", "VALUE:III" ], [ "T3NOS", "N0", "M0", "001-099", "007", "VALUE:III" ], [ "T3NOS", "N0", "M0", "001-099", "008-010", "VALUE:III" ], [ "T3NOS", "N0", "M0", "001-099", "988,998,999", "VALUE:III" ], [ "T3NOS", "N0", "M0", "100-199", "002-006", "VALUE:III" ], [ "T3NOS", "N0", "M0", "100-199", "007", "VALUE:III" ], [ "T3NOS", "N0", "M0", "100-199", "008-010", "VALUE:III" ], [ "T3NOS", "N0", "M0", "100-199", "988,998,999", "VALUE:III" ], [ "T3NOS", "N0", "M0", "200-980", "002-006", "VALUE:III" ], [ "T3NOS", "N0", "M0", "200-980", "007", "VALUE:III" ], [ "T3NOS", "N0", "M0", "200-980", "008-010", "VALUE:III" ], [ "T3NOS", "N0", "M0", "200-980", "988,998,999", "VALUE:III" ], [ "T3NOS", "N0", "M0", "988,997,998,999", "002-006", "VALUE:III" ], [ "T3NOS", "N0", "M0", "988,997,998,999", "007", "VALUE:III" ], [ "T3NOS", "N0", "M0", "988,997,998,999", "008-010", "VALUE:III" ], [ "T3NOS", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:III" ], [ "T3NOS", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T4", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N0", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N0", "M0", "001-099", "007", "VALUE:IV" ], [ "T4", "N0", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N0", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N0", "M0", "100-199", "007", "VALUE:IV" ], [ "T4", "N0", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N0", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N0", "M0", "200-980", "007", "VALUE:IV" ], [ "T4", "N0", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N0", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N0", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N0", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "T4", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "T4", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "T4", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "NX", "M0", "001-099", "002-006", "VALUE:IV" ], [ "T4", "NX", "M0", "001-099", "007", "VALUE:IV" ], [ "T4", "NX", "M0", "001-099", "008-010", "VALUE:IV" ], [ "T4", "NX", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M0", "100-199", "002-006", "VALUE:IV" ], [ "T4", "NX", "M0", "100-199", "007", "VALUE:IV" ], [ "T4", "NX", "M0", "100-199", "008-010", "VALUE:IV" ], [ "T4", "NX", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M0", "200-980", "002-006", "VALUE:IV" ], [ "T4", "NX", "M0", "200-980", "007", "VALUE:IV" ], [ "T4", "NX", "M0", "200-980", "008-010", "VALUE:IV" ], [ "T4", "NX", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "NX", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "NX", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N0", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N0", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N0", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N0", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "TX", "N0", "M0", "001-099", "007", "VALUE:UNK" ], [ "TX", "N0", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "TX", "N0", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "TX", "N0", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "TX", "N0", "M0", "100-199", "007", "VALUE:UNK" ], [ "TX", "N0", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "TX", "N0", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "TX", "N0", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "TX", "N0", "M0", "200-980", "007", "VALUE:UNK" ], [ "TX", "N0", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "TX", "N0", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "TX", "N0", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "TX", "N0", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "TX", "N0", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "TX", "N0", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "TX", "N1", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N1", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N1", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N1", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N1", "M0", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N1", "M0", "001-099", "007", "VALUE:IV" ], [ "TX", "N1", "M0", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N1", "M0", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M0", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N1", "M0", "100-199", "007", "VALUE:IV" ], [ "TX", "N1", "M0", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N1", "M0", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M0", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N1", "M0", "200-980", "007", "VALUE:IV" ], [ "TX", "N1", "M0", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N1", "M0", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M0", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N1", "M0", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N1", "M0", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N1", "M0", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M0", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "NX", "M0", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "NX", "M0", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "NX", "M0", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "NX", "M0", "001-099", "002-006", "VALUE:UNK" ], [ "TX", "NX", "M0", "001-099", "007", "VALUE:UNK" ], [ "TX", "NX", "M0", "001-099", "008-010", "VALUE:UNK" ], [ "TX", "NX", "M0", "001-099", "988,998,999", "VALUE:UNK" ], [ "TX", "NX", "M0", "100-199", "002-006", "VALUE:UNK" ], [ "TX", "NX", "M0", "100-199", "007", "VALUE:UNK" ], [ "TX", "NX", "M0", "100-199", "008-010", "VALUE:UNK" ], [ "TX", "NX", "M0", "100-199", "988,998,999", "VALUE:UNK" ], [ "TX", "NX", "M0", "200-980", "002-006", "VALUE:UNK" ], [ "TX", "NX", "M0", "200-980", "007", "VALUE:UNK" ], [ "TX", "NX", "M0", "200-980", "008-010", "VALUE:UNK" ], [ "TX", "NX", "M0", "200-980", "988,998,999", "VALUE:UNK" ], [ "TX", "NX", "M0", "988,997,998,999", "002-006", "VALUE:UNK" ], [ "TX", "NX", "M0", "988,997,998,999", "007", "VALUE:UNK" ], [ "TX", "NX", "M0", "988,997,998,999", "008-010", "VALUE:UNK" ], [ "TX", "NX", "M0", "988,997,998,999", "988,998,999", "VALUE:UNK" ], [ "T0", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T0", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T0", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T0", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T0", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T0", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T0", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T0", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T0", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T0", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1a", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1a", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1a", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1a", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1a", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1a", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1a", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1a", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1a", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1b", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1b", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1b", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1b", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1b", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1b", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1b", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1b", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1b", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1c", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1c", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1c", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1c", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1c", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1c", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1c", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1c", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1c", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2a", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2a", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2a", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2a", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2a", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2a", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2a", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2a", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2a", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2b", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2b", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2b", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2b", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2b", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2b", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2b", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2b", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2b", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2c", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2c", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2c", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2c", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2c", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2c", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2c", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2c", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2c", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3a", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3a", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3a", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3a", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3a", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3a", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3a", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3a", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3a", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3b", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3b", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3b", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3b", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3b", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3b", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3b", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3b", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3b", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "T4", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "T4", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "T4", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "T4", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "T4", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "T4", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "T4", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "T4", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "T4", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N0", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N0", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N0", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N0", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1a", "001-099", "007", "VALUE:IV" ], [ "TX", "N0", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1a", "100-199", "007", "VALUE:IV" ], [ "TX", "N0", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1a", "200-980", "007", "VALUE:IV" ], [ "TX", "N0", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N0", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N1", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N1", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N1", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N1", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1a", "001-099", "007", "VALUE:IV" ], [ "TX", "N1", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1a", "100-199", "007", "VALUE:IV" ], [ "TX", "N1", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1a", "200-980", "007", "VALUE:IV" ], [ "TX", "N1", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N1", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1a", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "NX", "M1a", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "NX", "M1a", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "NX", "M1a", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "NX", "M1a", "001-099", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1a", "001-099", "007", "VALUE:IV" ], [ "TX", "NX", "M1a", "001-099", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1a", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1a", "100-199", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1a", "100-199", "007", "VALUE:IV" ], [ "TX", "NX", "M1a", "100-199", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1a", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1a", "200-980", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1a", "200-980", "007", "VALUE:IV" ], [ "TX", "NX", "M1a", "200-980", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1a", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1a", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1a", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "NX", "M1a", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1a", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T0", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T0", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T0", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T0", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T0", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T0", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T0", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T0", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T0", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1a", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1a", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1a", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1a", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1a", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1a", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1a", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1a", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1a", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1b", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1b", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1b", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1b", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1b", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1b", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1b", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1b", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1b", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1c", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1c", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1c", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1c", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1c", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1c", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1c", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1c", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1c", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2a", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2a", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2a", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2a", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2a", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2a", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2a", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2a", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2a", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2b", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2b", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2b", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2b", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2b", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2b", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2b", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2b", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2b", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2c", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2c", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2c", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2c", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2c", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2c", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2c", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2c", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2c", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3a", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3a", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3a", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3a", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3a", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3a", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3a", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3a", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3a", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3b", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3b", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3b", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3b", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3b", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3b", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3b", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3b", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3b", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "T4", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "T4", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "T4", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "T4", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "T4", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "T4", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "T4", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "T4", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "T4", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N0", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N0", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N0", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N0", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1b", "001-099", "007", "VALUE:IV" ], [ "TX", "N0", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1b", "100-199", "007", "VALUE:IV" ], [ "TX", "N0", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1b", "200-980", "007", "VALUE:IV" ], [ "TX", "N0", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N0", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N1", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N1", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N1", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N1", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1b", "001-099", "007", "VALUE:IV" ], [ "TX", "N1", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1b", "100-199", "007", "VALUE:IV" ], [ "TX", "N1", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1b", "200-980", "007", "VALUE:IV" ], [ "TX", "N1", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N1", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1b", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "NX", "M1b", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "NX", "M1b", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "NX", "M1b", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "NX", "M1b", "001-099", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1b", "001-099", "007", "VALUE:IV" ], [ "TX", "NX", "M1b", "001-099", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1b", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1b", "100-199", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1b", "100-199", "007", "VALUE:IV" ], [ "TX", "NX", "M1b", "100-199", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1b", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1b", "200-980", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1b", "200-980", "007", "VALUE:IV" ], [ "TX", "NX", "M1b", "200-980", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1b", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1b", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1b", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "NX", "M1b", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1b", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T0", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T0", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T0", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T0", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T0", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T0", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T0", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T0", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T0", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1a", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1a", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1a", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1a", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1a", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1a", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1a", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1a", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1a", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1b", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1b", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1b", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1b", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1b", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1b", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1b", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1b", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1b", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1c", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1c", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1c", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1c", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1c", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1c", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1c", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1c", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1c", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2a", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2a", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2a", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2a", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2a", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2a", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2a", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2a", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2a", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2b", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2b", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2b", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2b", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2b", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2b", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2b", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2b", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2b", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2c", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2c", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2c", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2c", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2c", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2c", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2c", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2c", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2c", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3a", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3a", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3a", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3a", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3a", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3a", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3a", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3a", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3a", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3b", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3b", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3b", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3b", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3b", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3b", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3b", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3b", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3b", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "T4", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "T4", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "T4", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "T4", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "T4", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "T4", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "T4", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "T4", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "T4", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N0", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N0", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N0", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N0", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1c", "001-099", "007", "VALUE:IV" ], [ "TX", "N0", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1c", "100-199", "007", "VALUE:IV" ], [ "TX", "N0", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1c", "200-980", "007", "VALUE:IV" ], [ "TX", "N0", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N0", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N1", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N1", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N1", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N1", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1c", "001-099", "007", "VALUE:IV" ], [ "TX", "N1", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1c", "100-199", "007", "VALUE:IV" ], [ "TX", "N1", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1c", "200-980", "007", "VALUE:IV" ], [ "TX", "N1", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N1", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1c", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "NX", "M1c", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "NX", "M1c", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "NX", "M1c", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "NX", "M1c", "001-099", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1c", "001-099", "007", "VALUE:IV" ], [ "TX", "NX", "M1c", "001-099", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1c", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1c", "100-199", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1c", "100-199", "007", "VALUE:IV" ], [ "TX", "NX", "M1c", "100-199", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1c", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1c", "200-980", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1c", "200-980", "007", "VALUE:IV" ], [ "TX", "NX", "M1c", "200-980", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1c", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1c", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1c", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "NX", "M1c", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1c", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T0", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T0", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T0", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T0", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1a", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1a", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1a", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1a", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1b", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1b", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1b", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1b", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1c", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1c", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1c", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1c", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T1NOS", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T1NOS", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T1NOS", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T1NOS", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2a", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2a", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2a", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2a", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2b", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2b", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2b", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2b", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2c", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2c", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2c", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2c", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T2NOS", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T2NOS", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T2NOS", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T2NOS", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3a", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3a", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3a", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3a", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3b", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3b", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3b", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3b", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T3NOS", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T3NOS", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T3NOS", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T3NOS", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "T4", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "T4", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "T4", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "T4", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N0", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N0", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N0", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N0", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "N1", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "N1", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "N1", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "N1", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "000,981-987,989-990", "002-006", "ERROR:" ], [ "TX", "NX", "M1NOS", "000,981-987,989-990", "007", "ERROR:" ], [ "TX", "NX", "M1NOS", "000,981-987,989-990", "008-010", "ERROR:" ], [ "TX", "NX", "M1NOS", "000,981-987,989-990", "988,998,999", "ERROR:" ], [ "TX", "NX", "M1NOS", "001-099", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "001-099", "007", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "001-099", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "001-099", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "100-199", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "100-199", "007", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "100-199", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "100-199", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "200-980", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "200-980", "007", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "200-980", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "200-980", "988,998,999", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "988,997,998,999", "002-006", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "988,997,998,999", "007", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "988,997,998,999", "008-010", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "988,997,998,999", "988,998,999", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubq.json
deleted file mode 100644
index 80d847189..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubq.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:57.901Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2", "M0", "VALUE:III" ], [ "T0", "N3", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIA" ], [ "T1a", "N2", "M0", "VALUE:IIIA" ], [ "T1a", "N3", "M0", "VALUE:IIIB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IA" ], [ "T1b", "N1", "M0", "VALUE:IIA" ], [ "T1b", "N2", "M0", "VALUE:IIIA" ], [ "T1b", "N3", "M0", "VALUE:IIIB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:IA" ], [ "T1NOS", "N1", "M0", "VALUE:IIA" ], [ "T1NOS", "N2", "M0", "VALUE:IIIA" ], [ "T1NOS", "N3", "M0", "VALUE:IIIB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IB" ], [ "T2a", "N1", "M0", "VALUE:IIA" ], [ "T2a", "N2", "M0", "VALUE:IIIA" ], [ "T2a", "N3", "M0", "VALUE:IIIB" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIA" ], [ "T2b", "N1", "M0", "VALUE:IIB" ], [ "T2b", "N2", "M0", "VALUE:IIIA" ], [ "T2b", "N3", "M0", "VALUE:IIIB" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:UNK" ], [ "T2NOS", "N1", "M0", "VALUE:II" ], [ "T2NOS", "N2", "M0", "VALUE:IIIA" ], [ "T2NOS", "N3", "M0", "VALUE:IIIB" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIIA" ], [ "T3", "N2", "M0", "VALUE:IIIA" ], [ "T3", "N3", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IIIA" ], [ "T4", "N2", "M0", "VALUE:IIIB" ], [ "T4", "N3", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:OCCULT" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:III" ], [ "TX", "N3", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1a", "VALUE:IV" ], [ "T0", "N1", "M1a", "VALUE:IV" ], [ "T0", "N2", "M1a", "VALUE:IV" ], [ "T0", "N3", "M1a", "VALUE:IV" ], [ "T0", "NX", "M1a", "VALUE:IV" ], [ "Tis", "N0", "M1a", "ERROR:" ], [ "Tis", "N1", "M1a", "ERROR:" ], [ "Tis", "N2", "M1a", "ERROR:" ], [ "Tis", "N3", "M1a", "ERROR:" ], [ "Tis", "NX", "M1a", "ERROR:" ], [ "T1a", "N0", "M1a", "VALUE:IV" ], [ "T1a", "N1", "M1a", "VALUE:IV" ], [ "T1a", "N2", "M1a", "VALUE:IV" ], [ "T1a", "N3", "M1a", "VALUE:IV" ], [ "T1a", "NX", "M1a", "VALUE:IV" ], [ "T1b", "N0", "M1a", "VALUE:IV" ], [ "T1b", "N1", "M1a", "VALUE:IV" ], [ "T1b", "N2", "M1a", "VALUE:IV" ], [ "T1b", "N3", "M1a", "VALUE:IV" ], [ "T1b", "NX", "M1a", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "VALUE:IV" ], [ "T1NOS", "N2", "M1a", "VALUE:IV" ], [ "T1NOS", "N3", "M1a", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "VALUE:IV" ], [ "T2a", "N0", "M1a", "VALUE:IV" ], [ "T2a", "N1", "M1a", "VALUE:IV" ], [ "T2a", "N2", "M1a", "VALUE:IV" ], [ "T2a", "N3", "M1a", "VALUE:IV" ], [ "T2a", "NX", "M1a", "VALUE:IV" ], [ "T2b", "N0", "M1a", "VALUE:IV" ], [ "T2b", "N1", "M1a", "VALUE:IV" ], [ "T2b", "N2", "M1a", "VALUE:IV" ], [ "T2b", "N3", "M1a", "VALUE:IV" ], [ "T2b", "NX", "M1a", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "VALUE:IV" ], [ "T2NOS", "N2", "M1a", "VALUE:IV" ], [ "T2NOS", "N3", "M1a", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "VALUE:IV" ], [ "T3", "N0", "M1a", "VALUE:IV" ], [ "T3", "N1", "M1a", "VALUE:IV" ], [ "T3", "N2", "M1a", "VALUE:IV" ], [ "T3", "N3", "M1a", "VALUE:IV" ], [ "T3", "NX", "M1a", "VALUE:IV" ], [ "T4", "N0", "M1a", "VALUE:IV" ], [ "T4", "N1", "M1a", "VALUE:IV" ], [ "T4", "N2", "M1a", "VALUE:IV" ], [ "T4", "N3", "M1a", "VALUE:IV" ], [ "T4", "NX", "M1a", "VALUE:IV" ], [ "TX", "N0", "M1a", "VALUE:IV" ], [ "TX", "N1", "M1a", "VALUE:IV" ], [ "TX", "N2", "M1a", "VALUE:IV" ], [ "TX", "N3", "M1a", "VALUE:IV" ], [ "TX", "NX", "M1a", "VALUE:IV" ], [ "T0", "N0", "M1b", "VALUE:IV" ], [ "T0", "N1", "M1b", "VALUE:IV" ], [ "T0", "N2", "M1b", "VALUE:IV" ], [ "T0", "N3", "M1b", "VALUE:IV" ], [ "T0", "NX", "M1b", "VALUE:IV" ], [ "Tis", "N0", "M1b", "ERROR:" ], [ "Tis", "N1", "M1b", "ERROR:" ], [ "Tis", "N2", "M1b", "ERROR:" ], [ "Tis", "N3", "M1b", "ERROR:" ], [ "Tis", "NX", "M1b", "ERROR:" ], [ "T1a", "N0", "M1b", "VALUE:IV" ], [ "T1a", "N1", "M1b", "VALUE:IV" ], [ "T1a", "N2", "M1b", "VALUE:IV" ], [ "T1a", "N3", "M1b", "VALUE:IV" ], [ "T1a", "NX", "M1b", "VALUE:IV" ], [ "T1b", "N0", "M1b", "VALUE:IV" ], [ "T1b", "N1", "M1b", "VALUE:IV" ], [ "T1b", "N2", "M1b", "VALUE:IV" ], [ "T1b", "N3", "M1b", "VALUE:IV" ], [ "T1b", "NX", "M1b", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "VALUE:IV" ], [ "T1NOS", "N2", "M1b", "VALUE:IV" ], [ "T1NOS", "N3", "M1b", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "VALUE:IV" ], [ "T2a", "N0", "M1b", "VALUE:IV" ], [ "T2a", "N1", "M1b", "VALUE:IV" ], [ "T2a", "N2", "M1b", "VALUE:IV" ], [ "T2a", "N3", "M1b", "VALUE:IV" ], [ "T2a", "NX", "M1b", "VALUE:IV" ], [ "T2b", "N0", "M1b", "VALUE:IV" ], [ "T2b", "N1", "M1b", "VALUE:IV" ], [ "T2b", "N2", "M1b", "VALUE:IV" ], [ "T2b", "N3", "M1b", "VALUE:IV" ], [ "T2b", "NX", "M1b", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "VALUE:IV" ], [ "T2NOS", "N2", "M1b", "VALUE:IV" ], [ "T2NOS", "N3", "M1b", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "VALUE:IV" ], [ "T3", "N0", "M1b", "VALUE:IV" ], [ "T3", "N1", "M1b", "VALUE:IV" ], [ "T3", "N2", "M1b", "VALUE:IV" ], [ "T3", "N3", "M1b", "VALUE:IV" ], [ "T3", "NX", "M1b", "VALUE:IV" ], [ "T4", "N0", "M1b", "VALUE:IV" ], [ "T4", "N1", "M1b", "VALUE:IV" ], [ "T4", "N2", "M1b", "VALUE:IV" ], [ "T4", "N3", "M1b", "VALUE:IV" ], [ "T4", "NX", "M1b", "VALUE:IV" ], [ "TX", "N0", "M1b", "VALUE:IV" ], [ "TX", "N1", "M1b", "VALUE:IV" ], [ "TX", "N2", "M1b", "VALUE:IV" ], [ "TX", "N3", "M1b", "VALUE:IV" ], [ "TX", "NX", "M1b", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "VALUE:IV" ], [ "T0", "N2", "M1NOS", "VALUE:IV" ], [ "T0", "N3", "M1NOS", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "VALUE:IV" ], [ "Tis", "N0", "M1NOS", "ERROR:" ], [ "Tis", "N1", "M1NOS", "ERROR:" ], [ "Tis", "N2", "M1NOS", "ERROR:" ], [ "Tis", "N3", "M1NOS", "ERROR:" ], [ "Tis", "NX", "M1NOS", "ERROR:" ], [ "T1a", "N0", "M1NOS", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "VALUE:IV" ], [ "T1a", "N2", "M1NOS", "VALUE:IV" ], [ "T1a", "N3", "M1NOS", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "VALUE:IV" ], [ "T1b", "N2", "M1NOS", "VALUE:IV" ], [ "T1b", "N3", "M1NOS", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N2", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N3", "M1NOS", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "VALUE:IV" ], [ "T2a", "N2", "M1NOS", "VALUE:IV" ], [ "T2a", "N3", "M1NOS", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "VALUE:IV" ], [ "T2b", "N2", "M1NOS", "VALUE:IV" ], [ "T2b", "N3", "M1NOS", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N2", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N3", "M1NOS", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T3", "N0", "M1NOS", "VALUE:IV" ], [ "T3", "N1", "M1NOS", "VALUE:IV" ], [ "T3", "N2", "M1NOS", "VALUE:IV" ], [ "T3", "N3", "M1NOS", "VALUE:IV" ], [ "T3", "NX", "M1NOS", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "VALUE:IV" ], [ "T4", "N2", "M1NOS", "VALUE:IV" ], [ "T4", "N3", "M1NOS", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "VALUE:IV" ], [ "TX", "N2", "M1NOS", "VALUE:IV" ], [ "TX", "N3", "M1NOS", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubs.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubs.json
deleted file mode 100644
index 0485627ed..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubs.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubs",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:57.982Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC1" ], [ "T0", "N2", "M0", "VALUE:IIIC2" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC1" ], [ "T1a", "N2", "M0", "VALUE:IIIC2" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC1" ], [ "T1b", "N2", "M0", "VALUE:IIIC2" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC1" ], [ "T1NOS", "N2", "M0", "VALUE:IIIC2" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IIIC1" ], [ "T2", "N2", "M0", "VALUE:IIIC2" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC1" ], [ "T3a", "N2", "M0", "VALUE:IIIC2" ], [ "T3a", "NX", "M0", "VALUE:IIIA" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC1" ], [ "T3b", "N2", "M0", "VALUE:IIIC2" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC1" ], [ "T3NOS", "N2", "M0", "VALUE:IIIC2" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "N2", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "N2", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IVB" ], [ "T1a", "N1", "M1", "VALUE:IVB" ], [ "T1a", "N2", "M1", "VALUE:IVB" ], [ "T1a", "NX", "M1", "VALUE:IVB" ], [ "T1b", "N0", "M1", "VALUE:IVB" ], [ "T1b", "N1", "M1", "VALUE:IVB" ], [ "T1b", "N2", "M1", "VALUE:IVB" ], [ "T1b", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "N2", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1", "M1", "VALUE:IVB" ], [ "T2", "N2", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3a", "N0", "M1", "VALUE:IVB" ], [ "T3a", "N1", "M1", "VALUE:IVB" ], [ "T3a", "N2", "M1", "VALUE:IVB" ], [ "T3a", "NX", "M1", "VALUE:IVB" ], [ "T3b", "N0", "M1", "VALUE:IVB" ], [ "T3b", "N1", "M1", "VALUE:IVB" ], [ "T3b", "N2", "M1", "VALUE:IVB" ], [ "T3b", "NX", "M1", "VALUE:IVB" ], [ "T3NOS", "N0", "M1", "VALUE:IVB" ], [ "T3NOS", "N1", "M1", "VALUE:IVB" ], [ "T3NOS", "N2", "M1", "VALUE:IVB" ], [ "T3NOS", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "N2", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "N2", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubt.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubt.json
deleted file mode 100644
index 23ddaf9e2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubt.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubt",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:58.259Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IC" ], [ "T1c", "N1", "M0", "VALUE:IIIC" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIC" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIC" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "T1a", "N0", "M1", "VALUE:IVB" ], [ "T1a", "N1", "M1", "VALUE:IVB" ], [ "T1a", "NX", "M1", "VALUE:IVB" ], [ "T1b", "N0", "M1", "VALUE:IVB" ], [ "T1b", "N1", "M1", "VALUE:IVB" ], [ "T1b", "NX", "M1", "VALUE:IVB" ], [ "T1c", "N0", "M1", "VALUE:IVB" ], [ "T1c", "N1", "M1", "VALUE:IVB" ], [ "T1c", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2a", "N0", "M1", "VALUE:IVB" ], [ "T2a", "N1", "M1", "VALUE:IVB" ], [ "T2a", "NX", "M1", "VALUE:IVB" ], [ "T2b", "N0", "M1", "VALUE:IVB" ], [ "T2b", "N1", "M1", "VALUE:IVB" ], [ "T2b", "NX", "M1", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "VALUE:IVB" ], [ "T2NOS", "N1", "M1", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "VALUE:IVB" ], [ "T3a", "N0", "M1", "VALUE:IVB" ], [ "T3a", "N1", "M1", "VALUE:IVB" ], [ "T3a", "NX", "M1", "VALUE:IVB" ], [ "T3b", "N0", "M1", "VALUE:IVB" ], [ "T3b", "N1", "M1", "VALUE:IVB" ], [ "T3b", "NX", "M1", "VALUE:IVB" ], [ "T3NOS", "N0", "M1", "VALUE:IVB" ], [ "T3NOS", "N1", "M1", "VALUE:IVB" ], [ "T3NOS", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubu.json
deleted file mode 100644
index 687554b01..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubu.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ubu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:58.311Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:IA" ], [ "T1a", "N1", "M0", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IB" ], [ "T1b", "N1", "M0", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IIIC" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IIIC" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:IINOS" ], [ "T2NOS", "N1", "M0", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:IIINOS" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIINOS" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "T1a", "N0", "M1", "VALUE:IVB" ], [ "T1a", "N1", "M1", "VALUE:IVB" ], [ "T1a", "NX", "M1", "VALUE:IVB" ], [ "T1b", "N0", "M1", "VALUE:IVB" ], [ "T1b", "N1", "M1", "VALUE:IVB" ], [ "T1b", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2a", "N0", "M1", "VALUE:IVB" ], [ "T2a", "N1", "M1", "VALUE:IVB" ], [ "T2a", "NX", "M1", "VALUE:IVB" ], [ "T2b", "N0", "M1", "VALUE:IVB" ], [ "T2b", "N1", "M1", "VALUE:IVB" ], [ "T2b", "NX", "M1", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "VALUE:IVB" ], [ "T2NOS", "N1", "M1", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "VALUE:IVB" ], [ "T3a", "N0", "M1", "VALUE:IVB" ], [ "T3a", "N1", "M1", "VALUE:IVB" ], [ "T3a", "NX", "M1", "VALUE:IVB" ], [ "T3b", "N0", "M1", "VALUE:IVB" ], [ "T3b", "N1", "M1", "VALUE:IVB" ], [ "T3b", "NX", "M1", "VALUE:IVB" ], [ "T3NOS", "N0", "M1", "VALUE:IVB" ], [ "T3NOS", "N1", "M1", "VALUE:IVB" ], [ "T3NOS", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubv.json
deleted file mode 100644
index 571172d3c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubv.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_ubv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:58.363Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "nodes_eval",
- "name" : "Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", " ", "ERROR:" ], [ "T0", "N0", "M0", "0,1,5,9", "ERROR:" ], [ "T0", "N0", "M0", "2,3,6,8", "ERROR:" ], [ "T0", "N1", "M0", " ", "VALUE:III" ], [ "T0", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2", "M0", " ", "VALUE:III" ], [ "T0", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T0", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2c", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2c", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N3", "M0", " ", "VALUE:IIIC" ], [ "T0", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T0", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T0", "NX", "M0", " ", "VALUE:UNK" ], [ "T0", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T0", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "Tis", "N0", "M0", " ", "VALUE:0" ], [ "Tis", "N0", "M0", "0,1,5,9", "VALUE:0" ], [ "Tis", "N0", "M0", "2,3,6,8", "VALUE:0" ], [ "Tis", "N1", "M0", " ", "ERROR:" ], [ "Tis", "N1", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M0", " ", "ERROR:" ], [ "Tis", "N1a", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M0", " ", "ERROR:" ], [ "Tis", "N1b", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M0", " ", "ERROR:" ], [ "Tis", "N1NOS", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M0", " ", "ERROR:" ], [ "Tis", "N2", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M0", " ", "ERROR:" ], [ "Tis", "N2a", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M0", " ", "ERROR:" ], [ "Tis", "N2b", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M0", " ", "ERROR:" ], [ "Tis", "N2c", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M0", " ", "ERROR:" ], [ "Tis", "N2NOS", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M0", " ", "ERROR:" ], [ "Tis", "N3", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M0", " ", "VALUE:0" ], [ "Tis", "NX", "M0", "0,1,5,9", "VALUE:0" ], [ "Tis", "NX", "M0", "2,3,6,8", "VALUE:0" ], [ "T1a", "N0", "M0", " ", "VALUE:IA" ], [ "T1a", "N0", "M0", "0,1,5,9", "VALUE:IA" ], [ "T1a", "N0", "M0", "2,3,6,8", "VALUE:IA" ], [ "T1a", "N1", "M0", " ", "VALUE:III" ], [ "T1a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T1a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T1a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T1a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T1a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1a", "N2", "M0", " ", "VALUE:III" ], [ "T1a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T1a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T1a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T1a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T1a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T1a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T1a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1a", "NX", "M0", " ", "VALUE:UNK" ], [ "T1a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T1b", "N0", "M0", " ", "VALUE:IB" ], [ "T1b", "N0", "M0", "0,1,5,9", "VALUE:IB" ], [ "T1b", "N0", "M0", "2,3,6,8", "VALUE:IB" ], [ "T1b", "N1", "M0", " ", "VALUE:III" ], [ "T1b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T1b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T1b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T1b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1b", "N2", "M0", " ", "VALUE:III" ], [ "T1b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T1b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T1b", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T1b", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1b", "N2c", "M0", " ", "VALUE:IIIC" ], [ "T1b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2c", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T1b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1b", "NX", "M0", " ", "VALUE:UNK" ], [ "T1b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", " ", "VALUE:INOS" ], [ "T1NOS", "N0", "M0", "0,1,5,9", "VALUE:INOS" ], [ "T1NOS", "N0", "M0", "2,3,6,8", "VALUE:INOS" ], [ "T1NOS", "N1", "M0", " ", "VALUE:III" ], [ "T1NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T1NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N2", "M0", " ", "VALUE:III" ], [ "T1NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T1NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N2c", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T1NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2a", "N0", "M0", " ", "VALUE:IB" ], [ "T2a", "N0", "M0", "0,1,5,9", "VALUE:IB" ], [ "T2a", "N0", "M0", "2,3,6,8", "VALUE:IB" ], [ "T2a", "N1", "M0", " ", "VALUE:III" ], [ "T2a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T2a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T2a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T2a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T2a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2a", "N2", "M0", " ", "VALUE:III" ], [ "T2a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T2a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T2a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T2a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T2a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T2a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T2a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T2a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2a", "NX", "M0", " ", "VALUE:UNK" ], [ "T2a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2b", "N0", "M0", " ", "VALUE:IIA" ], [ "T2b", "N0", "M0", "0,1,5,9", "VALUE:IIA" ], [ "T2b", "N0", "M0", "2,3,6,8", "VALUE:IIA" ], [ "T2b", "N1", "M0", " ", "VALUE:III" ], [ "T2b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T2b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T2b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T2b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2b", "N2", "M0", " ", "VALUE:III" ], [ "T2b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T2b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T2b", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T2b", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2b", "N2c", "M0", " ", "VALUE:IIIC" ], [ "T2b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2c", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T2b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T2b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2b", "NX", "M0", " ", "VALUE:UNK" ], [ "T2b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", " ", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2NOS", "N1", "M0", " ", "VALUE:III" ], [ "T2NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T2NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N2", "M0", " ", "VALUE:III" ], [ "T2NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T2NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N2c", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T2NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T2NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T2NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T3a", "N0", "M0", " ", "VALUE:IIA" ], [ "T3a", "N0", "M0", "0,1,5,9", "VALUE:IIA" ], [ "T3a", "N0", "M0", "2,3,6,8", "VALUE:IIA" ], [ "T3a", "N1", "M0", " ", "VALUE:III" ], [ "T3a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T3a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T3a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T3a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T3a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3a", "N2", "M0", " ", "VALUE:III" ], [ "T3a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T3a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T3a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T3a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T3a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T3a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T3a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T3a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3a", "NX", "M0", " ", "VALUE:UNK" ], [ "T3a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T3a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T3b", "N0", "M0", " ", "VALUE:IIB" ], [ "T3b", "N0", "M0", "0,1,5,9", "VALUE:IIB" ], [ "T3b", "N0", "M0", "2,3,6,8", "VALUE:IIB" ], [ "T3b", "N1", "M0", " ", "VALUE:III" ], [ "T3b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T3b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T3b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T3b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3b", "N2", "M0", " ", "VALUE:III" ], [ "T3b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T3b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T3b", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T3b", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3b", "N2c", "M0", " ", "VALUE:IIIC" ], [ "T3b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2c", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T3b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T3b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3b", "NX", "M0", " ", "VALUE:UNK" ], [ "T3b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T3b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", " ", "VALUE:IINOS" ], [ "T3NOS", "N0", "M0", "0,1,5,9", "VALUE:IINOS" ], [ "T3NOS", "N0", "M0", "2,3,6,8", "VALUE:IINOS" ], [ "T3NOS", "N1", "M0", " ", "VALUE:III" ], [ "T3NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T3NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N2", "M0", " ", "VALUE:III" ], [ "T3NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T3NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N2c", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T3NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T3NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T3NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T4a", "N0", "M0", " ", "VALUE:IIB" ], [ "T4a", "N0", "M0", "0,1,5,9", "VALUE:IIB" ], [ "T4a", "N0", "M0", "2,3,6,8", "VALUE:IIB" ], [ "T4a", "N1", "M0", " ", "VALUE:III" ], [ "T4a", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T4a", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T4a", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T4a", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T4a", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4a", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4a", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4a", "N2", "M0", " ", "VALUE:III" ], [ "T4a", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T4a", "N2a", "M0", " ", "VALUE:IIIA" ], [ "T4a", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T4a", "N2b", "M0", " ", "VALUE:IIIB" ], [ "T4a", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4a", "N2c", "M0", " ", "VALUE:IIIB" ], [ "T4a", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2c", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4a", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4a", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4a", "N3", "M0", " ", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T4a", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4a", "NX", "M0", " ", "VALUE:UNK" ], [ "T4a", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T4a", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T4b", "N0", "M0", " ", "VALUE:IIC" ], [ "T4b", "N0", "M0", "0,1,5,9", "VALUE:IIC" ], [ "T4b", "N0", "M0", "2,3,6,8", "VALUE:IIC" ], [ "T4b", "N1", "M0", " ", "VALUE:III" ], [ "T4b", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T4b", "N1a", "M0", " ", "VALUE:IIIB" ], [ "T4b", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4b", "N1b", "M0", " ", "VALUE:IIIC" ], [ "T4b", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4b", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4b", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4b", "N2", "M0", " ", "VALUE:III" ], [ "T4b", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T4b", "N2a", "M0", " ", "VALUE:IIIB" ], [ "T4b", "N2a", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T4b", "N2a", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4b", "N2b", "M0", " ", "VALUE:IIIC" ], [ "T4b", "N2b", "M0", "0,1,5,9", "VALUE:IIIC" ], [ "T4b", "N2b", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4b", "N2c", "M0", " ", "VALUE:IIIC" ], [ "T4b", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N2c", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4b", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4b", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4b", "N3", "M0", " ", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T4b", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4b", "NX", "M0", " ", "VALUE:UNK" ], [ "T4b", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T4b", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T4NOS", "N0", "M0", " ", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "0,1,5,9", "VALUE:IINOS" ], [ "T4NOS", "N0", "M0", "2,3,6,8", "VALUE:IINOS" ], [ "T4NOS", "N1", "M0", " ", "VALUE:III" ], [ "T4NOS", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "T4NOS", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N2", "M0", " ", "VALUE:III" ], [ "T4NOS", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "T4NOS", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N2c", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2c", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4NOS", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4NOS", "N3", "M0", " ", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "T4NOS", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", " ", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N0", "M0", " ", "VALUE:UNK" ], [ "TX", "N0", "M0", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N0", "M0", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N1", "M0", " ", "VALUE:III" ], [ "TX", "N1", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1", "M0", "2,3,6,8", "VALUE:III" ], [ "TX", "N1a", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N1a", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N1b", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N1b", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N1NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2", "M0", " ", "VALUE:III" ], [ "TX", "N2", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2", "M0", "2,3,6,8", "VALUE:III" ], [ "TX", "N2a", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N2a", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2a", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2b", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N2b", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2b", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2c", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N2c", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2c", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2NOS", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N2NOS", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N2NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N3", "M0", " ", "VALUE:IIIC" ], [ "TX", "N3", "M0", "0,1,5,9", "VALUE:III" ], [ "TX", "N3", "M0", "2,3,6,8", "VALUE:IIIC" ], [ "TX", "NX", "M0", " ", "VALUE:UNK" ], [ "TX", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "TX", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N0", "M1a", " ", "VALUE:IV" ], [ "T0", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1a", " ", "VALUE:IV" ], [ "T0", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1a", " ", "VALUE:IV" ], [ "T0", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1a", " ", "VALUE:IV" ], [ "T0", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1a", " ", "VALUE:IV" ], [ "T0", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1a", " ", "VALUE:IV" ], [ "T0", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1a", " ", "VALUE:IV" ], [ "T0", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1a", " ", "VALUE:IV" ], [ "T0", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1a", " ", "VALUE:IV" ], [ "T0", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1a", " ", "VALUE:IV" ], [ "T0", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1a", " ", "ERROR:" ], [ "Tis", "N0", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1a", " ", "ERROR:" ], [ "Tis", "N1", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1a", " ", "ERROR:" ], [ "Tis", "N1a", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1a", " ", "ERROR:" ], [ "Tis", "N1b", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1a", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1a", " ", "ERROR:" ], [ "Tis", "N2", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1a", " ", "ERROR:" ], [ "Tis", "N2a", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1a", " ", "ERROR:" ], [ "Tis", "N2b", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1a", " ", "ERROR:" ], [ "Tis", "N2c", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1a", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1a", " ", "ERROR:" ], [ "Tis", "N3", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1a", " ", "ERROR:" ], [ "Tis", "NX", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1a", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1a", " ", "VALUE:IV" ], [ "T1a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1a", " ", "VALUE:IV" ], [ "T1a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1a", " ", "VALUE:IV" ], [ "T1a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1a", " ", "VALUE:IV" ], [ "T1b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1a", " ", "VALUE:IV" ], [ "T1b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1a", " ", "VALUE:IV" ], [ "T1b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1a", " ", "VALUE:IV" ], [ "T2a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1a", " ", "VALUE:IV" ], [ "T2a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1a", " ", "VALUE:IV" ], [ "T2a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1a", " ", "VALUE:IV" ], [ "T2b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1a", " ", "VALUE:IV" ], [ "T2b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1a", " ", "VALUE:IV" ], [ "T2b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1a", " ", "VALUE:IV" ], [ "T3a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1a", " ", "VALUE:IV" ], [ "T3a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1a", " ", "VALUE:IV" ], [ "T3a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1a", " ", "VALUE:IV" ], [ "T3b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1a", " ", "VALUE:IV" ], [ "T3b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1a", " ", "VALUE:IV" ], [ "T3b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1a", " ", "VALUE:IV" ], [ "T4a", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1a", " ", "VALUE:IV" ], [ "T4a", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1a", " ", "VALUE:IV" ], [ "T4a", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1a", " ", "VALUE:IV" ], [ "T4b", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1a", " ", "VALUE:IV" ], [ "T4b", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1a", " ", "VALUE:IV" ], [ "T4b", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1a", " ", "VALUE:IV" ], [ "TX", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1a", " ", "VALUE:IV" ], [ "TX", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1a", " ", "VALUE:IV" ], [ "TX", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1a", " ", "VALUE:IV" ], [ "TX", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1a", " ", "VALUE:IV" ], [ "TX", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1a", " ", "VALUE:IV" ], [ "TX", "N2a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1a", " ", "VALUE:IV" ], [ "TX", "N2b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1a", " ", "VALUE:IV" ], [ "TX", "N2c", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1a", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1a", " ", "VALUE:IV" ], [ "TX", "N3", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1a", " ", "VALUE:IV" ], [ "TX", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1b", " ", "VALUE:IV" ], [ "T0", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1b", " ", "VALUE:IV" ], [ "T0", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1b", " ", "VALUE:IV" ], [ "T0", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1b", " ", "VALUE:IV" ], [ "T0", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1b", " ", "VALUE:IV" ], [ "T0", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1b", " ", "VALUE:IV" ], [ "T0", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1b", " ", "VALUE:IV" ], [ "T0", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1b", " ", "VALUE:IV" ], [ "T0", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1b", " ", "VALUE:IV" ], [ "T0", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1b", " ", "VALUE:IV" ], [ "T0", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1b", " ", "ERROR:" ], [ "Tis", "N0", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1b", " ", "ERROR:" ], [ "Tis", "N1", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1b", " ", "ERROR:" ], [ "Tis", "N1a", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1b", " ", "ERROR:" ], [ "Tis", "N1b", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1b", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1b", " ", "ERROR:" ], [ "Tis", "N2", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1b", " ", "ERROR:" ], [ "Tis", "N2a", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1b", " ", "ERROR:" ], [ "Tis", "N2b", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1b", " ", "ERROR:" ], [ "Tis", "N2c", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1b", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1b", " ", "ERROR:" ], [ "Tis", "N3", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1b", " ", "ERROR:" ], [ "Tis", "NX", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1b", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1b", " ", "VALUE:IV" ], [ "T1a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1b", " ", "VALUE:IV" ], [ "T1a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1b", " ", "VALUE:IV" ], [ "T1a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1b", " ", "VALUE:IV" ], [ "T1b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1b", " ", "VALUE:IV" ], [ "T1b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1b", " ", "VALUE:IV" ], [ "T1b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1b", " ", "VALUE:IV" ], [ "T2a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1b", " ", "VALUE:IV" ], [ "T2a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1b", " ", "VALUE:IV" ], [ "T2a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1b", " ", "VALUE:IV" ], [ "T2b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1b", " ", "VALUE:IV" ], [ "T2b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1b", " ", "VALUE:IV" ], [ "T2b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1b", " ", "VALUE:IV" ], [ "T3a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1b", " ", "VALUE:IV" ], [ "T3a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1b", " ", "VALUE:IV" ], [ "T3a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1b", " ", "VALUE:IV" ], [ "T3b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1b", " ", "VALUE:IV" ], [ "T3b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1b", " ", "VALUE:IV" ], [ "T3b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1b", " ", "VALUE:IV" ], [ "T4a", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1b", " ", "VALUE:IV" ], [ "T4a", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1b", " ", "VALUE:IV" ], [ "T4a", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1b", " ", "VALUE:IV" ], [ "T4b", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1b", " ", "VALUE:IV" ], [ "T4b", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1b", " ", "VALUE:IV" ], [ "T4b", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1b", " ", "VALUE:IV" ], [ "TX", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1b", " ", "VALUE:IV" ], [ "TX", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1b", " ", "VALUE:IV" ], [ "TX", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1b", " ", "VALUE:IV" ], [ "TX", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1b", " ", "VALUE:IV" ], [ "TX", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1b", " ", "VALUE:IV" ], [ "TX", "N2a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1b", " ", "VALUE:IV" ], [ "TX", "N2b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1b", " ", "VALUE:IV" ], [ "TX", "N2c", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1b", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1b", " ", "VALUE:IV" ], [ "TX", "N3", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1b", " ", "VALUE:IV" ], [ "TX", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1c", " ", "VALUE:IV" ], [ "T0", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1c", " ", "VALUE:IV" ], [ "T0", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1c", " ", "VALUE:IV" ], [ "T0", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1c", " ", "VALUE:IV" ], [ "T0", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1c", " ", "VALUE:IV" ], [ "T0", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1c", " ", "VALUE:IV" ], [ "T0", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1c", " ", "VALUE:IV" ], [ "T0", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1c", " ", "VALUE:IV" ], [ "T0", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1c", " ", "VALUE:IV" ], [ "T0", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1c", " ", "VALUE:IV" ], [ "T0", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1c", " ", "ERROR:" ], [ "Tis", "N0", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1c", " ", "ERROR:" ], [ "Tis", "N1", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1c", " ", "ERROR:" ], [ "Tis", "N1a", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1c", " ", "ERROR:" ], [ "Tis", "N1b", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1c", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1c", " ", "ERROR:" ], [ "Tis", "N2", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1c", " ", "ERROR:" ], [ "Tis", "N2a", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1c", " ", "ERROR:" ], [ "Tis", "N2b", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1c", " ", "ERROR:" ], [ "Tis", "N2c", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1c", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1c", " ", "ERROR:" ], [ "Tis", "N3", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1c", " ", "ERROR:" ], [ "Tis", "NX", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1c", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1c", " ", "VALUE:IV" ], [ "T1a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1c", " ", "VALUE:IV" ], [ "T1a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1c", " ", "VALUE:IV" ], [ "T1a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1c", " ", "VALUE:IV" ], [ "T1b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1c", " ", "VALUE:IV" ], [ "T1b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1c", " ", "VALUE:IV" ], [ "T1b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1c", " ", "VALUE:IV" ], [ "T2a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1c", " ", "VALUE:IV" ], [ "T2a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1c", " ", "VALUE:IV" ], [ "T2a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1c", " ", "VALUE:IV" ], [ "T2b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1c", " ", "VALUE:IV" ], [ "T2b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1c", " ", "VALUE:IV" ], [ "T2b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1c", " ", "VALUE:IV" ], [ "T3a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1c", " ", "VALUE:IV" ], [ "T3a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1c", " ", "VALUE:IV" ], [ "T3a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1c", " ", "VALUE:IV" ], [ "T3b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1c", " ", "VALUE:IV" ], [ "T3b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1c", " ", "VALUE:IV" ], [ "T3b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1c", " ", "VALUE:IV" ], [ "T4a", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1c", " ", "VALUE:IV" ], [ "T4a", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1c", " ", "VALUE:IV" ], [ "T4a", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1c", " ", "VALUE:IV" ], [ "T4b", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1c", " ", "VALUE:IV" ], [ "T4b", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1c", " ", "VALUE:IV" ], [ "T4b", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1c", " ", "VALUE:IV" ], [ "TX", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1c", " ", "VALUE:IV" ], [ "TX", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1c", " ", "VALUE:IV" ], [ "TX", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1c", " ", "VALUE:IV" ], [ "TX", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1c", " ", "VALUE:IV" ], [ "TX", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1c", " ", "VALUE:IV" ], [ "TX", "N2a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1c", " ", "VALUE:IV" ], [ "TX", "N2b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1c", " ", "VALUE:IV" ], [ "TX", "N2c", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1c", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1c", " ", "VALUE:IV" ], [ "TX", "N3", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1c", " ", "VALUE:IV" ], [ "TX", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1NOS", " ", "ERROR:" ], [ "Tis", "N0", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1a", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1b", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2a", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2a", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2a", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2b", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2b", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2b", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2c", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2c", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2c", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2NOS", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2NOS", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2NOS", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N3", "M1NOS", " ", "ERROR:" ], [ "Tis", "N3", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N3", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1NOS", " ", "ERROR:" ], [ "Tis", "NX", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1NOS", "2,3,6,8", "ERROR:" ], [ "T1a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "N3", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2a", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2b", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2c", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2c", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2c", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2NOS", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N3", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N3", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N3", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1NOS", " ", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubw.json
deleted file mode 100644
index 72b3616bd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubw.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc7_stage_ubw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:58.898Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "SSF2",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000,020", "VALUE:IA" ], [ "100", "010,030", "VALUE:IB" ], [ "100", "999", "VALUE:I" ], [ "100-999", "988", "ERROR:" ], [ "110", "000,020", "VALUE:IEA" ], [ "110", "010,030", "VALUE:IEB" ], [ "110", "999", "VALUE:IE" ], [ "120", "000,020", "VALUE:ISA" ], [ "120", "010,030", "VALUE:ISB" ], [ "120", "999", "VALUE:IS" ], [ "200", "000,020", "VALUE:IIA" ], [ "200", "010,030", "VALUE:IIB" ], [ "200", "999", "VALUE:II" ], [ "210", "000,020", "VALUE:IIEA" ], [ "210", "010,030", "VALUE:IIEB" ], [ "210", "999", "VALUE:IIE" ], [ "220", "000,020", "VALUE:IISA" ], [ "220", "010,030", "VALUE:IISB" ], [ "220", "999", "VALUE:IIS" ], [ "230", "000,020", "VALUE:IIESA" ], [ "230", "010,030", "VALUE:IIESB" ], [ "230", "999", "VALUE:IIES" ], [ "300", "000,020", "VALUE:IIIA" ], [ "300", "010,030", "VALUE:IIIB" ], [ "300", "999", "VALUE:III" ], [ "310", "000,020", "VALUE:IIIEA" ], [ "310", "010,030", "VALUE:IIIEB" ], [ "310", "999", "VALUE:IIIE" ], [ "320", "000,020", "VALUE:IIISA" ], [ "320", "010,030", "VALUE:IIISB" ], [ "320", "999", "VALUE:IIIS" ], [ "330", "000,020", "VALUE:IIIESA" ], [ "330", "010,030", "VALUE:IIIESB" ], [ "330", "999", "VALUE:IIIES" ], [ "800", "000,020", "VALUE:IVA" ], [ "800", "010,030", "VALUE:IVB" ], [ "800", "999", "VALUE:IV" ], [ "999", "000,020", "VALUE:UNK" ], [ "999", "010,030", "VALUE:UNK" ], [ "999", "999", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubx.json
deleted file mode 100644
index d0cc5314c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ubx.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_ubx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:58.971Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "peripheral_blood_involvement",
- "name" : "Peripheral Blood Involvement",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "B0NOS", "ERROR:" ], [ "T0", "N0", "M0", "B0a", "ERROR:" ], [ "T0", "N0", "M0", "B0b", "ERROR:" ], [ "T0", "N0", "M0", "B1NOS", "ERROR:" ], [ "T0", "N0", "M0", "B1a", "ERROR:" ], [ "T0", "N0", "M0", "B1b", "ERROR:" ], [ "T0", "N0", "M0", "B2", "ERROR:" ], [ "T0", "N0", "M0", "BX", "ERROR:" ], [ "T0", "N1a", "M0", "B0NOS", "VALUE:UNK" ], [ "T0", "N1a", "M0", "B0a", "VALUE:UNK" ], [ "T0", "N1a", "M0", "B0b", "VALUE:UNK" ], [ "T0", "N1a", "M0", "B1NOS", "VALUE:UNK" ], [ "T0", "N1a", "M0", "B1a", "VALUE:UNK" ], [ "T0", "N1a", "M0", "B1b", "VALUE:UNK" ], [ "T0", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T0", "N1a", "M0", "BX", "VALUE:UNK" ], [ "T0", "N1b", "M0", "B0NOS", "VALUE:UNK" ], [ "T0", "N1b", "M0", "B0a", "VALUE:UNK" ], [ "T0", "N1b", "M0", "B0b", "VALUE:UNK" ], [ "T0", "N1b", "M0", "B1NOS", "VALUE:UNK" ], [ "T0", "N1b", "M0", "B1a", "VALUE:UNK" ], [ "T0", "N1b", "M0", "B1b", "VALUE:UNK" ], [ "T0", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T0", "N1b", "M0", "BX", "VALUE:UNK" ], [ "T0", "N1NOS", "M0", "B0NOS", "VALUE:UNK" ], [ "T0", "N1NOS", "M0", "B0a", "VALUE:UNK" ], [ "T0", "N1NOS", "M0", "B0b", "VALUE:UNK" ], [ "T0", "N1NOS", "M0", "B1NOS", "VALUE:UNK" ], [ "T0", "N1NOS", "M0", "B1a", "VALUE:UNK" ], [ "T0", "N1NOS", "M0", "B1b", "VALUE:UNK" ], [ "T0", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T0", "N1NOS", "M0", "BX", "VALUE:UNK" ], [ "T0", "N2a", "M0", "B0NOS", "VALUE:UNK" ], [ "T0", "N2a", "M0", "B0a", "VALUE:UNK" ], [ "T0", "N2a", "M0", "B0b", "VALUE:UNK" ], [ "T0", "N2a", "M0", "B1NOS", "VALUE:UNK" ], [ "T0", "N2a", "M0", "B1a", "VALUE:UNK" ], [ "T0", "N2a", "M0", "B1b", "VALUE:UNK" ], [ "T0", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T0", "N2a", "M0", "BX", "VALUE:UNK" ], [ "T0", "N2b", "M0", "B0NOS", "VALUE:UNK" ], [ "T0", "N2b", "M0", "B0a", "VALUE:UNK" ], [ "T0", "N2b", "M0", "B0b", "VALUE:UNK" ], [ "T0", "N2b", "M0", "B1NOS", "VALUE:UNK" ], [ "T0", "N2b", "M0", "B1a", "VALUE:UNK" ], [ "T0", "N2b", "M0", "B1b", "VALUE:UNK" ], [ "T0", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T0", "N2b", "M0", "BX", "VALUE:UNK" ], [ "T0", "N2NOS", "M0", "B0NOS", "VALUE:UNK" ], [ "T0", "N2NOS", "M0", "B0a", "VALUE:UNK" ], [ "T0", "N2NOS", "M0", "B0b", "VALUE:UNK" ], [ "T0", "N2NOS", "M0", "B1NOS", "VALUE:UNK" ], [ "T0", "N2NOS", "M0", "B1a", "VALUE:UNK" ], [ "T0", "N2NOS", "M0", "B1b", "VALUE:UNK" ], [ "T0", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T0", "N2NOS", "M0", "BX", "VALUE:UNK" ], [ "T0", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T0", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T0", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T0", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T0", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T0", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T0", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T0", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T0", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T0", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T0", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T0", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T0", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T0", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T0", "NX", "M0", "B2", "VALUE:IVA" ], [ "T0", "NX", "M0", "BX", "VALUE:UNK" ], [ "T1a", "N0", "M0", "B0NOS", "VALUE:IA" ], [ "T1a", "N0", "M0", "B0a", "VALUE:IA" ], [ "T1a", "N0", "M0", "B0b", "VALUE:IA" ], [ "T1a", "N0", "M0", "B1NOS", "VALUE:IA" ], [ "T1a", "N0", "M0", "B1a", "VALUE:IA" ], [ "T1a", "N0", "M0", "B1b", "VALUE:IA" ], [ "T1a", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T1a", "N0", "M0", "BX", "VALUE:IA" ], [ "T1a", "N1a", "M0", "B0NOS", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "B0a", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "B0b", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "B1NOS", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "B1a", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "B1b", "VALUE:IIA" ], [ "T1a", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T1a", "N1a", "M0", "BX", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "B0NOS", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "B0a", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "B0b", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "B1NOS", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "B1a", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "B1b", "VALUE:IIA" ], [ "T1a", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T1a", "N1b", "M0", "BX", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "B0a", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "B0b", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "B1a", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "B1b", "VALUE:IIA" ], [ "T1a", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T1a", "N1NOS", "M0", "BX", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "B0NOS", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "B0a", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "B0b", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "B1NOS", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "B1a", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "B1b", "VALUE:IIA" ], [ "T1a", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T1a", "N2a", "M0", "BX", "VALUE:IIA" ], [ "T1a", "N2b", "M0", "B0NOS", "VALUE:IIA" ], [ "T1a", "N2b", "M0", "B0a", "VALUE:IIA" ], [ "T1a", "N2b", "M0", "B0b", "VALUE:IIA" ], [ "T1a", "N2b", "M0", "B1NOS", "VALUE:IIA" ], [ "T1a", "N2b", "M0", "B1a", "VALUE:IIA" ], [ "T1a", "N2b", "M0", "B1b", "VALUE:IIA" ], [ "T1a", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T1a", "N2b", "M0", "BX", "VALUE:IIA" ], [ "T1a", "N2NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T1a", "N2NOS", "M0", "B0a", "VALUE:IIA" ], [ "T1a", "N2NOS", "M0", "B0b", "VALUE:IIA" ], [ "T1a", "N2NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T1a", "N2NOS", "M0", "B1a", "VALUE:IIA" ], [ "T1a", "N2NOS", "M0", "B1b", "VALUE:IIA" ], [ "T1a", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T1a", "N2NOS", "M0", "BX", "VALUE:IIA" ], [ "T1a", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T1a", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T1a", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T1a", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T1a", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T1a", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T1a", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T1a", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T1a", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T1a", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T1a", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T1a", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T1a", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T1a", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T1a", "NX", "M0", "B2", "VALUE:IVA" ], [ "T1a", "NX", "M0", "BX", "VALUE:UNK" ], [ "T1b", "N0", "M0", "B0NOS", "VALUE:IA" ], [ "T1b", "N0", "M0", "B0a", "VALUE:IA" ], [ "T1b", "N0", "M0", "B0b", "VALUE:IA" ], [ "T1b", "N0", "M0", "B1NOS", "VALUE:IA" ], [ "T1b", "N0", "M0", "B1a", "VALUE:IA" ], [ "T1b", "N0", "M0", "B1b", "VALUE:IA" ], [ "T1b", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T1b", "N0", "M0", "BX", "VALUE:IA" ], [ "T1b", "N1a", "M0", "B0NOS", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "B0a", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "B0b", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "B1NOS", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "B1a", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "B1b", "VALUE:IIA" ], [ "T1b", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T1b", "N1a", "M0", "BX", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "B0NOS", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "B0a", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "B0b", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "B1NOS", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "B1a", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "B1b", "VALUE:IIA" ], [ "T1b", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T1b", "N1b", "M0", "BX", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "B0a", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "B0b", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "B1a", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "B1b", "VALUE:IIA" ], [ "T1b", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T1b", "N1NOS", "M0", "BX", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "B0NOS", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "B0a", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "B0b", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "B1NOS", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "B1a", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "B1b", "VALUE:IIA" ], [ "T1b", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T1b", "N2a", "M0", "BX", "VALUE:IIA" ], [ "T1b", "N2b", "M0", "B0NOS", "VALUE:IIA" ], [ "T1b", "N2b", "M0", "B0a", "VALUE:IIA" ], [ "T1b", "N2b", "M0", "B0b", "VALUE:IIA" ], [ "T1b", "N2b", "M0", "B1NOS", "VALUE:IIA" ], [ "T1b", "N2b", "M0", "B1a", "VALUE:IIA" ], [ "T1b", "N2b", "M0", "B1b", "VALUE:IIA" ], [ "T1b", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T1b", "N2b", "M0", "BX", "VALUE:IIA" ], [ "T1b", "N2NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T1b", "N2NOS", "M0", "B0a", "VALUE:IIA" ], [ "T1b", "N2NOS", "M0", "B0b", "VALUE:IIA" ], [ "T1b", "N2NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T1b", "N2NOS", "M0", "B1a", "VALUE:IIA" ], [ "T1b", "N2NOS", "M0", "B1b", "VALUE:IIA" ], [ "T1b", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T1b", "N2NOS", "M0", "BX", "VALUE:IIA" ], [ "T1b", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T1b", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T1b", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T1b", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T1b", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T1b", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T1b", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T1b", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T1b", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T1b", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T1b", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T1b", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T1b", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T1b", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T1b", "NX", "M0", "B2", "VALUE:IVA" ], [ "T1b", "NX", "M0", "BX", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "B0NOS", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "B0a", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "B0b", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "B1NOS", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "B1a", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "B1b", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T1NOS", "N0", "M0", "BX", "VALUE:IA" ], [ "T1NOS", "N1a", "M0", "B0NOS", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "B0a", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "B0b", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "B1NOS", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "B1a", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "B1b", "VALUE:IIA" ], [ "T1NOS", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T1NOS", "N1a", "M0", "BX", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "B0NOS", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "B0a", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "B0b", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "B1NOS", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "B1a", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "B1b", "VALUE:IIA" ], [ "T1NOS", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T1NOS", "N1b", "M0", "BX", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "B0a", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "B0b", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "B1a", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "B1b", "VALUE:IIA" ], [ "T1NOS", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T1NOS", "N1NOS", "M0", "BX", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "B0NOS", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "B0a", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "B0b", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "B1NOS", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "B1a", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "B1b", "VALUE:IIA" ], [ "T1NOS", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T1NOS", "N2a", "M0", "BX", "VALUE:IIA" ], [ "T1NOS", "N2b", "M0", "B0NOS", "VALUE:IIA" ], [ "T1NOS", "N2b", "M0", "B0a", "VALUE:IIA" ], [ "T1NOS", "N2b", "M0", "B0b", "VALUE:IIA" ], [ "T1NOS", "N2b", "M0", "B1NOS", "VALUE:IIA" ], [ "T1NOS", "N2b", "M0", "B1a", "VALUE:IIA" ], [ "T1NOS", "N2b", "M0", "B1b", "VALUE:IIA" ], [ "T1NOS", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T1NOS", "N2b", "M0", "BX", "VALUE:IIA" ], [ "T1NOS", "N2NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T1NOS", "N2NOS", "M0", "B0a", "VALUE:IIA" ], [ "T1NOS", "N2NOS", "M0", "B0b", "VALUE:IIA" ], [ "T1NOS", "N2NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T1NOS", "N2NOS", "M0", "B1a", "VALUE:IIA" ], [ "T1NOS", "N2NOS", "M0", "B1b", "VALUE:IIA" ], [ "T1NOS", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T1NOS", "N2NOS", "M0", "BX", "VALUE:IIA" ], [ "T1NOS", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T1NOS", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T1NOS", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T1NOS", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T1NOS", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T1NOS", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T1NOS", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T1NOS", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T1NOS", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "B2", "VALUE:IVA" ], [ "T1NOS", "NX", "M0", "BX", "VALUE:UNK" ], [ "T2a", "N0", "M0", "B0NOS", "VALUE:IB" ], [ "T2a", "N0", "M0", "B0a", "VALUE:IB" ], [ "T2a", "N0", "M0", "B0b", "VALUE:IB" ], [ "T2a", "N0", "M0", "B1NOS", "VALUE:IB" ], [ "T2a", "N0", "M0", "B1a", "VALUE:IB" ], [ "T2a", "N0", "M0", "B1b", "VALUE:IB" ], [ "T2a", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T2a", "N0", "M0", "BX", "VALUE:IB" ], [ "T2a", "N1a", "M0", "B0NOS", "VALUE:IIA" ], [ "T2a", "N1a", "M0", "B0a", "VALUE:IIA" ], [ "T2a", "N1a", "M0", "B0b", "VALUE:IIA" ], [ "T2a", "N1a", "M0", "B1NOS", "VALUE:IIA" ], [ "T2a", "N1a", "M0", "B1a", "VALUE:IIA" ], [ "T2a", "N1a", "M0", "B1b", "VALUE:IIA" ], [ "T2a", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T2a", "N1a", "M0", "BX", "VALUE:IIA" ], [ "T2a", "N1b", "M0", "B0NOS", "VALUE:IIA" ], [ "T2a", "N1b", "M0", "B0a", "VALUE:IIA" ], [ "T2a", "N1b", "M0", "B0b", "VALUE:IIA" ], [ "T2a", "N1b", "M0", "B1NOS", "VALUE:IIA" ], [ "T2a", "N1b", "M0", "B1a", "VALUE:IIA" ], [ "T2a", "N1b", "M0", "B1b", "VALUE:IIA" ], [ "T2a", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T2a", "N1b", "M0", "BX", "VALUE:IIA" ], [ "T2a", "N1NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T2a", "N1NOS", "M0", "B0a", "VALUE:IIA" ], [ "T2a", "N1NOS", "M0", "B0b", "VALUE:IIA" ], [ "T2a", "N1NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T2a", "N1NOS", "M0", "B1a", "VALUE:IIA" ], [ "T2a", "N1NOS", "M0", "B1b", "VALUE:IIA" ], [ "T2a", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T2a", "N1NOS", "M0", "BX", "VALUE:IIA" ], [ "T2a", "N2a", "M0", "B0NOS", "VALUE:IIA" ], [ "T2a", "N2a", "M0", "B0a", "VALUE:IIA" ], [ "T2a", "N2a", "M0", "B0b", "VALUE:IIA" ], [ "T2a", "N2a", "M0", "B1NOS", "VALUE:IIA" ], [ "T2a", "N2a", "M0", "B1a", "VALUE:IIA" ], [ "T2a", "N2a", "M0", "B1b", "VALUE:IIA" ], [ "T2a", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T2a", "N2a", "M0", "BX", "VALUE:IIA" ], [ "T2a", "N2b", "M0", "B0NOS", "VALUE:IIA" ], [ "T2a", "N2b", "M0", "B0a", "VALUE:IIA" ], [ "T2a", "N2b", "M0", "B0b", "VALUE:IIA" ], [ "T2a", "N2b", "M0", "B1NOS", "VALUE:IIA" ], [ "T2a", "N2b", "M0", "B1a", "VALUE:IIA" ], [ "T2a", "N2b", "M0", "B1b", "VALUE:IIA" ], [ "T2a", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T2a", "N2b", "M0", "BX", "VALUE:IIA" ], [ "T2a", "N2NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T2a", "N2NOS", "M0", "B0a", "VALUE:IIA" ], [ "T2a", "N2NOS", "M0", "B0b", "VALUE:IIA" ], [ "T2a", "N2NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T2a", "N2NOS", "M0", "B1a", "VALUE:IIA" ], [ "T2a", "N2NOS", "M0", "B1b", "VALUE:IIA" ], [ "T2a", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T2a", "N2NOS", "M0", "BX", "VALUE:IIA" ], [ "T2a", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T2a", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T2a", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T2a", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T2a", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T2a", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T2a", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T2a", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T2a", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T2a", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T2a", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T2a", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T2a", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T2a", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T2a", "NX", "M0", "B2", "VALUE:IVA" ], [ "T2a", "NX", "M0", "BX", "VALUE:UNK" ], [ "T2b", "N0", "M0", "B0NOS", "VALUE:IB" ], [ "T2b", "N0", "M0", "B0a", "VALUE:IB" ], [ "T2b", "N0", "M0", "B0b", "VALUE:IB" ], [ "T2b", "N0", "M0", "B1NOS", "VALUE:IB" ], [ "T2b", "N0", "M0", "B1a", "VALUE:IB" ], [ "T2b", "N0", "M0", "B1b", "VALUE:IB" ], [ "T2b", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T2b", "N0", "M0", "BX", "VALUE:IB" ], [ "T2b", "N1a", "M0", "B0NOS", "VALUE:IIA" ], [ "T2b", "N1a", "M0", "B0a", "VALUE:IIA" ], [ "T2b", "N1a", "M0", "B0b", "VALUE:IIA" ], [ "T2b", "N1a", "M0", "B1NOS", "VALUE:IIA" ], [ "T2b", "N1a", "M0", "B1a", "VALUE:IIA" ], [ "T2b", "N1a", "M0", "B1b", "VALUE:IIA" ], [ "T2b", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T2b", "N1a", "M0", "BX", "VALUE:IIA" ], [ "T2b", "N1b", "M0", "B0NOS", "VALUE:IIA" ], [ "T2b", "N1b", "M0", "B0a", "VALUE:IIA" ], [ "T2b", "N1b", "M0", "B0b", "VALUE:IIA" ], [ "T2b", "N1b", "M0", "B1NOS", "VALUE:IIA" ], [ "T2b", "N1b", "M0", "B1a", "VALUE:IIA" ], [ "T2b", "N1b", "M0", "B1b", "VALUE:IIA" ], [ "T2b", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T2b", "N1b", "M0", "BX", "VALUE:IIA" ], [ "T2b", "N1NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T2b", "N1NOS", "M0", "B0a", "VALUE:IIA" ], [ "T2b", "N1NOS", "M0", "B0b", "VALUE:IIA" ], [ "T2b", "N1NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T2b", "N1NOS", "M0", "B1a", "VALUE:IIA" ], [ "T2b", "N1NOS", "M0", "B1b", "VALUE:IIA" ], [ "T2b", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T2b", "N1NOS", "M0", "BX", "VALUE:IIA" ], [ "T2b", "N2a", "M0", "B0NOS", "VALUE:IIA" ], [ "T2b", "N2a", "M0", "B0a", "VALUE:IIA" ], [ "T2b", "N2a", "M0", "B0b", "VALUE:IIA" ], [ "T2b", "N2a", "M0", "B1NOS", "VALUE:IIA" ], [ "T2b", "N2a", "M0", "B1a", "VALUE:IIA" ], [ "T2b", "N2a", "M0", "B1b", "VALUE:IIA" ], [ "T2b", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T2b", "N2a", "M0", "BX", "VALUE:IIA" ], [ "T2b", "N2b", "M0", "B0NOS", "VALUE:IIA" ], [ "T2b", "N2b", "M0", "B0a", "VALUE:IIA" ], [ "T2b", "N2b", "M0", "B0b", "VALUE:IIA" ], [ "T2b", "N2b", "M0", "B1NOS", "VALUE:IIA" ], [ "T2b", "N2b", "M0", "B1a", "VALUE:IIA" ], [ "T2b", "N2b", "M0", "B1b", "VALUE:IIA" ], [ "T2b", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T2b", "N2b", "M0", "BX", "VALUE:IIA" ], [ "T2b", "N2NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T2b", "N2NOS", "M0", "B0a", "VALUE:IIA" ], [ "T2b", "N2NOS", "M0", "B0b", "VALUE:IIA" ], [ "T2b", "N2NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T2b", "N2NOS", "M0", "B1a", "VALUE:IIA" ], [ "T2b", "N2NOS", "M0", "B1b", "VALUE:IIA" ], [ "T2b", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T2b", "N2NOS", "M0", "BX", "VALUE:IIA" ], [ "T2b", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T2b", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T2b", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T2b", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T2b", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T2b", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T2b", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T2b", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T2b", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T2b", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T2b", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T2b", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T2b", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T2b", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T2b", "NX", "M0", "B2", "VALUE:IVA" ], [ "T2b", "NX", "M0", "BX", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "B0NOS", "VALUE:IB" ], [ "T2NOS", "N0", "M0", "B0a", "VALUE:IB" ], [ "T2NOS", "N0", "M0", "B0b", "VALUE:IB" ], [ "T2NOS", "N0", "M0", "B1NOS", "VALUE:IB" ], [ "T2NOS", "N0", "M0", "B1a", "VALUE:IB" ], [ "T2NOS", "N0", "M0", "B1b", "VALUE:IB" ], [ "T2NOS", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T2NOS", "N0", "M0", "BX", "VALUE:IB" ], [ "T2NOS", "N1a", "M0", "B0NOS", "VALUE:IIA" ], [ "T2NOS", "N1a", "M0", "B0a", "VALUE:IIA" ], [ "T2NOS", "N1a", "M0", "B0b", "VALUE:IIA" ], [ "T2NOS", "N1a", "M0", "B1NOS", "VALUE:IIA" ], [ "T2NOS", "N1a", "M0", "B1a", "VALUE:IIA" ], [ "T2NOS", "N1a", "M0", "B1b", "VALUE:IIA" ], [ "T2NOS", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T2NOS", "N1a", "M0", "BX", "VALUE:IIA" ], [ "T2NOS", "N1b", "M0", "B0NOS", "VALUE:IIA" ], [ "T2NOS", "N1b", "M0", "B0a", "VALUE:IIA" ], [ "T2NOS", "N1b", "M0", "B0b", "VALUE:IIA" ], [ "T2NOS", "N1b", "M0", "B1NOS", "VALUE:IIA" ], [ "T2NOS", "N1b", "M0", "B1a", "VALUE:IIA" ], [ "T2NOS", "N1b", "M0", "B1b", "VALUE:IIA" ], [ "T2NOS", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T2NOS", "N1b", "M0", "BX", "VALUE:IIA" ], [ "T2NOS", "N1NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T2NOS", "N1NOS", "M0", "B0a", "VALUE:IIA" ], [ "T2NOS", "N1NOS", "M0", "B0b", "VALUE:IIA" ], [ "T2NOS", "N1NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T2NOS", "N1NOS", "M0", "B1a", "VALUE:IIA" ], [ "T2NOS", "N1NOS", "M0", "B1b", "VALUE:IIA" ], [ "T2NOS", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T2NOS", "N1NOS", "M0", "BX", "VALUE:IIA" ], [ "T2NOS", "N2a", "M0", "B0NOS", "VALUE:IIA" ], [ "T2NOS", "N2a", "M0", "B0a", "VALUE:IIA" ], [ "T2NOS", "N2a", "M0", "B0b", "VALUE:IIA" ], [ "T2NOS", "N2a", "M0", "B1NOS", "VALUE:IIA" ], [ "T2NOS", "N2a", "M0", "B1a", "VALUE:IIA" ], [ "T2NOS", "N2a", "M0", "B1b", "VALUE:IIA" ], [ "T2NOS", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T2NOS", "N2a", "M0", "BX", "VALUE:IIA" ], [ "T2NOS", "N2b", "M0", "B0NOS", "VALUE:IIA" ], [ "T2NOS", "N2b", "M0", "B0a", "VALUE:IIA" ], [ "T2NOS", "N2b", "M0", "B0b", "VALUE:IIA" ], [ "T2NOS", "N2b", "M0", "B1NOS", "VALUE:IIA" ], [ "T2NOS", "N2b", "M0", "B1a", "VALUE:IIA" ], [ "T2NOS", "N2b", "M0", "B1b", "VALUE:IIA" ], [ "T2NOS", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T2NOS", "N2b", "M0", "BX", "VALUE:IIA" ], [ "T2NOS", "N2NOS", "M0", "B0NOS", "VALUE:IIA" ], [ "T2NOS", "N2NOS", "M0", "B0a", "VALUE:IIA" ], [ "T2NOS", "N2NOS", "M0", "B0b", "VALUE:IIA" ], [ "T2NOS", "N2NOS", "M0", "B1NOS", "VALUE:IIA" ], [ "T2NOS", "N2NOS", "M0", "B1a", "VALUE:IIA" ], [ "T2NOS", "N2NOS", "M0", "B1b", "VALUE:IIA" ], [ "T2NOS", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T2NOS", "N2NOS", "M0", "BX", "VALUE:IIA" ], [ "T2NOS", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T2NOS", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T2NOS", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T2NOS", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T2NOS", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T2NOS", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T2NOS", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T2NOS", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T2NOS", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T2NOS", "NX", "M0", "B2", "VALUE:IVA" ], [ "T2NOS", "NX", "M0", "BX", "VALUE:UNK" ], [ "T3", "N0", "M0", "B0NOS", "VALUE:IIB" ], [ "T3", "N0", "M0", "B0a", "VALUE:IIB" ], [ "T3", "N0", "M0", "B0b", "VALUE:IIB" ], [ "T3", "N0", "M0", "B1NOS", "VALUE:IIB" ], [ "T3", "N0", "M0", "B1a", "VALUE:IIB" ], [ "T3", "N0", "M0", "B1b", "VALUE:IIB" ], [ "T3", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T3", "N0", "M0", "BX", "VALUE:IIB" ], [ "T3", "N1a", "M0", "B0NOS", "VALUE:IIB" ], [ "T3", "N1a", "M0", "B0a", "VALUE:IIB" ], [ "T3", "N1a", "M0", "B0b", "VALUE:IIB" ], [ "T3", "N1a", "M0", "B1NOS", "VALUE:IIB" ], [ "T3", "N1a", "M0", "B1a", "VALUE:IIB" ], [ "T3", "N1a", "M0", "B1b", "VALUE:IIB" ], [ "T3", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T3", "N1a", "M0", "BX", "VALUE:IIB" ], [ "T3", "N1b", "M0", "B0NOS", "VALUE:IIB" ], [ "T3", "N1b", "M0", "B0a", "VALUE:IIB" ], [ "T3", "N1b", "M0", "B0b", "VALUE:IIB" ], [ "T3", "N1b", "M0", "B1NOS", "VALUE:IIB" ], [ "T3", "N1b", "M0", "B1a", "VALUE:IIB" ], [ "T3", "N1b", "M0", "B1b", "VALUE:IIB" ], [ "T3", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T3", "N1b", "M0", "BX", "VALUE:IIB" ], [ "T3", "N1NOS", "M0", "B0NOS", "VALUE:IIB" ], [ "T3", "N1NOS", "M0", "B0a", "VALUE:IIB" ], [ "T3", "N1NOS", "M0", "B0b", "VALUE:IIB" ], [ "T3", "N1NOS", "M0", "B1NOS", "VALUE:IIB" ], [ "T3", "N1NOS", "M0", "B1a", "VALUE:IIB" ], [ "T3", "N1NOS", "M0", "B1b", "VALUE:IIB" ], [ "T3", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T3", "N1NOS", "M0", "BX", "VALUE:IIB" ], [ "T3", "N2a", "M0", "B0NOS", "VALUE:IIB" ], [ "T3", "N2a", "M0", "B0a", "VALUE:IIB" ], [ "T3", "N2a", "M0", "B0b", "VALUE:IIB" ], [ "T3", "N2a", "M0", "B1NOS", "VALUE:IIB" ], [ "T3", "N2a", "M0", "B1a", "VALUE:IIB" ], [ "T3", "N2a", "M0", "B1b", "VALUE:IIB" ], [ "T3", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T3", "N2a", "M0", "BX", "VALUE:IIB" ], [ "T3", "N2b", "M0", "B0NOS", "VALUE:IIB" ], [ "T3", "N2b", "M0", "B0a", "VALUE:IIB" ], [ "T3", "N2b", "M0", "B0b", "VALUE:IIB" ], [ "T3", "N2b", "M0", "B1NOS", "VALUE:IIB" ], [ "T3", "N2b", "M0", "B1a", "VALUE:IIB" ], [ "T3", "N2b", "M0", "B1b", "VALUE:IIB" ], [ "T3", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T3", "N2b", "M0", "BX", "VALUE:IIB" ], [ "T3", "N2NOS", "M0", "B0NOS", "VALUE:IIB" ], [ "T3", "N2NOS", "M0", "B0a", "VALUE:IIB" ], [ "T3", "N2NOS", "M0", "B0b", "VALUE:IIB" ], [ "T3", "N2NOS", "M0", "B1NOS", "VALUE:IIB" ], [ "T3", "N2NOS", "M0", "B1a", "VALUE:IIB" ], [ "T3", "N2NOS", "M0", "B1b", "VALUE:IIB" ], [ "T3", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T3", "N2NOS", "M0", "BX", "VALUE:IIB" ], [ "T3", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T3", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T3", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T3", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T3", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T3", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T3", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T3", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T3", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T3", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T3", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T3", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T3", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T3", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T3", "NX", "M0", "B2", "VALUE:IVA" ], [ "T3", "NX", "M0", "BX", "VALUE:UNK" ], [ "T4", "N0", "M0", "B0NOS", "VALUE:IIIA" ], [ "T4", "N0", "M0", "B0a", "VALUE:IIIA" ], [ "T4", "N0", "M0", "B0b", "VALUE:IIIA" ], [ "T4", "N0", "M0", "B1NOS", "VALUE:IIIB" ], [ "T4", "N0", "M0", "B1a", "VALUE:IIIB" ], [ "T4", "N0", "M0", "B1b", "VALUE:IIIB" ], [ "T4", "N0", "M0", "B2", "VALUE:IVA1" ], [ "T4", "N0", "M0", "BX", "VALUE:IIIA" ], [ "T4", "N1a", "M0", "B0NOS", "VALUE:IIIA" ], [ "T4", "N1a", "M0", "B0a", "VALUE:IIIA" ], [ "T4", "N1a", "M0", "B0b", "VALUE:IIIA" ], [ "T4", "N1a", "M0", "B1NOS", "VALUE:IIIB" ], [ "T4", "N1a", "M0", "B1a", "VALUE:IIIB" ], [ "T4", "N1a", "M0", "B1b", "VALUE:IIIB" ], [ "T4", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "T4", "N1a", "M0", "BX", "VALUE:IIIA" ], [ "T4", "N1b", "M0", "B0NOS", "VALUE:IIIA" ], [ "T4", "N1b", "M0", "B0a", "VALUE:IIIA" ], [ "T4", "N1b", "M0", "B0b", "VALUE:IIIA" ], [ "T4", "N1b", "M0", "B1NOS", "VALUE:IIIB" ], [ "T4", "N1b", "M0", "B1a", "VALUE:IIIB" ], [ "T4", "N1b", "M0", "B1b", "VALUE:IIIB" ], [ "T4", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "T4", "N1b", "M0", "BX", "VALUE:IIIA" ], [ "T4", "N1NOS", "M0", "B0NOS", "VALUE:IIIA" ], [ "T4", "N1NOS", "M0", "B0a", "VALUE:IIIA" ], [ "T4", "N1NOS", "M0", "B0b", "VALUE:IIIA" ], [ "T4", "N1NOS", "M0", "B1NOS", "VALUE:IIIB" ], [ "T4", "N1NOS", "M0", "B1a", "VALUE:IIIB" ], [ "T4", "N1NOS", "M0", "B1b", "VALUE:IIIB" ], [ "T4", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "T4", "N1NOS", "M0", "BX", "VALUE:IIIA" ], [ "T4", "N2a", "M0", "B0NOS", "VALUE:IIIA" ], [ "T4", "N2a", "M0", "B0a", "VALUE:IIIA" ], [ "T4", "N2a", "M0", "B0b", "VALUE:IIIA" ], [ "T4", "N2a", "M0", "B1NOS", "VALUE:IIIB" ], [ "T4", "N2a", "M0", "B1a", "VALUE:IIIB" ], [ "T4", "N2a", "M0", "B1b", "VALUE:IIIB" ], [ "T4", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "T4", "N2a", "M0", "BX", "VALUE:IIIA" ], [ "T4", "N2b", "M0", "B0NOS", "VALUE:IIIA" ], [ "T4", "N2b", "M0", "B0a", "VALUE:IIIA" ], [ "T4", "N2b", "M0", "B0b", "VALUE:IIIA" ], [ "T4", "N2b", "M0", "B1NOS", "VALUE:IIIB" ], [ "T4", "N2b", "M0", "B1a", "VALUE:IIIB" ], [ "T4", "N2b", "M0", "B1b", "VALUE:IIIB" ], [ "T4", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "T4", "N2b", "M0", "BX", "VALUE:IIIA" ], [ "T4", "N2NOS", "M0", "B0NOS", "VALUE:IIIA" ], [ "T4", "N2NOS", "M0", "B0a", "VALUE:IIIA" ], [ "T4", "N2NOS", "M0", "B0b", "VALUE:IIIA" ], [ "T4", "N2NOS", "M0", "B1NOS", "VALUE:IIIB" ], [ "T4", "N2NOS", "M0", "B1a", "VALUE:IIIB" ], [ "T4", "N2NOS", "M0", "B1b", "VALUE:IIIB" ], [ "T4", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "T4", "N2NOS", "M0", "BX", "VALUE:IIIA" ], [ "T4", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "T4", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "T4", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "T4", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "T4", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "T4", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "T4", "N3", "M0", "B2", "VALUE:IVA2" ], [ "T4", "N3", "M0", "BX", "VALUE:IVA2" ], [ "T4", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "T4", "NX", "M0", "B0a", "VALUE:UNK" ], [ "T4", "NX", "M0", "B0b", "VALUE:UNK" ], [ "T4", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "T4", "NX", "M0", "B1a", "VALUE:UNK" ], [ "T4", "NX", "M0", "B1b", "VALUE:UNK" ], [ "T4", "NX", "M0", "B2", "VALUE:IVA" ], [ "T4", "NX", "M0", "BX", "VALUE:UNK" ], [ "TX", "N0", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "N0", "M0", "B0a", "VALUE:UNK" ], [ "TX", "N0", "M0", "B0b", "VALUE:UNK" ], [ "TX", "N0", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "N0", "M0", "B1a", "VALUE:UNK" ], [ "TX", "N0", "M0", "B1b", "VALUE:UNK" ], [ "TX", "N0", "M0", "B2", "VALUE:IVA1" ], [ "TX", "N0", "M0", "BX", "VALUE:UNK" ], [ "TX", "N1a", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "N1a", "M0", "B0a", "VALUE:UNK" ], [ "TX", "N1a", "M0", "B0b", "VALUE:UNK" ], [ "TX", "N1a", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "N1a", "M0", "B1a", "VALUE:UNK" ], [ "TX", "N1a", "M0", "B1b", "VALUE:UNK" ], [ "TX", "N1a", "M0", "B2", "VALUE:IVA1" ], [ "TX", "N1a", "M0", "BX", "VALUE:UNK" ], [ "TX", "N1b", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "N1b", "M0", "B0a", "VALUE:UNK" ], [ "TX", "N1b", "M0", "B0b", "VALUE:UNK" ], [ "TX", "N1b", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "N1b", "M0", "B1a", "VALUE:UNK" ], [ "TX", "N1b", "M0", "B1b", "VALUE:UNK" ], [ "TX", "N1b", "M0", "B2", "VALUE:IVA1" ], [ "TX", "N1b", "M0", "BX", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "B0a", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "B0b", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "B1a", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "B1b", "VALUE:UNK" ], [ "TX", "N1NOS", "M0", "B2", "VALUE:IVA1" ], [ "TX", "N1NOS", "M0", "BX", "VALUE:UNK" ], [ "TX", "N2a", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "N2a", "M0", "B0a", "VALUE:UNK" ], [ "TX", "N2a", "M0", "B0b", "VALUE:UNK" ], [ "TX", "N2a", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "N2a", "M0", "B1a", "VALUE:UNK" ], [ "TX", "N2a", "M0", "B1b", "VALUE:UNK" ], [ "TX", "N2a", "M0", "B2", "VALUE:IVA1" ], [ "TX", "N2a", "M0", "BX", "VALUE:UNK" ], [ "TX", "N2b", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "N2b", "M0", "B0a", "VALUE:UNK" ], [ "TX", "N2b", "M0", "B0b", "VALUE:UNK" ], [ "TX", "N2b", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "N2b", "M0", "B1a", "VALUE:UNK" ], [ "TX", "N2b", "M0", "B1b", "VALUE:UNK" ], [ "TX", "N2b", "M0", "B2", "VALUE:IVA1" ], [ "TX", "N2b", "M0", "BX", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "B0a", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "B0b", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "B1a", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "B1b", "VALUE:UNK" ], [ "TX", "N2NOS", "M0", "B2", "VALUE:IVA1" ], [ "TX", "N2NOS", "M0", "BX", "VALUE:UNK" ], [ "TX", "N3", "M0", "B0NOS", "VALUE:IVA2" ], [ "TX", "N3", "M0", "B0a", "VALUE:IVA2" ], [ "TX", "N3", "M0", "B0b", "VALUE:IVA2" ], [ "TX", "N3", "M0", "B1NOS", "VALUE:IVA2" ], [ "TX", "N3", "M0", "B1a", "VALUE:IVA2" ], [ "TX", "N3", "M0", "B1b", "VALUE:IVA2" ], [ "TX", "N3", "M0", "B2", "VALUE:IVA2" ], [ "TX", "N3", "M0", "BX", "VALUE:IVA2" ], [ "TX", "NX", "M0", "B0NOS", "VALUE:UNK" ], [ "TX", "NX", "M0", "B0a", "VALUE:UNK" ], [ "TX", "NX", "M0", "B0b", "VALUE:UNK" ], [ "TX", "NX", "M0", "B1NOS", "VALUE:UNK" ], [ "TX", "NX", "M0", "B1a", "VALUE:UNK" ], [ "TX", "NX", "M0", "B1b", "VALUE:UNK" ], [ "TX", "NX", "M0", "B2", "VALUE:IVA" ], [ "TX", "NX", "M0", "BX", "VALUE:UNK" ], [ "T0", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N0", "M1", "B2", "VALUE:IVB" ], [ "T0", "N0", "M1", "BX", "VALUE:IVB" ], [ "T0", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T0", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T0", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T0", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T0", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T0", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T0", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T0", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T0", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T0", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T0", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T0", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T0", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T0", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T0", "N3", "M1", "B2", "VALUE:IVB" ], [ "T0", "N3", "M1", "BX", "VALUE:IVB" ], [ "T0", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T0", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T0", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T0", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T0", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T0", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T0", "NX", "M1", "B2", "VALUE:IVB" ], [ "T0", "NX", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N0", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N0", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T1a", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "N3", "M1", "B2", "VALUE:IVB" ], [ "T1a", "N3", "M1", "BX", "VALUE:IVB" ], [ "T1a", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T1a", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T1a", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T1a", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T1a", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T1a", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T1a", "NX", "M1", "B2", "VALUE:IVB" ], [ "T1a", "NX", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N0", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N0", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T1b", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "N3", "M1", "B2", "VALUE:IVB" ], [ "T1b", "N3", "M1", "BX", "VALUE:IVB" ], [ "T1b", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T1b", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T1b", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T1b", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T1b", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T1b", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T1b", "NX", "M1", "B2", "VALUE:IVB" ], [ "T1b", "NX", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "N3", "M1", "BX", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "B2", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N0", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N0", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T2a", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "N3", "M1", "B2", "VALUE:IVB" ], [ "T2a", "N3", "M1", "BX", "VALUE:IVB" ], [ "T2a", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T2a", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T2a", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T2a", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T2a", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T2a", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T2a", "NX", "M1", "B2", "VALUE:IVB" ], [ "T2a", "NX", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N0", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N0", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T2b", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "N3", "M1", "B2", "VALUE:IVB" ], [ "T2b", "N3", "M1", "BX", "VALUE:IVB" ], [ "T2b", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T2b", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T2b", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T2b", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T2b", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T2b", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T2b", "NX", "M1", "B2", "VALUE:IVB" ], [ "T2b", "NX", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N0", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "N3", "M1", "BX", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "B2", "VALUE:IVB" ], [ "T2NOS", "NX", "M1", "BX", "VALUE:IVB" ], [ "T3", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N0", "M1", "B2", "VALUE:IVB" ], [ "T3", "N0", "M1", "BX", "VALUE:IVB" ], [ "T3", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T3", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T3", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T3", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T3", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T3", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T3", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T3", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T3", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T3", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T3", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T3", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T3", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T3", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T3", "N3", "M1", "B2", "VALUE:IVB" ], [ "T3", "N3", "M1", "BX", "VALUE:IVB" ], [ "T3", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T3", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T3", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T3", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T3", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T3", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T3", "NX", "M1", "B2", "VALUE:IVB" ], [ "T3", "NX", "M1", "BX", "VALUE:IVB" ], [ "T4", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N0", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N0", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N0", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N0", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N0", "M1", "B2", "VALUE:IVB" ], [ "T4", "N0", "M1", "BX", "VALUE:IVB" ], [ "T4", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N1a", "M1", "B2", "VALUE:IVB" ], [ "T4", "N1a", "M1", "BX", "VALUE:IVB" ], [ "T4", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N1b", "M1", "B2", "VALUE:IVB" ], [ "T4", "N1b", "M1", "BX", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "T4", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "T4", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N2a", "M1", "B2", "VALUE:IVB" ], [ "T4", "N2a", "M1", "BX", "VALUE:IVB" ], [ "T4", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N2b", "M1", "B2", "VALUE:IVB" ], [ "T4", "N2b", "M1", "BX", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "T4", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "T4", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "N3", "M1", "B0a", "VALUE:IVB" ], [ "T4", "N3", "M1", "B0b", "VALUE:IVB" ], [ "T4", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "N3", "M1", "B1a", "VALUE:IVB" ], [ "T4", "N3", "M1", "B1b", "VALUE:IVB" ], [ "T4", "N3", "M1", "B2", "VALUE:IVB" ], [ "T4", "N3", "M1", "BX", "VALUE:IVB" ], [ "T4", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "T4", "NX", "M1", "B0a", "VALUE:IVB" ], [ "T4", "NX", "M1", "B0b", "VALUE:IVB" ], [ "T4", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "T4", "NX", "M1", "B1a", "VALUE:IVB" ], [ "T4", "NX", "M1", "B1b", "VALUE:IVB" ], [ "T4", "NX", "M1", "B2", "VALUE:IVB" ], [ "T4", "NX", "M1", "BX", "VALUE:IVB" ], [ "TX", "N0", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N0", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N0", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N0", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N0", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N0", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N0", "M1", "B2", "VALUE:IVB" ], [ "TX", "N0", "M1", "BX", "VALUE:IVB" ], [ "TX", "N1a", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N1a", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N1a", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N1a", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N1a", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N1a", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N1a", "M1", "B2", "VALUE:IVB" ], [ "TX", "N1a", "M1", "BX", "VALUE:IVB" ], [ "TX", "N1b", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N1b", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N1b", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N1b", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N1b", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N1b", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N1b", "M1", "B2", "VALUE:IVB" ], [ "TX", "N1b", "M1", "BX", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "B2", "VALUE:IVB" ], [ "TX", "N1NOS", "M1", "BX", "VALUE:IVB" ], [ "TX", "N2a", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N2a", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N2a", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N2a", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N2a", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N2a", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N2a", "M1", "B2", "VALUE:IVB" ], [ "TX", "N2a", "M1", "BX", "VALUE:IVB" ], [ "TX", "N2b", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N2b", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N2b", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N2b", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N2b", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N2b", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N2b", "M1", "B2", "VALUE:IVB" ], [ "TX", "N2b", "M1", "BX", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "B2", "VALUE:IVB" ], [ "TX", "N2NOS", "M1", "BX", "VALUE:IVB" ], [ "TX", "N3", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "N3", "M1", "B0a", "VALUE:IVB" ], [ "TX", "N3", "M1", "B0b", "VALUE:IVB" ], [ "TX", "N3", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "N3", "M1", "B1a", "VALUE:IVB" ], [ "TX", "N3", "M1", "B1b", "VALUE:IVB" ], [ "TX", "N3", "M1", "B2", "VALUE:IVB" ], [ "TX", "N3", "M1", "BX", "VALUE:IVB" ], [ "TX", "NX", "M1", "B0NOS", "VALUE:IVB" ], [ "TX", "NX", "M1", "B0a", "VALUE:IVB" ], [ "TX", "NX", "M1", "B0b", "VALUE:IVB" ], [ "TX", "NX", "M1", "B1NOS", "VALUE:IVB" ], [ "TX", "NX", "M1", "B1a", "VALUE:IVB" ], [ "TX", "NX", "M1", "B1b", "VALUE:IVB" ], [ "TX", "NX", "M1", "B2", "VALUE:IVB" ], [ "TX", "NX", "M1", "BX", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uby.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uby.json
deleted file mode 100644
index 8ea79b994..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uby.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uby",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.265Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIIA" ], [ "T3a", "N1", "M0", "VALUE:IIIC" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:IIIB" ], [ "T3b", "N1", "M0", "VALUE:IIIC" ], [ "T3b", "NX", "M0", "VALUE:UNK" ], [ "T3c", "N0", "M0", "VALUE:IIIC" ], [ "T3c", "N1", "M0", "VALUE:IIIC" ], [ "T3c", "NX", "M0", "VALUE:IIIC" ], [ "T3NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T3NOS", "N1", "M0", "VALUE:IIIC" ], [ "T3NOS", "NX", "M0", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T3a", "N0", "M1", "VALUE:IV" ], [ "T3a", "N1", "M1", "VALUE:IV" ], [ "T3a", "NX", "M1", "VALUE:IV" ], [ "T3b", "N0", "M1", "VALUE:IV" ], [ "T3b", "N1", "M1", "VALUE:IV" ], [ "T3b", "NX", "M1", "VALUE:IV" ], [ "T3c", "N0", "M1", "VALUE:IV" ], [ "T3c", "N1", "M1", "VALUE:IV" ], [ "T3c", "NX", "M1", "VALUE:IV" ], [ "T3NOS", "N0", "M1", "VALUE:IV" ], [ "T3NOS", "N1", "M1", "VALUE:IV" ], [ "T3NOS", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_una.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_una.json
deleted file mode 100644
index 50d7d3828..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_una.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_una",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.314Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "NA", "NA", "NA", "VALUE:NA" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_unb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_unb.json
deleted file mode 100644
index 9a4b0edef..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_unb.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "ajcc7_stage_unb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage for sites with no stage groupings",
- "notes" : "In the table below, \"ANY\" designates any valid (allowable) value.",
- "last_modified" : "2015-05-27T16:18:59.360Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "", "*", "*", "VALUE:" ], [ "*", "", "*", "VALUE:" ], [ "*", "*", "", "VALUE:" ], [ "*", "*", "*", "VALUE:NA" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upm.json
deleted file mode 100644
index bda2fd354..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upm.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_upm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.408Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade_ssf1",
- "name" : "Grade based on SSF#1",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N1", "M0", "1", "VALUE:III" ], [ "T0", "N1", "M0", "2", "VALUE:III" ], [ "T0", "N1", "M0", "3", "VALUE:III" ], [ "T0", "N1", "M0", "9", "VALUE:III" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "VALUE:UNK" ], [ "T1b", "N0", "M0", "1", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "VALUE:IIA" ], [ "T1b", "N0", "M0", "3", "VALUE:IIA" ], [ "T1b", "N0", "M0", "9", "VALUE:IA" ], [ "T1b", "N1", "M0", "1", "VALUE:III" ], [ "T1b", "N1", "M0", "2", "VALUE:III" ], [ "T1b", "N1", "M0", "3", "VALUE:III" ], [ "T1b", "N1", "M0", "9", "VALUE:III" ], [ "T1b", "NX", "M0", "1", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2", "VALUE:UNK" ], [ "T1b", "NX", "M0", "3", "VALUE:UNK" ], [ "T1b", "NX", "M0", "9", "VALUE:UNK" ], [ "T2b", "N0", "M0", "1", "VALUE:IB" ], [ "T2b", "N0", "M0", "2", "VALUE:IIB" ], [ "T2b", "N0", "M0", "3", "VALUE:III" ], [ "T2b", "N0", "M0", "9", "VALUE:IB" ], [ "T2b", "N1", "M0", "1", "VALUE:III" ], [ "T2b", "N1", "M0", "2", "VALUE:III" ], [ "T2b", "N1", "M0", "3", "VALUE:III" ], [ "T2b", "N1", "M0", "9", "VALUE:III" ], [ "T2b", "NX", "M0", "1", "VALUE:UNK" ], [ "T2b", "NX", "M0", "2", "VALUE:UNK" ], [ "T2b", "NX", "M0", "3", "VALUE:UNK" ], [ "T2b", "NX", "M0", "9", "VALUE:UNK" ], [ "TX", "N0", "M0", "1", "VALUE:INOS" ], [ "TX", "N0", "M0", "2", "VALUE:IINOS" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:INOS" ], [ "TX", "N1", "M0", "1", "VALUE:III" ], [ "TX", "N1", "M0", "2", "VALUE:III" ], [ "TX", "N1", "M0", "3", "VALUE:III" ], [ "TX", "N1", "M0", "9", "VALUE:III" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "N0", "M1", "1", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "VALUE:IV" ], [ "T0", "N0", "M1", "9", "VALUE:IV" ], [ "T0", "N1", "M1", "1", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "VALUE:IV" ], [ "T0", "N1", "M1", "9", "VALUE:IV" ], [ "T0", "NX", "M1", "1", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "VALUE:IV" ], [ "T0", "NX", "M1", "9", "VALUE:IV" ], [ "T1b", "N0", "M1", "1", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "VALUE:IV" ], [ "T1b", "N0", "M1", "9", "VALUE:IV" ], [ "T1b", "N1", "M1", "1", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "VALUE:IV" ], [ "T1b", "N1", "M1", "9", "VALUE:IV" ], [ "T1b", "NX", "M1", "1", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "VALUE:IV" ], [ "T1b", "NX", "M1", "9", "VALUE:IV" ], [ "T2b", "N0", "M1", "1", "VALUE:IV" ], [ "T2b", "N0", "M1", "2", "VALUE:IV" ], [ "T2b", "N0", "M1", "3", "VALUE:IV" ], [ "T2b", "N0", "M1", "9", "VALUE:IV" ], [ "T2b", "N1", "M1", "1", "VALUE:IV" ], [ "T2b", "N1", "M1", "2", "VALUE:IV" ], [ "T2b", "N1", "M1", "3", "VALUE:IV" ], [ "T2b", "N1", "M1", "9", "VALUE:IV" ], [ "T2b", "NX", "M1", "1", "VALUE:IV" ], [ "T2b", "NX", "M1", "2", "VALUE:IV" ], [ "T2b", "NX", "M1", "3", "VALUE:IV" ], [ "T2b", "NX", "M1", "9", "VALUE:IV" ], [ "TX", "N0", "M1", "1", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "VALUE:IV" ], [ "TX", "N0", "M1", "9", "VALUE:IV" ], [ "TX", "N1", "M1", "1", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "VALUE:IV" ], [ "TX", "N1", "M1", "9", "VALUE:IV" ], [ "TX", "NX", "M1", "1", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "VALUE:IV" ], [ "TX", "NX", "M1", "9", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ups.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ups.json
deleted file mode 100644
index 70790ef25..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_ups.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_ups",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.467Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:IA" ], [ "T1", "N1", "M0", "VALUE:IIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IB" ], [ "T2", "N1", "M0", "VALUE:IIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1", "M0", "VALUE:IIB" ], [ "T3", "NX", "M0", "VALUE:IINOS" ], [ "T4", "N0", "M0", "VALUE:III" ], [ "T4", "N1", "M0", "VALUE:III" ], [ "T4", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upt.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upt.json
deleted file mode 100644
index 400881d17..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upt.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_upt",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.521Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2a", "M0", "VALUE:IVA" ], [ "T0", "N2b", "M0", "VALUE:IVA" ], [ "T0", "N2c", "M0", "VALUE:IVA" ], [ "T0", "N2NOS", "M0", "VALUE:IVA" ], [ "T0", "N3", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2c", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2a", "M0", "VALUE:IVA" ], [ "T1", "N2b", "M0", "VALUE:IVA" ], [ "T1", "N2c", "M0", "VALUE:IVA" ], [ "T1", "N2NOS", "M0", "VALUE:IVA" ], [ "T1", "N3", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IVA" ], [ "T2", "N2b", "M0", "VALUE:IVA" ], [ "T2", "N2c", "M0", "VALUE:IVA" ], [ "T2", "N2NOS", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "N2a", "M0", "VALUE:IVA" ], [ "T4a", "N2b", "M0", "VALUE:IVA" ], [ "T4a", "N2c", "M0", "VALUE:IVA" ], [ "T4a", "N2NOS", "M0", "VALUE:IVA" ], [ "T4a", "N3", "M0", "VALUE:IVB" ], [ "T4a", "NX", "M0", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "N2a", "M0", "VALUE:IVB" ], [ "T4b", "N2b", "M0", "VALUE:IVB" ], [ "T4b", "N2c", "M0", "VALUE:IVB" ], [ "T4b", "N2NOS", "M0", "VALUE:IVB" ], [ "T4b", "N3", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N3", "M0", "VALUE:IVB" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IVNOS" ], [ "TX", "N2b", "M0", "VALUE:IVNOS" ], [ "TX", "N2c", "M0", "VALUE:IVNOS" ], [ "TX", "N2NOS", "M0", "VALUE:IVNOS" ], [ "TX", "N3", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2a", "M1", "VALUE:IVC" ], [ "T0", "N2b", "M1", "VALUE:IVC" ], [ "T0", "N2c", "M1", "VALUE:IVC" ], [ "T0", "N2NOS", "M1", "VALUE:IVC" ], [ "T0", "N3", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2a", "M1", "ERROR:" ], [ "Tis", "N2b", "M1", "ERROR:" ], [ "Tis", "N2c", "M1", "ERROR:" ], [ "Tis", "N2NOS", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N1", "M1", "VALUE:IVC" ], [ "T1", "N2a", "M1", "VALUE:IVC" ], [ "T1", "N2b", "M1", "VALUE:IVC" ], [ "T1", "N2c", "M1", "VALUE:IVC" ], [ "T1", "N2NOS", "M1", "VALUE:IVC" ], [ "T1", "N3", "M1", "VALUE:IVC" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2a", "M1", "VALUE:IVC" ], [ "T2", "N2b", "M1", "VALUE:IVC" ], [ "T2", "N2c", "M1", "VALUE:IVC" ], [ "T2", "N2NOS", "M1", "VALUE:IVC" ], [ "T2", "N3", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2a", "M1", "VALUE:IVC" ], [ "T3", "N2b", "M1", "VALUE:IVC" ], [ "T3", "N2c", "M1", "VALUE:IVC" ], [ "T3", "N2NOS", "M1", "VALUE:IVC" ], [ "T3", "N3", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "N2a", "M1", "VALUE:IVC" ], [ "T4a", "N2b", "M1", "VALUE:IVC" ], [ "T4a", "N2c", "M1", "VALUE:IVC" ], [ "T4a", "N2NOS", "M1", "VALUE:IVC" ], [ "T4a", "N3", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "N2a", "M1", "VALUE:IVC" ], [ "T4b", "N2b", "M1", "VALUE:IVC" ], [ "T4b", "N2c", "M1", "VALUE:IVC" ], [ "T4b", "N2NOS", "M1", "VALUE:IVC" ], [ "T4b", "N3", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "N2a", "M1", "VALUE:IVC" ], [ "T4NOS", "N2b", "M1", "VALUE:IVC" ], [ "T4NOS", "N2c", "M1", "VALUE:IVC" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N3", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2a", "M1", "VALUE:IVC" ], [ "TX", "N2b", "M1", "VALUE:IVC" ], [ "TX", "N2c", "M1", "VALUE:IVC" ], [ "TX", "N2NOS", "M1", "VALUE:IVC" ], [ "TX", "N3", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upu.json
deleted file mode 100644
index 7bdaeedd8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upu.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_upu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.592Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:IVA" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "NX", "M0", "VALUE:IVA" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVA" ], [ "T4NOS", "N1", "M0", "VALUE:IVA" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "NA", "N0", "M0", "VALUE:NA" ], [ "NA", "N1", "M0", "VALUE:NA" ], [ "NA", "NX", "M0", "VALUE:NA" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "NA", "N0", "M1", "VALUE:NA" ], [ "NA", "N1", "M1", "VALUE:NA" ], [ "NA", "NX", "M1", "VALUE:NA" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upv.json
deleted file mode 100644
index 7f1694be2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upv.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_upv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.642Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IV" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:IIA" ], [ "T1b", "N1", "M0", "VALUE:IV" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1c", "N0", "M0", "VALUE:IIA" ], [ "T1c", "N1", "M0", "VALUE:IV" ], [ "T1c", "NX", "M0", "VALUE:UNK" ], [ "T1d", "N0", "M0", "VALUE:IIA" ], [ "T1d", "N1", "M0", "VALUE:IV" ], [ "T1d", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:UNK" ], [ "T1NOS", "N1", "M0", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2a", "N0", "M0", "VALUE:IIA" ], [ "T2a", "N1", "M0", "VALUE:IV" ], [ "T2a", "NX", "M0", "VALUE:UNK" ], [ "T2b", "N0", "M0", "VALUE:IIB" ], [ "T2b", "N1", "M0", "VALUE:IV" ], [ "T2b", "NX", "M0", "VALUE:UNK" ], [ "T2c", "N0", "M0", "VALUE:IIIA" ], [ "T2c", "N1", "M0", "VALUE:IV" ], [ "T2c", "NX", "M0", "VALUE:UNK" ], [ "T2d", "N0", "M0", "VALUE:IIIA" ], [ "T2d", "N1", "M0", "VALUE:IV" ], [ "T2d", "NX", "M0", "VALUE:UNK" ], [ "T2NOS", "N0", "M0", "VALUE:UNK" ], [ "T2NOS", "N1", "M0", "VALUE:IV" ], [ "T2NOS", "NX", "M0", "VALUE:UNK" ], [ "T3a", "N0", "M0", "VALUE:IIB" ], [ "T3a", "N1", "M0", "VALUE:IV" ], [ "T3a", "NX", "M0", "VALUE:UNK" ], [ "T3b", "N0", "M0", "VALUE:IIIA" ], [ "T3b", "N1", "M0", "VALUE:IV" ], [ "T3b", "NX", "M0", "VALUE:UNK" ], [ "T3c", "N0", "M0", "VALUE:IIIA" ], [ "T3c", "N1", "M0", "VALUE:IV" ], [ "T3c", "NX", "M0", "VALUE:UNK" ], [ "T3d", "N0", "M0", "VALUE:IIIB" ], [ "T3d", "N1", "M0", "VALUE:IV" ], [ "T3d", "NX", "M0", "VALUE:UNK" ], [ "T3NOS", "N0", "M0", "VALUE:UNK" ], [ "T3NOS", "N1", "M0", "VALUE:IV" ], [ "T3NOS", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IIIA" ], [ "T4a", "N1", "M0", "VALUE:IV" ], [ "T4a", "NX", "M0", "VALUE:UNK" ], [ "T4b", "N0", "M0", "VALUE:IIIB" ], [ "T4b", "N1", "M0", "VALUE:IV" ], [ "T4b", "NX", "M0", "VALUE:UNK" ], [ "T4c", "N0", "M0", "VALUE:IIIB" ], [ "T4c", "N1", "M0", "VALUE:IV" ], [ "T4c", "NX", "M0", "VALUE:UNK" ], [ "T4d", "N0", "M0", "VALUE:IIIC" ], [ "T4d", "N1", "M0", "VALUE:IV" ], [ "T4d", "NX", "M0", "VALUE:UNK" ], [ "T4e", "N0", "M0", "VALUE:IIIC" ], [ "T4e", "N1", "M0", "VALUE:IV" ], [ "T4e", "NX", "M0", "VALUE:UNK" ], [ "T4NOS", "N0", "M0", "VALUE:IIINOS" ], [ "T4NOS", "N1", "M0", "VALUE:IV" ], [ "T4NOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1a", "VALUE:IV" ], [ "T0", "N1", "M1a", "VALUE:IV" ], [ "T0", "NX", "M1a", "VALUE:IV" ], [ "T1a", "N0", "M1a", "VALUE:IV" ], [ "T1a", "N1", "M1a", "VALUE:IV" ], [ "T1a", "NX", "M1a", "VALUE:IV" ], [ "T1b", "N0", "M1a", "VALUE:IV" ], [ "T1b", "N1", "M1a", "VALUE:IV" ], [ "T1b", "NX", "M1a", "VALUE:IV" ], [ "T1c", "N0", "M1a", "VALUE:IV" ], [ "T1c", "N1", "M1a", "VALUE:IV" ], [ "T1c", "NX", "M1a", "VALUE:IV" ], [ "T1d", "N0", "M1a", "VALUE:IV" ], [ "T1d", "N1", "M1a", "VALUE:IV" ], [ "T1d", "NX", "M1a", "VALUE:IV" ], [ "T1NOS", "N0", "M1a", "VALUE:IV" ], [ "T1NOS", "N1", "M1a", "VALUE:IV" ], [ "T1NOS", "NX", "M1a", "VALUE:IV" ], [ "T2a", "N0", "M1a", "VALUE:IV" ], [ "T2a", "N1", "M1a", "VALUE:IV" ], [ "T2a", "NX", "M1a", "VALUE:IV" ], [ "T2b", "N0", "M1a", "VALUE:IV" ], [ "T2b", "N1", "M1a", "VALUE:IV" ], [ "T2b", "NX", "M1a", "VALUE:IV" ], [ "T2c", "N0", "M1a", "VALUE:IV" ], [ "T2c", "N1", "M1a", "VALUE:IV" ], [ "T2c", "NX", "M1a", "VALUE:IV" ], [ "T2d", "N0", "M1a", "VALUE:IV" ], [ "T2d", "N1", "M1a", "VALUE:IV" ], [ "T2d", "NX", "M1a", "VALUE:IV" ], [ "T2NOS", "N0", "M1a", "VALUE:IV" ], [ "T2NOS", "N1", "M1a", "VALUE:IV" ], [ "T2NOS", "NX", "M1a", "VALUE:IV" ], [ "T3a", "N0", "M1a", "VALUE:IV" ], [ "T3a", "N1", "M1a", "VALUE:IV" ], [ "T3a", "NX", "M1a", "VALUE:IV" ], [ "T3b", "N0", "M1a", "VALUE:IV" ], [ "T3b", "N1", "M1a", "VALUE:IV" ], [ "T3b", "NX", "M1a", "VALUE:IV" ], [ "T3c", "N0", "M1a", "VALUE:IV" ], [ "T3c", "N1", "M1a", "VALUE:IV" ], [ "T3c", "NX", "M1a", "VALUE:IV" ], [ "T3d", "N0", "M1a", "VALUE:IV" ], [ "T3d", "N1", "M1a", "VALUE:IV" ], [ "T3d", "NX", "M1a", "VALUE:IV" ], [ "T3NOS", "N0", "M1a", "VALUE:IV" ], [ "T3NOS", "N1", "M1a", "VALUE:IV" ], [ "T3NOS", "NX", "M1a", "VALUE:IV" ], [ "T4a", "N0", "M1a", "VALUE:IV" ], [ "T4a", "N1", "M1a", "VALUE:IV" ], [ "T4a", "NX", "M1a", "VALUE:IV" ], [ "T4b", "N0", "M1a", "VALUE:IV" ], [ "T4b", "N1", "M1a", "VALUE:IV" ], [ "T4b", "NX", "M1a", "VALUE:IV" ], [ "T4c", "N0", "M1a", "VALUE:IV" ], [ "T4c", "N1", "M1a", "VALUE:IV" ], [ "T4c", "NX", "M1a", "VALUE:IV" ], [ "T4d", "N0", "M1a", "VALUE:IV" ], [ "T4d", "N1", "M1a", "VALUE:IV" ], [ "T4d", "NX", "M1a", "VALUE:IV" ], [ "T4e", "N0", "M1a", "VALUE:IV" ], [ "T4e", "N1", "M1a", "VALUE:IV" ], [ "T4e", "NX", "M1a", "VALUE:IV" ], [ "T4NOS", "N0", "M1a", "VALUE:IV" ], [ "T4NOS", "N1", "M1a", "VALUE:IV" ], [ "T4NOS", "NX", "M1a", "VALUE:IV" ], [ "TX", "N0", "M1a", "VALUE:IV" ], [ "TX", "N1", "M1a", "VALUE:IV" ], [ "TX", "NX", "M1a", "VALUE:IV" ], [ "T0", "N0", "M1b", "VALUE:IV" ], [ "T0", "N1", "M1b", "VALUE:IV" ], [ "T0", "NX", "M1b", "VALUE:IV" ], [ "T1a", "N0", "M1b", "VALUE:IV" ], [ "T1a", "N1", "M1b", "VALUE:IV" ], [ "T1a", "NX", "M1b", "VALUE:IV" ], [ "T1b", "N0", "M1b", "VALUE:IV" ], [ "T1b", "N1", "M1b", "VALUE:IV" ], [ "T1b", "NX", "M1b", "VALUE:IV" ], [ "T1c", "N0", "M1b", "VALUE:IV" ], [ "T1c", "N1", "M1b", "VALUE:IV" ], [ "T1c", "NX", "M1b", "VALUE:IV" ], [ "T1d", "N0", "M1b", "VALUE:IV" ], [ "T1d", "N1", "M1b", "VALUE:IV" ], [ "T1d", "NX", "M1b", "VALUE:IV" ], [ "T1NOS", "N0", "M1b", "VALUE:IV" ], [ "T1NOS", "N1", "M1b", "VALUE:IV" ], [ "T1NOS", "NX", "M1b", "VALUE:IV" ], [ "T2a", "N0", "M1b", "VALUE:IV" ], [ "T2a", "N1", "M1b", "VALUE:IV" ], [ "T2a", "NX", "M1b", "VALUE:IV" ], [ "T2b", "N0", "M1b", "VALUE:IV" ], [ "T2b", "N1", "M1b", "VALUE:IV" ], [ "T2b", "NX", "M1b", "VALUE:IV" ], [ "T2c", "N0", "M1b", "VALUE:IV" ], [ "T2c", "N1", "M1b", "VALUE:IV" ], [ "T2c", "NX", "M1b", "VALUE:IV" ], [ "T2d", "N0", "M1b", "VALUE:IV" ], [ "T2d", "N1", "M1b", "VALUE:IV" ], [ "T2d", "NX", "M1b", "VALUE:IV" ], [ "T2NOS", "N0", "M1b", "VALUE:IV" ], [ "T2NOS", "N1", "M1b", "VALUE:IV" ], [ "T2NOS", "NX", "M1b", "VALUE:IV" ], [ "T3a", "N0", "M1b", "VALUE:IV" ], [ "T3a", "N1", "M1b", "VALUE:IV" ], [ "T3a", "NX", "M1b", "VALUE:IV" ], [ "T3b", "N0", "M1b", "VALUE:IV" ], [ "T3b", "N1", "M1b", "VALUE:IV" ], [ "T3b", "NX", "M1b", "VALUE:IV" ], [ "T3c", "N0", "M1b", "VALUE:IV" ], [ "T3c", "N1", "M1b", "VALUE:IV" ], [ "T3c", "NX", "M1b", "VALUE:IV" ], [ "T3d", "N0", "M1b", "VALUE:IV" ], [ "T3d", "N1", "M1b", "VALUE:IV" ], [ "T3d", "NX", "M1b", "VALUE:IV" ], [ "T3NOS", "N0", "M1b", "VALUE:IV" ], [ "T3NOS", "N1", "M1b", "VALUE:IV" ], [ "T3NOS", "NX", "M1b", "VALUE:IV" ], [ "T4a", "N0", "M1b", "VALUE:IV" ], [ "T4a", "N1", "M1b", "VALUE:IV" ], [ "T4a", "NX", "M1b", "VALUE:IV" ], [ "T4b", "N0", "M1b", "VALUE:IV" ], [ "T4b", "N1", "M1b", "VALUE:IV" ], [ "T4b", "NX", "M1b", "VALUE:IV" ], [ "T4c", "N0", "M1b", "VALUE:IV" ], [ "T4c", "N1", "M1b", "VALUE:IV" ], [ "T4c", "NX", "M1b", "VALUE:IV" ], [ "T4d", "N0", "M1b", "VALUE:IV" ], [ "T4d", "N1", "M1b", "VALUE:IV" ], [ "T4d", "NX", "M1b", "VALUE:IV" ], [ "T4e", "N0", "M1b", "VALUE:IV" ], [ "T4e", "N1", "M1b", "VALUE:IV" ], [ "T4e", "NX", "M1b", "VALUE:IV" ], [ "T4NOS", "N0", "M1b", "VALUE:IV" ], [ "T4NOS", "N1", "M1b", "VALUE:IV" ], [ "T4NOS", "NX", "M1b", "VALUE:IV" ], [ "TX", "N0", "M1b", "VALUE:IV" ], [ "TX", "N1", "M1b", "VALUE:IV" ], [ "TX", "NX", "M1b", "VALUE:IV" ], [ "T0", "N0", "M1c", "VALUE:IV" ], [ "T0", "N1", "M1c", "VALUE:IV" ], [ "T0", "NX", "M1c", "VALUE:IV" ], [ "T1a", "N0", "M1c", "VALUE:IV" ], [ "T1a", "N1", "M1c", "VALUE:IV" ], [ "T1a", "NX", "M1c", "VALUE:IV" ], [ "T1b", "N0", "M1c", "VALUE:IV" ], [ "T1b", "N1", "M1c", "VALUE:IV" ], [ "T1b", "NX", "M1c", "VALUE:IV" ], [ "T1c", "N0", "M1c", "VALUE:IV" ], [ "T1c", "N1", "M1c", "VALUE:IV" ], [ "T1c", "NX", "M1c", "VALUE:IV" ], [ "T1d", "N0", "M1c", "VALUE:IV" ], [ "T1d", "N1", "M1c", "VALUE:IV" ], [ "T1d", "NX", "M1c", "VALUE:IV" ], [ "T1NOS", "N0", "M1c", "VALUE:IV" ], [ "T1NOS", "N1", "M1c", "VALUE:IV" ], [ "T1NOS", "NX", "M1c", "VALUE:IV" ], [ "T2a", "N0", "M1c", "VALUE:IV" ], [ "T2a", "N1", "M1c", "VALUE:IV" ], [ "T2a", "NX", "M1c", "VALUE:IV" ], [ "T2b", "N0", "M1c", "VALUE:IV" ], [ "T2b", "N1", "M1c", "VALUE:IV" ], [ "T2b", "NX", "M1c", "VALUE:IV" ], [ "T2c", "N0", "M1c", "VALUE:IV" ], [ "T2c", "N1", "M1c", "VALUE:IV" ], [ "T2c", "NX", "M1c", "VALUE:IV" ], [ "T2d", "N0", "M1c", "VALUE:IV" ], [ "T2d", "N1", "M1c", "VALUE:IV" ], [ "T2d", "NX", "M1c", "VALUE:IV" ], [ "T2NOS", "N0", "M1c", "VALUE:IV" ], [ "T2NOS", "N1", "M1c", "VALUE:IV" ], [ "T2NOS", "NX", "M1c", "VALUE:IV" ], [ "T3a", "N0", "M1c", "VALUE:IV" ], [ "T3a", "N1", "M1c", "VALUE:IV" ], [ "T3a", "NX", "M1c", "VALUE:IV" ], [ "T3b", "N0", "M1c", "VALUE:IV" ], [ "T3b", "N1", "M1c", "VALUE:IV" ], [ "T3b", "NX", "M1c", "VALUE:IV" ], [ "T3c", "N0", "M1c", "VALUE:IV" ], [ "T3c", "N1", "M1c", "VALUE:IV" ], [ "T3c", "NX", "M1c", "VALUE:IV" ], [ "T3d", "N0", "M1c", "VALUE:IV" ], [ "T3d", "N1", "M1c", "VALUE:IV" ], [ "T3d", "NX", "M1c", "VALUE:IV" ], [ "T3NOS", "N0", "M1c", "VALUE:IV" ], [ "T3NOS", "N1", "M1c", "VALUE:IV" ], [ "T3NOS", "NX", "M1c", "VALUE:IV" ], [ "T4a", "N0", "M1c", "VALUE:IV" ], [ "T4a", "N1", "M1c", "VALUE:IV" ], [ "T4a", "NX", "M1c", "VALUE:IV" ], [ "T4b", "N0", "M1c", "VALUE:IV" ], [ "T4b", "N1", "M1c", "VALUE:IV" ], [ "T4b", "NX", "M1c", "VALUE:IV" ], [ "T4c", "N0", "M1c", "VALUE:IV" ], [ "T4c", "N1", "M1c", "VALUE:IV" ], [ "T4c", "NX", "M1c", "VALUE:IV" ], [ "T4d", "N0", "M1c", "VALUE:IV" ], [ "T4d", "N1", "M1c", "VALUE:IV" ], [ "T4d", "NX", "M1c", "VALUE:IV" ], [ "T4e", "N0", "M1c", "VALUE:IV" ], [ "T4e", "N1", "M1c", "VALUE:IV" ], [ "T4e", "NX", "M1c", "VALUE:IV" ], [ "T4NOS", "N0", "M1c", "VALUE:IV" ], [ "T4NOS", "N1", "M1c", "VALUE:IV" ], [ "T4NOS", "NX", "M1c", "VALUE:IV" ], [ "TX", "N0", "M1c", "VALUE:IV" ], [ "TX", "N1", "M1c", "VALUE:IV" ], [ "TX", "NX", "M1c", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "VALUE:IV" ], [ "T1a", "N0", "M1NOS", "VALUE:IV" ], [ "T1a", "N1", "M1NOS", "VALUE:IV" ], [ "T1a", "NX", "M1NOS", "VALUE:IV" ], [ "T1b", "N0", "M1NOS", "VALUE:IV" ], [ "T1b", "N1", "M1NOS", "VALUE:IV" ], [ "T1b", "NX", "M1NOS", "VALUE:IV" ], [ "T1c", "N0", "M1NOS", "VALUE:IV" ], [ "T1c", "N1", "M1NOS", "VALUE:IV" ], [ "T1c", "NX", "M1NOS", "VALUE:IV" ], [ "T1d", "N0", "M1NOS", "VALUE:IV" ], [ "T1d", "N1", "M1NOS", "VALUE:IV" ], [ "T1d", "NX", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T1NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T1NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T2a", "N0", "M1NOS", "VALUE:IV" ], [ "T2a", "N1", "M1NOS", "VALUE:IV" ], [ "T2a", "NX", "M1NOS", "VALUE:IV" ], [ "T2b", "N0", "M1NOS", "VALUE:IV" ], [ "T2b", "N1", "M1NOS", "VALUE:IV" ], [ "T2b", "NX", "M1NOS", "VALUE:IV" ], [ "T2c", "N0", "M1NOS", "VALUE:IV" ], [ "T2c", "N1", "M1NOS", "VALUE:IV" ], [ "T2c", "NX", "M1NOS", "VALUE:IV" ], [ "T2d", "N0", "M1NOS", "VALUE:IV" ], [ "T2d", "N1", "M1NOS", "VALUE:IV" ], [ "T2d", "NX", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T2NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T2NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T3a", "N0", "M1NOS", "VALUE:IV" ], [ "T3a", "N1", "M1NOS", "VALUE:IV" ], [ "T3a", "NX", "M1NOS", "VALUE:IV" ], [ "T3b", "N0", "M1NOS", "VALUE:IV" ], [ "T3b", "N1", "M1NOS", "VALUE:IV" ], [ "T3b", "NX", "M1NOS", "VALUE:IV" ], [ "T3c", "N0", "M1NOS", "VALUE:IV" ], [ "T3c", "N1", "M1NOS", "VALUE:IV" ], [ "T3c", "NX", "M1NOS", "VALUE:IV" ], [ "T3d", "N0", "M1NOS", "VALUE:IV" ], [ "T3d", "N1", "M1NOS", "VALUE:IV" ], [ "T3d", "NX", "M1NOS", "VALUE:IV" ], [ "T3NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T3NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T3NOS", "NX", "M1NOS", "VALUE:IV" ], [ "T4a", "N0", "M1NOS", "VALUE:IV" ], [ "T4a", "N1", "M1NOS", "VALUE:IV" ], [ "T4a", "NX", "M1NOS", "VALUE:IV" ], [ "T4b", "N0", "M1NOS", "VALUE:IV" ], [ "T4b", "N1", "M1NOS", "VALUE:IV" ], [ "T4b", "NX", "M1NOS", "VALUE:IV" ], [ "T4c", "N0", "M1NOS", "VALUE:IV" ], [ "T4c", "N1", "M1NOS", "VALUE:IV" ], [ "T4c", "NX", "M1NOS", "VALUE:IV" ], [ "T4d", "N0", "M1NOS", "VALUE:IV" ], [ "T4d", "N1", "M1NOS", "VALUE:IV" ], [ "T4d", "NX", "M1NOS", "VALUE:IV" ], [ "T4e", "N0", "M1NOS", "VALUE:IV" ], [ "T4e", "N1", "M1NOS", "VALUE:IV" ], [ "T4e", "NX", "M1NOS", "VALUE:IV" ], [ "T4NOS", "N0", "M1NOS", "VALUE:IV" ], [ "T4NOS", "N1", "M1NOS", "VALUE:IV" ], [ "T4NOS", "NX", "M1NOS", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upw.json
deleted file mode 100644
index 001b0808e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upw.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_upw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.738Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1a", "M0", "VALUE:IIIA" ], [ "T0", "N1b", "M0", "VALUE:IIIA" ], [ "T0", "N1c", "M0", "VALUE:IIIA" ], [ "T0", "N1NOS", "M0", "VALUE:IIIA" ], [ "T0", "N2a", "M0", "VALUE:IIIA" ], [ "T0", "N2b", "M0", "VALUE:IIIB" ], [ "T0", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1a", "M0", "ERROR:" ], [ "Tis", "N1b", "M0", "ERROR:" ], [ "Tis", "N1c", "M0", "ERROR:" ], [ "Tis", "N1NOS", "M0", "ERROR:" ], [ "Tis", "N2a", "M0", "ERROR:" ], [ "Tis", "N2b", "M0", "ERROR:" ], [ "Tis", "N2NOS", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1a", "M0", "VALUE:IIIA" ], [ "T1", "N1b", "M0", "VALUE:IIIA" ], [ "T1", "N1c", "M0", "VALUE:IIIA" ], [ "T1", "N1NOS", "M0", "VALUE:IIIA" ], [ "T1", "N2a", "M0", "VALUE:IIIA" ], [ "T1", "N2b", "M0", "VALUE:IIIB" ], [ "T1", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:I" ], [ "T2", "N1a", "M0", "VALUE:IIIA" ], [ "T2", "N1b", "M0", "VALUE:IIIA" ], [ "T2", "N1c", "M0", "VALUE:IIIA" ], [ "T2", "N1NOS", "M0", "VALUE:IIIA" ], [ "T2", "N2a", "M0", "VALUE:IIIB" ], [ "T2", "N2b", "M0", "VALUE:IIIB" ], [ "T2", "N2NOS", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIA" ], [ "T3", "N1a", "M0", "VALUE:IIIB" ], [ "T3", "N1b", "M0", "VALUE:IIIB" ], [ "T3", "N1c", "M0", "VALUE:IIIB" ], [ "T3", "N1NOS", "M0", "VALUE:IIIB" ], [ "T3", "N2a", "M0", "VALUE:IIIB" ], [ "T3", "N2b", "M0", "VALUE:IIIC" ], [ "T3", "N2NOS", "M0", "VALUE:IIINOS" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IIB" ], [ "T4a", "N1a", "M0", "VALUE:IIIB" ], [ "T4a", "N1b", "M0", "VALUE:IIIB" ], [ "T4a", "N1c", "M0", "VALUE:IIIB" ], [ "T4a", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4a", "N2a", "M0", "VALUE:IIIC" ], [ "T4a", "N2b", "M0", "VALUE:IIIC" ], [ "T4a", "N2NOS", "M0", "VALUE:IIIC" ], [ "T4a", "NX", "M0", "VALUE:UNK" ], [ "T4b", "N0", "M0", "VALUE:IIC" ], [ "T4b", "N1a", "M0", "VALUE:IIIC" ], [ "T4b", "N1b", "M0", "VALUE:IIIC" ], [ "T4b", "N1c", "M0", "VALUE:IIIC" ], [ "T4b", "N1NOS", "M0", "VALUE:IIIC" ], [ "T4b", "N2a", "M0", "VALUE:IIIC" ], [ "T4b", "N2b", "M0", "VALUE:IIIC" ], [ "T4b", "N2NOS", "M0", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "VALUE:UNK" ], [ "T4NOS", "N0", "M0", "VALUE:IINOS" ], [ "T4NOS", "N1a", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1b", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1c", "M0", "VALUE:IIIB" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IIIB" ], [ "T4NOS", "N2a", "M0", "VALUE:IIIC" ], [ "T4NOS", "N2b", "M0", "VALUE:IIIC" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M0", "VALUE:IIINOS" ], [ "TX", "N1b", "M0", "VALUE:IIINOS" ], [ "TX", "N1c", "M0", "VALUE:IIINOS" ], [ "TX", "N1NOS", "M0", "VALUE:IIINOS" ], [ "TX", "N2a", "M0", "VALUE:IIINOS" ], [ "TX", "N2b", "M0", "VALUE:IIINOS" ], [ "TX", "N2NOS", "M0", "VALUE:IIINOS" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1a", "VALUE:IVA" ], [ "T0", "N1a", "M1a", "VALUE:IVA" ], [ "T0", "N1b", "M1a", "VALUE:IVA" ], [ "T0", "N1c", "M1a", "VALUE:IVA" ], [ "T0", "N1NOS", "M1a", "VALUE:IVA" ], [ "T0", "N2a", "M1a", "VALUE:IVA" ], [ "T0", "N2b", "M1a", "VALUE:IVA" ], [ "T0", "N2NOS", "M1a", "VALUE:IVA" ], [ "T0", "NX", "M1a", "VALUE:IVA" ], [ "Tis", "N0", "M1a", "ERROR:" ], [ "Tis", "N1a", "M1a", "ERROR:" ], [ "Tis", "N1b", "M1a", "ERROR:" ], [ "Tis", "N1c", "M1a", "ERROR:" ], [ "Tis", "N1NOS", "M1a", "ERROR:" ], [ "Tis", "N2a", "M1a", "ERROR:" ], [ "Tis", "N2b", "M1a", "ERROR:" ], [ "Tis", "N2NOS", "M1a", "ERROR:" ], [ "Tis", "NX", "M1a", "ERROR:" ], [ "T1", "N0", "M1a", "VALUE:IVA" ], [ "T1", "N1a", "M1a", "VALUE:IVA" ], [ "T1", "N1b", "M1a", "VALUE:IVA" ], [ "T1", "N1c", "M1a", "VALUE:IVA" ], [ "T1", "N1NOS", "M1a", "VALUE:IVA" ], [ "T1", "N2a", "M1a", "VALUE:IVA" ], [ "T1", "N2b", "M1a", "VALUE:IVA" ], [ "T1", "N2NOS", "M1a", "VALUE:IVA" ], [ "T1", "NX", "M1a", "VALUE:IVA" ], [ "T2", "N0", "M1a", "VALUE:IVA" ], [ "T2", "N1a", "M1a", "VALUE:IVA" ], [ "T2", "N1b", "M1a", "VALUE:IVA" ], [ "T2", "N1c", "M1a", "VALUE:IVA" ], [ "T2", "N1NOS", "M1a", "VALUE:IVA" ], [ "T2", "N2a", "M1a", "VALUE:IVA" ], [ "T2", "N2b", "M1a", "VALUE:IVA" ], [ "T2", "N2NOS", "M1a", "VALUE:IVA" ], [ "T2", "NX", "M1a", "VALUE:IVA" ], [ "T3", "N0", "M1a", "VALUE:IVA" ], [ "T3", "N1a", "M1a", "VALUE:IVA" ], [ "T3", "N1b", "M1a", "VALUE:IVA" ], [ "T3", "N1c", "M1a", "VALUE:IVA" ], [ "T3", "N1NOS", "M1a", "VALUE:IVA" ], [ "T3", "N2a", "M1a", "VALUE:IVA" ], [ "T3", "N2b", "M1a", "VALUE:IVA" ], [ "T3", "N2NOS", "M1a", "VALUE:IVA" ], [ "T3", "NX", "M1a", "VALUE:IVA" ], [ "T4a", "N0", "M1a", "VALUE:IVA" ], [ "T4a", "N1a", "M1a", "VALUE:IVA" ], [ "T4a", "N1b", "M1a", "VALUE:IVA" ], [ "T4a", "N1c", "M1a", "VALUE:IVA" ], [ "T4a", "N1NOS", "M1a", "VALUE:IVA" ], [ "T4a", "N2a", "M1a", "VALUE:IVA" ], [ "T4a", "N2b", "M1a", "VALUE:IVA" ], [ "T4a", "N2NOS", "M1a", "VALUE:IVA" ], [ "T4a", "NX", "M1a", "VALUE:IVA" ], [ "T4b", "N0", "M1a", "VALUE:IVA" ], [ "T4b", "N1a", "M1a", "VALUE:IVA" ], [ "T4b", "N1b", "M1a", "VALUE:IVA" ], [ "T4b", "N1c", "M1a", "VALUE:IVA" ], [ "T4b", "N1NOS", "M1a", "VALUE:IVA" ], [ "T4b", "N2a", "M1a", "VALUE:IVA" ], [ "T4b", "N2b", "M1a", "VALUE:IVA" ], [ "T4b", "N2NOS", "M1a", "VALUE:IVA" ], [ "T4b", "NX", "M1a", "VALUE:IVA" ], [ "T4NOS", "N0", "M1a", "VALUE:IVA" ], [ "T4NOS", "N1a", "M1a", "VALUE:IVA" ], [ "T4NOS", "N1b", "M1a", "VALUE:IVA" ], [ "T4NOS", "N1c", "M1a", "VALUE:IVA" ], [ "T4NOS", "N1NOS", "M1a", "VALUE:IVA" ], [ "T4NOS", "N2a", "M1a", "VALUE:IVA" ], [ "T4NOS", "N2b", "M1a", "VALUE:IVA" ], [ "T4NOS", "N2NOS", "M1a", "VALUE:IVA" ], [ "T4NOS", "NX", "M1a", "VALUE:IVA" ], [ "TX", "N0", "M1a", "VALUE:IVA" ], [ "TX", "N1a", "M1a", "VALUE:IVA" ], [ "TX", "N1b", "M1a", "VALUE:IVA" ], [ "TX", "N1c", "M1a", "VALUE:IVA" ], [ "TX", "N1NOS", "M1a", "VALUE:IVA" ], [ "TX", "N2a", "M1a", "VALUE:IVA" ], [ "TX", "N2b", "M1a", "VALUE:IVA" ], [ "TX", "N2NOS", "M1a", "VALUE:IVA" ], [ "TX", "NX", "M1a", "VALUE:IVA" ], [ "T0", "N0", "M1b", "VALUE:IVB" ], [ "T0", "N1a", "M1b", "VALUE:IVB" ], [ "T0", "N1b", "M1b", "VALUE:IVB" ], [ "T0", "N1c", "M1b", "VALUE:IVB" ], [ "T0", "N1NOS", "M1b", "VALUE:IVB" ], [ "T0", "N2a", "M1b", "VALUE:IVB" ], [ "T0", "N2b", "M1b", "VALUE:IVB" ], [ "T0", "N2NOS", "M1b", "VALUE:IVB" ], [ "T0", "NX", "M1b", "VALUE:IVB" ], [ "Tis", "N0", "M1b", "ERROR:" ], [ "Tis", "N1a", "M1b", "ERROR:" ], [ "Tis", "N1b", "M1b", "ERROR:" ], [ "Tis", "N1c", "M1b", "ERROR:" ], [ "Tis", "N1NOS", "M1b", "ERROR:" ], [ "Tis", "N2a", "M1b", "ERROR:" ], [ "Tis", "N2b", "M1b", "ERROR:" ], [ "Tis", "N2NOS", "M1b", "ERROR:" ], [ "Tis", "NX", "M1b", "ERROR:" ], [ "T1", "N0", "M1b", "VALUE:IVB" ], [ "T1", "N1a", "M1b", "VALUE:IVB" ], [ "T1", "N1b", "M1b", "VALUE:IVB" ], [ "T1", "N1c", "M1b", "VALUE:IVB" ], [ "T1", "N1NOS", "M1b", "VALUE:IVB" ], [ "T1", "N2a", "M1b", "VALUE:IVB" ], [ "T1", "N2b", "M1b", "VALUE:IVB" ], [ "T1", "N2NOS", "M1b", "VALUE:IVB" ], [ "T1", "NX", "M1b", "VALUE:IVB" ], [ "T2", "N0", "M1b", "VALUE:IVB" ], [ "T2", "N1a", "M1b", "VALUE:IVB" ], [ "T2", "N1b", "M1b", "VALUE:IVB" ], [ "T2", "N1c", "M1b", "VALUE:IVB" ], [ "T2", "N1NOS", "M1b", "VALUE:IVB" ], [ "T2", "N2a", "M1b", "VALUE:IVB" ], [ "T2", "N2b", "M1b", "VALUE:IVB" ], [ "T2", "N2NOS", "M1b", "VALUE:IVB" ], [ "T2", "NX", "M1b", "VALUE:IVB" ], [ "T3", "N0", "M1b", "VALUE:IVB" ], [ "T3", "N1a", "M1b", "VALUE:IVB" ], [ "T3", "N1b", "M1b", "VALUE:IVB" ], [ "T3", "N1c", "M1b", "VALUE:IVB" ], [ "T3", "N1NOS", "M1b", "VALUE:IVB" ], [ "T3", "N2a", "M1b", "VALUE:IVB" ], [ "T3", "N2b", "M1b", "VALUE:IVB" ], [ "T3", "N2NOS", "M1b", "VALUE:IVB" ], [ "T3", "NX", "M1b", "VALUE:IVB" ], [ "T4a", "N0", "M1b", "VALUE:IVB" ], [ "T4a", "N1a", "M1b", "VALUE:IVB" ], [ "T4a", "N1b", "M1b", "VALUE:IVB" ], [ "T4a", "N1c", "M1b", "VALUE:IVB" ], [ "T4a", "N1NOS", "M1b", "VALUE:IVB" ], [ "T4a", "N2a", "M1b", "VALUE:IVB" ], [ "T4a", "N2b", "M1b", "VALUE:IVB" ], [ "T4a", "N2NOS", "M1b", "VALUE:IVB" ], [ "T4a", "NX", "M1b", "VALUE:IVB" ], [ "T4b", "N0", "M1b", "VALUE:IVB" ], [ "T4b", "N1a", "M1b", "VALUE:IVB" ], [ "T4b", "N1b", "M1b", "VALUE:IVB" ], [ "T4b", "N1c", "M1b", "VALUE:IVB" ], [ "T4b", "N1NOS", "M1b", "VALUE:IVB" ], [ "T4b", "N2a", "M1b", "VALUE:IVB" ], [ "T4b", "N2b", "M1b", "VALUE:IVB" ], [ "T4b", "N2NOS", "M1b", "VALUE:IVB" ], [ "T4b", "NX", "M1b", "VALUE:IVB" ], [ "T4NOS", "N0", "M1b", "VALUE:IVB" ], [ "T4NOS", "N1a", "M1b", "VALUE:IVB" ], [ "T4NOS", "N1b", "M1b", "VALUE:IVB" ], [ "T4NOS", "N1c", "M1b", "VALUE:IVB" ], [ "T4NOS", "N1NOS", "M1b", "VALUE:IVB" ], [ "T4NOS", "N2a", "M1b", "VALUE:IVB" ], [ "T4NOS", "N2b", "M1b", "VALUE:IVB" ], [ "T4NOS", "N2NOS", "M1b", "VALUE:IVB" ], [ "T4NOS", "NX", "M1b", "VALUE:IVB" ], [ "TX", "N0", "M1b", "VALUE:IVB" ], [ "TX", "N1a", "M1b", "VALUE:IVB" ], [ "TX", "N1b", "M1b", "VALUE:IVB" ], [ "TX", "N1c", "M1b", "VALUE:IVB" ], [ "TX", "N1NOS", "M1b", "VALUE:IVB" ], [ "TX", "N2a", "M1b", "VALUE:IVB" ], [ "TX", "N2b", "M1b", "VALUE:IVB" ], [ "TX", "N2NOS", "M1b", "VALUE:IVB" ], [ "TX", "NX", "M1b", "VALUE:IVB" ], [ "T0", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "T0", "NX", "M1NOS", "VALUE:IVNOS" ], [ "Tis", "N0", "M1NOS", "ERROR:" ], [ "Tis", "N1a", "M1NOS", "ERROR:" ], [ "Tis", "N1b", "M1NOS", "ERROR:" ], [ "Tis", "N1c", "M1NOS", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", "ERROR:" ], [ "Tis", "N2a", "M1NOS", "ERROR:" ], [ "Tis", "N2b", "M1NOS", "ERROR:" ], [ "Tis", "N2NOS", "M1NOS", "ERROR:" ], [ "Tis", "NX", "M1NOS", "ERROR:" ], [ "T1", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "T1", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "T2", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "T3", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "T4a", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "T4b", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N1a", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N1b", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N1c", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N1NOS", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N2a", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N2b", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N2NOS", "M1NOS", "VALUE:IVNOS" ], [ "TX", "NX", "M1NOS", "VALUE:IVNOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upx.json
deleted file mode 100644
index fd11bd7ad..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upx.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_upx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.835Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IIIB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:IIIB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:IIIB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IIA" ], [ "T2", "N1", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1a", "N0", "M1", "VALUE:IV" ], [ "T1a", "N1", "M1", "VALUE:IV" ], [ "T1a", "NX", "M1", "VALUE:IV" ], [ "T1b", "N0", "M1", "VALUE:IV" ], [ "T1b", "N1", "M1", "VALUE:IV" ], [ "T1b", "NX", "M1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upy.json
deleted file mode 100644
index d6f8fc604..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upy.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_upy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage - GIST Small Intestine",
- "last_modified" : "2015-05-27T16:18:59.883Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "mitotic_rate",
- "name" : "Mitotic Rate",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "High", "ERROR:" ], [ "T0", "N0", "M0", "Low", "ERROR:" ], [ "T0", "N0", "M0", "Unknown", "ERROR:" ], [ "T0", "N1", "M0", "High", "VALUE:IV" ], [ "T0", "N1", "M0", "Low", "VALUE:IV" ], [ "T0", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T1", "N0", "M0", "High", "VALUE:IIIA" ], [ "T1", "N0", "M0", "Low", "VALUE:I" ], [ "T1", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T1", "N1", "M0", "High", "VALUE:IV" ], [ "T1", "N1", "M0", "Low", "VALUE:IV" ], [ "T1", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T2", "N0", "M0", "High", "VALUE:IIIB" ], [ "T2", "N0", "M0", "Low", "VALUE:I" ], [ "T2", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T2", "N1", "M0", "High", "VALUE:IV" ], [ "T2", "N1", "M0", "Low", "VALUE:IV" ], [ "T2", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T3", "N0", "M0", "High", "VALUE:IIIB" ], [ "T3", "N0", "M0", "Low", "VALUE:II" ], [ "T3", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T3", "N1", "M0", "High", "VALUE:IV" ], [ "T3", "N1", "M0", "Low", "VALUE:IV" ], [ "T3", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T4", "N0", "M0", "High", "VALUE:IIIB" ], [ "T4", "N0", "M0", "Low", "VALUE:IIIA" ], [ "T4", "N0", "M0", "Unknown", "VALUE:IIINOS" ], [ "T4", "N1", "M0", "High", "VALUE:IV" ], [ "T4", "N1", "M0", "Low", "VALUE:IV" ], [ "T4", "N1", "M0", "Unknown", "VALUE:IV" ], [ "TX", "N0", "M0", "High", "VALUE:UNK" ], [ "TX", "N0", "M0", "Low", "VALUE:UNK" ], [ "TX", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "TX", "N1", "M0", "High", "VALUE:IV" ], [ "TX", "N1", "M0", "Low", "VALUE:IV" ], [ "TX", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T0", "N0", "M1", "High", "VALUE:IV" ], [ "T0", "N0", "M1", "Low", "VALUE:IV" ], [ "T0", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T0", "N1", "M1", "High", "VALUE:IV" ], [ "T0", "N1", "M1", "Low", "VALUE:IV" ], [ "T0", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T1", "N0", "M1", "High", "VALUE:IV" ], [ "T1", "N0", "M1", "Low", "VALUE:IV" ], [ "T1", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T1", "N1", "M1", "High", "VALUE:IV" ], [ "T1", "N1", "M1", "Low", "VALUE:IV" ], [ "T1", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T2", "N0", "M1", "High", "VALUE:IV" ], [ "T2", "N0", "M1", "Low", "VALUE:IV" ], [ "T2", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T2", "N1", "M1", "High", "VALUE:IV" ], [ "T2", "N1", "M1", "Low", "VALUE:IV" ], [ "T2", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T3", "N0", "M1", "High", "VALUE:IV" ], [ "T3", "N0", "M1", "Low", "VALUE:IV" ], [ "T3", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T3", "N1", "M1", "High", "VALUE:IV" ], [ "T3", "N1", "M1", "Low", "VALUE:IV" ], [ "T3", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T4", "N0", "M1", "High", "VALUE:IV" ], [ "T4", "N0", "M1", "Low", "VALUE:IV" ], [ "T4", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T4", "N1", "M1", "High", "VALUE:IV" ], [ "T4", "N1", "M1", "Low", "VALUE:IV" ], [ "T4", "N1", "M1", "Unknown", "VALUE:IV" ], [ "TX", "N0", "M1", "High", "VALUE:IV" ], [ "TX", "N0", "M1", "Low", "VALUE:IV" ], [ "TX", "N0", "M1", "Unknown", "VALUE:IV" ], [ "TX", "N1", "M1", "High", "VALUE:IV" ], [ "TX", "N1", "M1", "Low", "VALUE:IV" ], [ "TX", "N1", "M1", "Unknown", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upz.json
deleted file mode 100644
index 9bae38fdd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_upz.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_upz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:18:59.937Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IV" ], [ "T0", "N2", "M0", "VALUE:IV" ], [ "T0", "N3", "M0", "VALUE:IV" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Ta", "N0", "M0", "VALUE:0a" ], [ "Ta", "N1", "M0", "ERROR:" ], [ "Ta", "N2", "M0", "ERROR:" ], [ "Ta", "N3", "M0", "ERROR:" ], [ "Ta", "NX", "M0", "VALUE:0a" ], [ "Tis", "N0", "M0", "VALUE:0is" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0is" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IV" ], [ "T1", "N2", "M0", "VALUE:IV" ], [ "T1", "N3", "M0", "VALUE:IV" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IV" ], [ "T2", "N2", "M0", "VALUE:IV" ], [ "T2", "N3", "M0", "VALUE:IV" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:IV" ], [ "T3", "N2", "M0", "VALUE:IV" ], [ "T3", "N3", "M0", "VALUE:IV" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IV" ], [ "T4", "N1", "M0", "VALUE:IV" ], [ "T4", "N2", "M0", "VALUE:IV" ], [ "T4", "N3", "M0", "VALUE:IV" ], [ "T4", "NX", "M0", "VALUE:IV" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IV" ], [ "TX", "N2", "M0", "VALUE:IV" ], [ "TX", "N3", "M0", "VALUE:IV" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "N2", "M1", "VALUE:IV" ], [ "T0", "N3", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "Ta", "N0", "M1", "ERROR:" ], [ "Ta", "N1", "M1", "ERROR:" ], [ "Ta", "N2", "M1", "ERROR:" ], [ "Ta", "N3", "M1", "ERROR:" ], [ "Ta", "NX", "M1", "ERROR:" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "N3", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "N2", "M1", "VALUE:IV" ], [ "T1", "N3", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "N2", "M1", "VALUE:IV" ], [ "T2", "N3", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "N2", "M1", "VALUE:IV" ], [ "T3", "N3", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "N2", "M1", "VALUE:IV" ], [ "T4", "N3", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "N2", "M1", "VALUE:IV" ], [ "TX", "N3", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqa.json
deleted file mode 100644
index 9e8c6c8be..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqa.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uqa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:19:00.093Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IIIB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:IIIB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:IIA" ], [ "T2", "N1", "M0", "VALUE:IIIB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIB" ], [ "T3", "N1", "M0", "VALUE:IIIB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IIIA" ], [ "T4", "N1", "M0", "VALUE:IIIB" ], [ "T4", "NX", "M0", "VALUE:UNK" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IIIB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IV" ], [ "T0", "N1", "M1", "VALUE:IV" ], [ "T0", "NX", "M1", "VALUE:IV" ], [ "T1", "N0", "M1", "VALUE:IV" ], [ "T1", "N1", "M1", "VALUE:IV" ], [ "T1", "NX", "M1", "VALUE:IV" ], [ "T2", "N0", "M1", "VALUE:IV" ], [ "T2", "N1", "M1", "VALUE:IV" ], [ "T2", "NX", "M1", "VALUE:IV" ], [ "T3", "N0", "M1", "VALUE:IV" ], [ "T3", "N1", "M1", "VALUE:IV" ], [ "T3", "NX", "M1", "VALUE:IV" ], [ "T4", "N0", "M1", "VALUE:IV" ], [ "T4", "N1", "M1", "VALUE:IV" ], [ "T4", "NX", "M1", "VALUE:IV" ], [ "TX", "N0", "M1", "VALUE:IV" ], [ "TX", "N1", "M1", "VALUE:IV" ], [ "TX", "NX", "M1", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqb.json
deleted file mode 100644
index fb5d7812f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqb.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uqb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:19:00.157Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "Tis", "N0", "M0", "VALUE:0" ], [ "Tis", "N1", "M0", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR:" ], [ "Tis", "NX", "M0", "VALUE:0" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N1", "M0", "VALUE:IIIB" ], [ "T1a", "N2", "M0", "VALUE:IVB" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N1", "M0", "VALUE:IIIB" ], [ "T1b", "N2", "M0", "VALUE:IVB" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N1", "M0", "VALUE:IIIB" ], [ "T1NOS", "N2", "M0", "VALUE:IVB" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:IIIB" ], [ "T2", "N2", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:IIIA" ], [ "T3", "N1", "M0", "VALUE:IIIB" ], [ "T3", "N2", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4", "N0", "M0", "VALUE:IVA" ], [ "T4", "N1", "M0", "VALUE:IVA" ], [ "T4", "N2", "M0", "VALUE:IVB" ], [ "T4", "NX", "M0", "VALUE:IVA" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVB" ], [ "T0", "N1", "M1", "VALUE:IVB" ], [ "T0", "N2", "M1", "VALUE:IVB" ], [ "T0", "NX", "M1", "VALUE:IVB" ], [ "Tis", "N0", "M1", "ERROR:" ], [ "Tis", "N1", "M1", "ERROR:" ], [ "Tis", "N2", "M1", "ERROR:" ], [ "Tis", "NX", "M1", "ERROR:" ], [ "T1a", "N0", "M1", "VALUE:IVB" ], [ "T1a", "N1", "M1", "VALUE:IVB" ], [ "T1a", "N2", "M1", "VALUE:IVB" ], [ "T1a", "NX", "M1", "VALUE:IVB" ], [ "T1b", "N0", "M1", "VALUE:IVB" ], [ "T1b", "N1", "M1", "VALUE:IVB" ], [ "T1b", "N2", "M1", "VALUE:IVB" ], [ "T1b", "NX", "M1", "VALUE:IVB" ], [ "T1NOS", "N0", "M1", "VALUE:IVB" ], [ "T1NOS", "N1", "M1", "VALUE:IVB" ], [ "T1NOS", "N2", "M1", "VALUE:IVB" ], [ "T1NOS", "NX", "M1", "VALUE:IVB" ], [ "T2", "N0", "M1", "VALUE:IVB" ], [ "T2", "N1", "M1", "VALUE:IVB" ], [ "T2", "N2", "M1", "VALUE:IVB" ], [ "T2", "NX", "M1", "VALUE:IVB" ], [ "T3", "N0", "M1", "VALUE:IVB" ], [ "T3", "N1", "M1", "VALUE:IVB" ], [ "T3", "N2", "M1", "VALUE:IVB" ], [ "T3", "NX", "M1", "VALUE:IVB" ], [ "T4", "N0", "M1", "VALUE:IVB" ], [ "T4", "N1", "M1", "VALUE:IVB" ], [ "T4", "N2", "M1", "VALUE:IVB" ], [ "T4", "NX", "M1", "VALUE:IVB" ], [ "TX", "N0", "M1", "VALUE:IVB" ], [ "TX", "N1", "M1", "VALUE:IVB" ], [ "TX", "N2", "M1", "VALUE:IVB" ], [ "TX", "NX", "M1", "VALUE:IVB" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqc.json
deleted file mode 100644
index ef4477a32..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqc.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcc7_stage_uqc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:19:00.215Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:UNK" ], [ "T0", "N2a", "M0", "VALUE:IVA" ], [ "T0", "N2b", "M0", "VALUE:IVA" ], [ "T0", "N2c", "M0", "VALUE:IVA" ], [ "T0", "N2NOS", "M0", "VALUE:IVA" ], [ "T0", "N3", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N1", "M0", "VALUE:III" ], [ "T1", "N2a", "M0", "VALUE:IVA" ], [ "T1", "N2b", "M0", "VALUE:IVA" ], [ "T1", "N2c", "M0", "VALUE:IVA" ], [ "T1", "N2NOS", "M0", "VALUE:IVA" ], [ "T1", "N3", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N1", "M0", "VALUE:III" ], [ "T2", "N2a", "M0", "VALUE:IVA" ], [ "T2", "N2b", "M0", "VALUE:IVA" ], [ "T2", "N2c", "M0", "VALUE:IVA" ], [ "T2", "N2NOS", "M0", "VALUE:IVA" ], [ "T2", "N3", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:III" ], [ "T3", "N2a", "M0", "VALUE:IVA" ], [ "T3", "N2b", "M0", "VALUE:IVA" ], [ "T3", "N2c", "M0", "VALUE:IVA" ], [ "T3", "N2NOS", "M0", "VALUE:IVA" ], [ "T3", "N3", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N1", "M0", "VALUE:IVA" ], [ "T4a", "N2a", "M0", "VALUE:IVA" ], [ "T4a", "N2b", "M0", "VALUE:IVA" ], [ "T4a", "N2c", "M0", "VALUE:IVA" ], [ "T4a", "N2NOS", "M0", "VALUE:IVA" ], [ "T4a", "N3", "M0", "VALUE:IVB" ], [ "T4a", "NX", "M0", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N1", "M0", "VALUE:IVB" ], [ "T4b", "N2a", "M0", "VALUE:IVB" ], [ "T4b", "N2b", "M0", "VALUE:IVB" ], [ "T4b", "N2c", "M0", "VALUE:IVB" ], [ "T4b", "N2NOS", "M0", "VALUE:IVB" ], [ "T4b", "N3", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2c", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N2NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N3", "M0", "VALUE:IVB" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:UNK" ], [ "TX", "N2a", "M0", "VALUE:IVNOS" ], [ "TX", "N2b", "M0", "VALUE:IVNOS" ], [ "TX", "N2c", "M0", "VALUE:IVNOS" ], [ "TX", "N2NOS", "M0", "VALUE:IVNOS" ], [ "TX", "N3", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1", "M1", "VALUE:IVC" ], [ "T0", "N2a", "M1", "VALUE:IVC" ], [ "T0", "N2b", "M1", "VALUE:IVC" ], [ "T0", "N2c", "M1", "VALUE:IVC" ], [ "T0", "N2NOS", "M1", "VALUE:IVC" ], [ "T0", "N3", "M1", "VALUE:IVC" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N1", "M1", "VALUE:IVC" ], [ "T1", "N2a", "M1", "VALUE:IVC" ], [ "T1", "N2b", "M1", "VALUE:IVC" ], [ "T1", "N2c", "M1", "VALUE:IVC" ], [ "T1", "N2NOS", "M1", "VALUE:IVC" ], [ "T1", "N3", "M1", "VALUE:IVC" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1", "M1", "VALUE:IVC" ], [ "T2", "N2a", "M1", "VALUE:IVC" ], [ "T2", "N2b", "M1", "VALUE:IVC" ], [ "T2", "N2c", "M1", "VALUE:IVC" ], [ "T2", "N2NOS", "M1", "VALUE:IVC" ], [ "T2", "N3", "M1", "VALUE:IVC" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1", "M1", "VALUE:IVC" ], [ "T3", "N2a", "M1", "VALUE:IVC" ], [ "T3", "N2b", "M1", "VALUE:IVC" ], [ "T3", "N2c", "M1", "VALUE:IVC" ], [ "T3", "N2NOS", "M1", "VALUE:IVC" ], [ "T3", "N3", "M1", "VALUE:IVC" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1", "M1", "VALUE:IVC" ], [ "T4a", "N2a", "M1", "VALUE:IVC" ], [ "T4a", "N2b", "M1", "VALUE:IVC" ], [ "T4a", "N2c", "M1", "VALUE:IVC" ], [ "T4a", "N2NOS", "M1", "VALUE:IVC" ], [ "T4a", "N3", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1", "M1", "VALUE:IVC" ], [ "T4b", "N2a", "M1", "VALUE:IVC" ], [ "T4b", "N2b", "M1", "VALUE:IVC" ], [ "T4b", "N2c", "M1", "VALUE:IVC" ], [ "T4b", "N2NOS", "M1", "VALUE:IVC" ], [ "T4b", "N3", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1", "M1", "VALUE:IVC" ], [ "T4NOS", "N2a", "M1", "VALUE:IVC" ], [ "T4NOS", "N2b", "M1", "VALUE:IVC" ], [ "T4NOS", "N2c", "M1", "VALUE:IVC" ], [ "T4NOS", "N2NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N3", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1", "M1", "VALUE:IVC" ], [ "TX", "N2a", "M1", "VALUE:IVC" ], [ "TX", "N2b", "M1", "VALUE:IVC" ], [ "TX", "N2c", "M1", "VALUE:IVC" ], [ "TX", "N2NOS", "M1", "VALUE:IVC" ], [ "TX", "N3", "M1", "VALUE:IVC" ], [ "TX", "NX", "M1", "VALUE:IVC" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqd.json
deleted file mode 100644
index 1a1680842..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqd.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_uqd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:19:00.274Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "s",
- "name" : "S",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR", "ERROR:" ], [ "T0", "N0", "M0", "S0", "ERROR:" ], [ "T0", "N0", "M0", "S1", "VALUE:IS" ], [ "T0", "N0", "M0", "S2", "VALUE:IS" ], [ "T0", "N0", "M0", "S3", "VALUE:IS" ], [ "T0", "N0", "M0", "SX", "ERROR:" ], [ "T0", "N1", "M0", "ERROR", "ERROR:" ], [ "T0", "N1", "M0", "S0", "VALUE:IIA" ], [ "T0", "N1", "M0", "S1", "VALUE:IIA" ], [ "T0", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T0", "N2", "M0", "ERROR", "ERROR:" ], [ "T0", "N2", "M0", "S0", "VALUE:IIB" ], [ "T0", "N2", "M0", "S1", "VALUE:IIB" ], [ "T0", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T0", "N3", "M0", "ERROR", "ERROR:" ], [ "T0", "N3", "M0", "S0", "VALUE:IIC" ], [ "T0", "N3", "M0", "S1", "VALUE:IIC" ], [ "T0", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T0", "NX", "M0", "ERROR", "ERROR:" ], [ "T0", "NX", "M0", "S0", "VALUE:UNK" ], [ "T0", "NX", "M0", "S1", "VALUE:UNK" ], [ "T0", "NX", "M0", "S2", "VALUE:UNK" ], [ "T0", "NX", "M0", "S3", "VALUE:UNK" ], [ "T0", "NX", "M0", "SX", "VALUE:UNK" ], [ "Tis", "N0", "M0", "ERROR", "ERROR:" ], [ "Tis", "N0", "M0", "S0", "VALUE:0" ], [ "Tis", "N0", "M0", "S1", "ERROR:" ], [ "Tis", "N0", "M0", "S2", "ERROR:" ], [ "Tis", "N0", "M0", "S3", "ERROR:" ], [ "Tis", "N0", "M0", "SX", "VALUE:UNK" ], [ "Tis", "N1", "M0", "ERROR", "ERROR:" ], [ "Tis", "N1", "M0", "S0", "ERROR:" ], [ "Tis", "N1", "M0", "S1", "ERROR:" ], [ "Tis", "N1", "M0", "S2", "ERROR:" ], [ "Tis", "N1", "M0", "S3", "ERROR:" ], [ "Tis", "N1", "M0", "SX", "ERROR:" ], [ "Tis", "N2", "M0", "ERROR", "ERROR:" ], [ "Tis", "N2", "M0", "S0", "ERROR:" ], [ "Tis", "N2", "M0", "S1", "ERROR:" ], [ "Tis", "N2", "M0", "S2", "ERROR:" ], [ "Tis", "N2", "M0", "S3", "ERROR:" ], [ "Tis", "N2", "M0", "SX", "ERROR:" ], [ "Tis", "N3", "M0", "ERROR", "ERROR:" ], [ "Tis", "N3", "M0", "S0", "ERROR:" ], [ "Tis", "N3", "M0", "S1", "ERROR:" ], [ "Tis", "N3", "M0", "S2", "ERROR:" ], [ "Tis", "N3", "M0", "S3", "ERROR:" ], [ "Tis", "N3", "M0", "SX", "ERROR:" ], [ "Tis", "NX", "M0", "ERROR", "ERROR:" ], [ "Tis", "NX", "M0", "S0", "ERROR:" ], [ "Tis", "NX", "M0", "S1", "ERROR:" ], [ "Tis", "NX", "M0", "S2", "ERROR:" ], [ "Tis", "NX", "M0", "S3", "ERROR:" ], [ "Tis", "NX", "M0", "SX", "VALUE:UNK" ], [ "T1", "N0", "M0", "ERROR", "ERROR:" ], [ "T1", "N0", "M0", "S0", "VALUE:IA" ], [ "T1", "N0", "M0", "S1", "VALUE:IS" ], [ "T1", "N0", "M0", "S2", "VALUE:IS" ], [ "T1", "N0", "M0", "S3", "VALUE:IS" ], [ "T1", "N0", "M0", "SX", "VALUE:INOS" ], [ "T1", "N1", "M0", "ERROR", "ERROR:" ], [ "T1", "N1", "M0", "S0", "VALUE:IIA" ], [ "T1", "N1", "M0", "S1", "VALUE:IIA" ], [ "T1", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T1", "N2", "M0", "ERROR", "ERROR:" ], [ "T1", "N2", "M0", "S0", "VALUE:IIB" ], [ "T1", "N2", "M0", "S1", "VALUE:IIB" ], [ "T1", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T1", "N3", "M0", "ERROR", "ERROR:" ], [ "T1", "N3", "M0", "S0", "VALUE:IIC" ], [ "T1", "N3", "M0", "S1", "VALUE:IIC" ], [ "T1", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T1", "NX", "M0", "ERROR", "ERROR:" ], [ "T1", "NX", "M0", "S0", "VALUE:UNK" ], [ "T1", "NX", "M0", "S1", "VALUE:UNK" ], [ "T1", "NX", "M0", "S2", "VALUE:UNK" ], [ "T1", "NX", "M0", "S3", "VALUE:UNK" ], [ "T1", "NX", "M0", "SX", "VALUE:UNK" ], [ "T2", "N0", "M0", "ERROR", "ERROR:" ], [ "T2", "N0", "M0", "S0", "VALUE:IB" ], [ "T2", "N0", "M0", "S1", "VALUE:IS" ], [ "T2", "N0", "M0", "S2", "VALUE:IS" ], [ "T2", "N0", "M0", "S3", "VALUE:IS" ], [ "T2", "N0", "M0", "SX", "VALUE:INOS" ], [ "T2", "N1", "M0", "ERROR", "ERROR:" ], [ "T2", "N1", "M0", "S0", "VALUE:IIA" ], [ "T2", "N1", "M0", "S1", "VALUE:IIA" ], [ "T2", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T2", "N2", "M0", "ERROR", "ERROR:" ], [ "T2", "N2", "M0", "S0", "VALUE:IIB" ], [ "T2", "N2", "M0", "S1", "VALUE:IIB" ], [ "T2", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T2", "N3", "M0", "ERROR", "ERROR:" ], [ "T2", "N3", "M0", "S0", "VALUE:IIC" ], [ "T2", "N3", "M0", "S1", "VALUE:IIC" ], [ "T2", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T2", "NX", "M0", "ERROR", "ERROR:" ], [ "T2", "NX", "M0", "S0", "VALUE:UNK" ], [ "T2", "NX", "M0", "S1", "VALUE:UNK" ], [ "T2", "NX", "M0", "S2", "VALUE:UNK" ], [ "T2", "NX", "M0", "S3", "VALUE:UNK" ], [ "T2", "NX", "M0", "SX", "VALUE:UNK" ], [ "T3", "N0", "M0", "ERROR", "ERROR:" ], [ "T3", "N0", "M0", "S0", "VALUE:IB" ], [ "T3", "N0", "M0", "S1", "VALUE:IS" ], [ "T3", "N0", "M0", "S2", "VALUE:IS" ], [ "T3", "N0", "M0", "S3", "VALUE:IS" ], [ "T3", "N0", "M0", "SX", "VALUE:INOS" ], [ "T3", "N1", "M0", "ERROR", "ERROR:" ], [ "T3", "N1", "M0", "S0", "VALUE:IIA" ], [ "T3", "N1", "M0", "S1", "VALUE:IIA" ], [ "T3", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T3", "N2", "M0", "ERROR", "ERROR:" ], [ "T3", "N2", "M0", "S0", "VALUE:IIB" ], [ "T3", "N2", "M0", "S1", "VALUE:IIB" ], [ "T3", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T3", "N3", "M0", "ERROR", "ERROR:" ], [ "T3", "N3", "M0", "S0", "VALUE:IIC" ], [ "T3", "N3", "M0", "S1", "VALUE:IIC" ], [ "T3", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T3", "NX", "M0", "ERROR", "ERROR:" ], [ "T3", "NX", "M0", "S0", "VALUE:UNK" ], [ "T3", "NX", "M0", "S1", "VALUE:UNK" ], [ "T3", "NX", "M0", "S2", "VALUE:UNK" ], [ "T3", "NX", "M0", "S3", "VALUE:UNK" ], [ "T3", "NX", "M0", "SX", "VALUE:UNK" ], [ "T4", "N0", "M0", "ERROR", "ERROR:" ], [ "T4", "N0", "M0", "S0", "VALUE:IB" ], [ "T4", "N0", "M0", "S1", "VALUE:IS" ], [ "T4", "N0", "M0", "S2", "VALUE:IS" ], [ "T4", "N0", "M0", "S3", "VALUE:IS" ], [ "T4", "N0", "M0", "SX", "VALUE:INOS" ], [ "T4", "N1", "M0", "ERROR", "ERROR:" ], [ "T4", "N1", "M0", "S0", "VALUE:IIA" ], [ "T4", "N1", "M0", "S1", "VALUE:IIA" ], [ "T4", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T4", "N2", "M0", "ERROR", "ERROR:" ], [ "T4", "N2", "M0", "S0", "VALUE:IIB" ], [ "T4", "N2", "M0", "S1", "VALUE:IIB" ], [ "T4", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T4", "N3", "M0", "ERROR", "ERROR:" ], [ "T4", "N3", "M0", "S0", "VALUE:IIC" ], [ "T4", "N3", "M0", "S1", "VALUE:IIC" ], [ "T4", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T4", "NX", "M0", "ERROR", "ERROR:" ], [ "T4", "NX", "M0", "S0", "VALUE:UNK" ], [ "T4", "NX", "M0", "S1", "VALUE:UNK" ], [ "T4", "NX", "M0", "S2", "VALUE:UNK" ], [ "T4", "NX", "M0", "S3", "VALUE:UNK" ], [ "T4", "NX", "M0", "SX", "VALUE:UNK" ], [ "TX", "N0", "M0", "ERROR", "ERROR:" ], [ "TX", "N0", "M0", "S0", "VALUE:UNK" ], [ "TX", "N0", "M0", "S1", "VALUE:IS" ], [ "TX", "N0", "M0", "S2", "VALUE:IS" ], [ "TX", "N0", "M0", "S3", "VALUE:IS" ], [ "TX", "N0", "M0", "SX", "VALUE:UNK" ], [ "TX", "N1", "M0", "ERROR", "ERROR:" ], [ "TX", "N1", "M0", "S0", "VALUE:IIA" ], [ "TX", "N1", "M0", "S1", "VALUE:IIA" ], [ "TX", "N1", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N1", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M0", "SX", "VALUE:IINOS" ], [ "TX", "N2", "M0", "ERROR", "ERROR:" ], [ "TX", "N2", "M0", "S0", "VALUE:IIB" ], [ "TX", "N2", "M0", "S1", "VALUE:IIB" ], [ "TX", "N2", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N2", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M0", "SX", "VALUE:IINOS" ], [ "TX", "N3", "M0", "ERROR", "ERROR:" ], [ "TX", "N3", "M0", "S0", "VALUE:IIC" ], [ "TX", "N3", "M0", "S1", "VALUE:IIC" ], [ "TX", "N3", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N3", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M0", "SX", "VALUE:IINOS" ], [ "TX", "NX", "M0", "ERROR", "ERROR:" ], [ "TX", "NX", "M0", "S0", "VALUE:UNK" ], [ "TX", "NX", "M0", "S1", "VALUE:UNK" ], [ "TX", "NX", "M0", "S2", "VALUE:UNK" ], [ "TX", "NX", "M0", "S3", "VALUE:UNK" ], [ "TX", "NX", "M0", "SX", "VALUE:UNK" ], [ "T0", "N0", "M1a", "ERROR", "ERROR:" ], [ "T0", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N1", "M1a", "ERROR", "ERROR:" ], [ "T0", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N2", "M1a", "ERROR", "ERROR:" ], [ "T0", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N3", "M1a", "ERROR", "ERROR:" ], [ "T0", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "NX", "M1a", "ERROR", "ERROR:" ], [ "T0", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "Tis", "N0", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N0", "M1a", "S0", "ERROR:" ], [ "Tis", "N0", "M1a", "S1", "ERROR:" ], [ "Tis", "N0", "M1a", "S2", "ERROR:" ], [ "Tis", "N0", "M1a", "S3", "ERROR:" ], [ "Tis", "N0", "M1a", "SX", "ERROR:" ], [ "Tis", "N1", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N1", "M1a", "S0", "ERROR:" ], [ "Tis", "N1", "M1a", "S1", "ERROR:" ], [ "Tis", "N1", "M1a", "S2", "ERROR:" ], [ "Tis", "N1", "M1a", "S3", "ERROR:" ], [ "Tis", "N1", "M1a", "SX", "ERROR:" ], [ "Tis", "N2", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N2", "M1a", "S0", "ERROR:" ], [ "Tis", "N2", "M1a", "S1", "ERROR:" ], [ "Tis", "N2", "M1a", "S2", "ERROR:" ], [ "Tis", "N2", "M1a", "S3", "ERROR:" ], [ "Tis", "N2", "M1a", "SX", "ERROR:" ], [ "Tis", "N3", "M1a", "ERROR", "ERROR:" ], [ "Tis", "N3", "M1a", "S0", "ERROR:" ], [ "Tis", "N3", "M1a", "S1", "ERROR:" ], [ "Tis", "N3", "M1a", "S2", "ERROR:" ], [ "Tis", "N3", "M1a", "S3", "ERROR:" ], [ "Tis", "N3", "M1a", "SX", "ERROR:" ], [ "Tis", "NX", "M1a", "ERROR", "ERROR:" ], [ "Tis", "NX", "M1a", "S0", "ERROR:" ], [ "Tis", "NX", "M1a", "S1", "ERROR:" ], [ "Tis", "NX", "M1a", "S2", "ERROR:" ], [ "Tis", "NX", "M1a", "S3", "ERROR:" ], [ "Tis", "NX", "M1a", "SX", "ERROR:" ], [ "T1", "N0", "M1a", "ERROR", "ERROR:" ], [ "T1", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N1", "M1a", "ERROR", "ERROR:" ], [ "T1", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N2", "M1a", "ERROR", "ERROR:" ], [ "T1", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N3", "M1a", "ERROR", "ERROR:" ], [ "T1", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "NX", "M1a", "ERROR", "ERROR:" ], [ "T1", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N0", "M1a", "ERROR", "ERROR:" ], [ "T2", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N1", "M1a", "ERROR", "ERROR:" ], [ "T2", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N2", "M1a", "ERROR", "ERROR:" ], [ "T2", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N3", "M1a", "ERROR", "ERROR:" ], [ "T2", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "NX", "M1a", "ERROR", "ERROR:" ], [ "T2", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N0", "M1a", "ERROR", "ERROR:" ], [ "T3", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N1", "M1a", "ERROR", "ERROR:" ], [ "T3", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N2", "M1a", "ERROR", "ERROR:" ], [ "T3", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N3", "M1a", "ERROR", "ERROR:" ], [ "T3", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "NX", "M1a", "ERROR", "ERROR:" ], [ "T3", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N0", "M1a", "ERROR", "ERROR:" ], [ "T4", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N1", "M1a", "ERROR", "ERROR:" ], [ "T4", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N2", "M1a", "ERROR", "ERROR:" ], [ "T4", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N3", "M1a", "ERROR", "ERROR:" ], [ "T4", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "NX", "M1a", "ERROR", "ERROR:" ], [ "T4", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N0", "M1a", "ERROR", "ERROR:" ], [ "TX", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N1", "M1a", "ERROR", "ERROR:" ], [ "TX", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N2", "M1a", "ERROR", "ERROR:" ], [ "TX", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N3", "M1a", "ERROR", "ERROR:" ], [ "TX", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "NX", "M1a", "ERROR", "ERROR:" ], [ "TX", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N0", "M1b", "ERROR", "ERROR:" ], [ "T0", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "ERROR", "ERROR:" ], [ "T0", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "ERROR", "ERROR:" ], [ "T0", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "ERROR", "ERROR:" ], [ "T0", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "ERROR", "ERROR:" ], [ "T0", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "Tis", "N0", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N0", "M1b", "S0", "ERROR:" ], [ "Tis", "N0", "M1b", "S1", "ERROR:" ], [ "Tis", "N0", "M1b", "S2", "ERROR:" ], [ "Tis", "N0", "M1b", "S3", "ERROR:" ], [ "Tis", "N0", "M1b", "SX", "ERROR:" ], [ "Tis", "N1", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N1", "M1b", "S0", "ERROR:" ], [ "Tis", "N1", "M1b", "S1", "ERROR:" ], [ "Tis", "N1", "M1b", "S2", "ERROR:" ], [ "Tis", "N1", "M1b", "S3", "ERROR:" ], [ "Tis", "N1", "M1b", "SX", "ERROR:" ], [ "Tis", "N2", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N2", "M1b", "S0", "ERROR:" ], [ "Tis", "N2", "M1b", "S1", "ERROR:" ], [ "Tis", "N2", "M1b", "S2", "ERROR:" ], [ "Tis", "N2", "M1b", "S3", "ERROR:" ], [ "Tis", "N2", "M1b", "SX", "ERROR:" ], [ "Tis", "N3", "M1b", "ERROR", "ERROR:" ], [ "Tis", "N3", "M1b", "S0", "ERROR:" ], [ "Tis", "N3", "M1b", "S1", "ERROR:" ], [ "Tis", "N3", "M1b", "S2", "ERROR:" ], [ "Tis", "N3", "M1b", "S3", "ERROR:" ], [ "Tis", "N3", "M1b", "SX", "ERROR:" ], [ "Tis", "NX", "M1b", "ERROR", "ERROR:" ], [ "Tis", "NX", "M1b", "S0", "ERROR:" ], [ "Tis", "NX", "M1b", "S1", "ERROR:" ], [ "Tis", "NX", "M1b", "S2", "ERROR:" ], [ "Tis", "NX", "M1b", "S3", "ERROR:" ], [ "Tis", "NX", "M1b", "SX", "ERROR:" ], [ "T1", "N0", "M1b", "ERROR", "ERROR:" ], [ "T1", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "ERROR", "ERROR:" ], [ "T1", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "ERROR", "ERROR:" ], [ "T1", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "ERROR", "ERROR:" ], [ "T1", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "ERROR", "ERROR:" ], [ "T1", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "ERROR", "ERROR:" ], [ "T2", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "ERROR", "ERROR:" ], [ "T2", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "ERROR", "ERROR:" ], [ "T2", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "ERROR", "ERROR:" ], [ "T2", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "ERROR", "ERROR:" ], [ "T2", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "ERROR", "ERROR:" ], [ "T3", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "ERROR", "ERROR:" ], [ "T3", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "ERROR", "ERROR:" ], [ "T3", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "ERROR", "ERROR:" ], [ "T3", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "ERROR", "ERROR:" ], [ "T3", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "ERROR", "ERROR:" ], [ "T4", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "ERROR", "ERROR:" ], [ "T4", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "ERROR", "ERROR:" ], [ "T4", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "ERROR", "ERROR:" ], [ "T4", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "ERROR", "ERROR:" ], [ "T4", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "ERROR", "ERROR:" ], [ "TX", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "ERROR", "ERROR:" ], [ "TX", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "ERROR", "ERROR:" ], [ "TX", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "ERROR", "ERROR:" ], [ "TX", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "ERROR", "ERROR:" ], [ "TX", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T0", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "Tis", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N0", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N1", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N2", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N3", "M1NOS", "SX", "ERROR:" ], [ "Tis", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S0", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S1", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S2", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S3", "ERROR:" ], [ "Tis", "NX", "M1NOS", "SX", "ERROR:" ], [ "T1", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T1", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T2", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T3", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "T4", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "ERROR", "ERROR:" ], [ "TX", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S3", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "SX", "VALUE:IIINOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqe.json
deleted file mode 100644
index c3bba3849..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_stage_uqe.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc7_stage_uqe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Stage",
- "title" : "AJCC TNM 7 Stage",
- "last_modified" : "2015-05-27T16:19:00.435Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "nodes_eval",
- "name" : "Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", " ", "ERROR:" ], [ "T0", "N0", "M0", "0,1,5,9", "ERROR:" ], [ "T0", "N0", "M0", "2,3,6,8", "ERROR:" ], [ "T0", "N1", "M0", " ", "VALUE:IIIB" ], [ "T0", "N1", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T0", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T0", "N1a", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T0", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T0", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T0", "N1b", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T0", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T0", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T0", "N1NOS", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T0", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T0", "N2", "M0", " ", "VALUE:IIIB" ], [ "T0", "N2", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T0", "N2", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T0", "NX", "M0", " ", "VALUE:UNK" ], [ "T0", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T0", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "Tis", "N0", "M0", " ", "VALUE:0" ], [ "Tis", "N0", "M0", "0,1,5,9", "VALUE:0" ], [ "Tis", "N0", "M0", "2,3,6,8", "VALUE:0" ], [ "Tis", "N1", "M0", " ", "ERROR:" ], [ "Tis", "N1", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M0", " ", "ERROR:" ], [ "Tis", "N1a", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M0", " ", "ERROR:" ], [ "Tis", "N1b", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M0", " ", "ERROR:" ], [ "Tis", "N1NOS", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M0", " ", "ERROR:" ], [ "Tis", "N2", "M0", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M0", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M0", " ", "VALUE:0" ], [ "Tis", "NX", "M0", "0,1,5,9", "VALUE:0" ], [ "Tis", "NX", "M0", "2,3,6,8", "VALUE:0" ], [ "T1", "N0", "M0", " ", "VALUE:INOS" ], [ "T1", "N0", "M0", "0,1,5,9", "VALUE:IB" ], [ "T1", "N0", "M0", "2,3,6,8", "VALUE:IA" ], [ "T1", "N1", "M0", " ", "VALUE:IIIB" ], [ "T1", "N1", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T1", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T1", "N1a", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T1", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T1", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T1", "N1b", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T1", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T1", "N1NOS", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T1", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T1", "N2", "M0", " ", "VALUE:IIIB" ], [ "T1", "N2", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T1", "N2", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T1", "NX", "M0", " ", "VALUE:UNK" ], [ "T1", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T1", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T2", "N0", "M0", " ", "VALUE:IINOS" ], [ "T2", "N0", "M0", "0,1,5,9", "VALUE:IIB" ], [ "T2", "N0", "M0", "2,3,6,8", "VALUE:IIA" ], [ "T2", "N1", "M0", " ", "VALUE:IIIB" ], [ "T2", "N1", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T2", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T2", "N1a", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T2", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T2", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T2", "N1b", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T2", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T2", "N1NOS", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T2", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T2", "N2", "M0", " ", "VALUE:IIIB" ], [ "T2", "N2", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T2", "N2", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T2", "NX", "M0", " ", "VALUE:UNK" ], [ "T2", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T2", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T3", "N0", "M0", " ", "VALUE:IINOS" ], [ "T3", "N0", "M0", "0,1,5,9", "VALUE:IIB" ], [ "T3", "N0", "M0", "2,3,6,8", "VALUE:IIA" ], [ "T3", "N1", "M0", " ", "VALUE:IIIB" ], [ "T3", "N1", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T3", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T3", "N1a", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T3", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T3", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T3", "N1b", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T3", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T3", "N1NOS", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T3", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T3", "N2", "M0", " ", "VALUE:IIIB" ], [ "T3", "N2", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T3", "N2", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T3", "NX", "M0", " ", "VALUE:UNK" ], [ "T3", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T3", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T4", "N0", "M0", " ", "VALUE:IIC" ], [ "T4", "N0", "M0", "0,1,5,9", "VALUE:IIC" ], [ "T4", "N0", "M0", "2,3,6,8", "VALUE:IIC" ], [ "T4", "N1", "M0", " ", "VALUE:IIIB" ], [ "T4", "N1", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T4", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4", "N1a", "M0", " ", "VALUE:IIIA" ], [ "T4", "N1a", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T4", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "T4", "N1b", "M0", " ", "VALUE:IIIB" ], [ "T4", "N1b", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T4", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "T4", "N1NOS", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "T4", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "T4", "N2", "M0", " ", "VALUE:IIIB" ], [ "T4", "N2", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "T4", "N2", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "T4", "NX", "M0", " ", "VALUE:UNK" ], [ "T4", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "T4", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N0", "M0", " ", "VALUE:UNK" ], [ "TX", "N0", "M0", "0,1,5,9", "VALUE:UNK" ], [ "TX", "N0", "M0", "2,3,6,8", "VALUE:UNK" ], [ "TX", "N1", "M0", " ", "VALUE:IIIB" ], [ "TX", "N1", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "TX", "N1", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N1a", "M0", " ", "VALUE:IIIA" ], [ "TX", "N1a", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "TX", "N1a", "M0", "2,3,6,8", "VALUE:IIIA" ], [ "TX", "N1b", "M0", " ", "VALUE:IIIB" ], [ "TX", "N1b", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "TX", "N1b", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "TX", "N1NOS", "M0", " ", "VALUE:IIINOS" ], [ "TX", "N1NOS", "M0", "0,1,5,9", "VALUE:IIINOS" ], [ "TX", "N1NOS", "M0", "2,3,6,8", "VALUE:IIINOS" ], [ "TX", "N2", "M0", " ", "VALUE:IIIB" ], [ "TX", "N2", "M0", "0,1,5,9", "VALUE:IIIB" ], [ "TX", "N2", "M0", "2,3,6,8", "VALUE:IIIB" ], [ "TX", "NX", "M0", " ", "VALUE:UNK" ], [ "TX", "NX", "M0", "0,1,5,9", "VALUE:UNK" ], [ "TX", "NX", "M0", "2,3,6,8", "VALUE:UNK" ], [ "T0", "N0", "M1a", " ", "VALUE:IV" ], [ "T0", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1a", " ", "VALUE:IV" ], [ "T0", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1a", " ", "VALUE:IV" ], [ "T0", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1a", " ", "VALUE:IV" ], [ "T0", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1a", " ", "VALUE:IV" ], [ "T0", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1a", " ", "VALUE:IV" ], [ "T0", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1a", " ", "ERROR:" ], [ "Tis", "N0", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1a", " ", "ERROR:" ], [ "Tis", "N1", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1a", " ", "ERROR:" ], [ "Tis", "N1a", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1a", " ", "ERROR:" ], [ "Tis", "N1b", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1a", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1a", " ", "ERROR:" ], [ "Tis", "N2", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1a", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1a", " ", "ERROR:" ], [ "Tis", "NX", "M1a", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1a", "2,3,6,8", "ERROR:" ], [ "T1", "N0", "M1a", " ", "VALUE:IV" ], [ "T1", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1", "M1a", " ", "VALUE:IV" ], [ "T1", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1a", "M1a", " ", "VALUE:IV" ], [ "T1", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1b", "M1a", " ", "VALUE:IV" ], [ "T1", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T1", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1", "N2", "M1a", " ", "VALUE:IV" ], [ "T1", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T1", "NX", "M1a", " ", "VALUE:IV" ], [ "T1", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T1", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2", "N0", "M1a", " ", "VALUE:IV" ], [ "T2", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1", "M1a", " ", "VALUE:IV" ], [ "T2", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1a", "M1a", " ", "VALUE:IV" ], [ "T2", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1b", "M1a", " ", "VALUE:IV" ], [ "T2", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T2", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2", "N2", "M1a", " ", "VALUE:IV" ], [ "T2", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T2", "NX", "M1a", " ", "VALUE:IV" ], [ "T2", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T2", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3", "N0", "M1a", " ", "VALUE:IV" ], [ "T3", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1", "M1a", " ", "VALUE:IV" ], [ "T3", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1a", "M1a", " ", "VALUE:IV" ], [ "T3", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1b", "M1a", " ", "VALUE:IV" ], [ "T3", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T3", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3", "N2", "M1a", " ", "VALUE:IV" ], [ "T3", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T3", "NX", "M1a", " ", "VALUE:IV" ], [ "T3", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T3", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4", "N0", "M1a", " ", "VALUE:IV" ], [ "T4", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1", "M1a", " ", "VALUE:IV" ], [ "T4", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1a", "M1a", " ", "VALUE:IV" ], [ "T4", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1b", "M1a", " ", "VALUE:IV" ], [ "T4", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "T4", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4", "N2", "M1a", " ", "VALUE:IV" ], [ "T4", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T4", "NX", "M1a", " ", "VALUE:IV" ], [ "T4", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "T4", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1a", " ", "VALUE:IV" ], [ "TX", "N0", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1a", " ", "VALUE:IV" ], [ "TX", "N1", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1a", " ", "VALUE:IV" ], [ "TX", "N1a", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1a", " ", "VALUE:IV" ], [ "TX", "N1b", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1a", " ", "VALUE:IV" ], [ "TX", "N2", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1a", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1a", " ", "VALUE:IV" ], [ "TX", "NX", "M1a", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1a", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1b", " ", "VALUE:IV" ], [ "T0", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1b", " ", "VALUE:IV" ], [ "T0", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1b", " ", "VALUE:IV" ], [ "T0", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1b", " ", "VALUE:IV" ], [ "T0", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1b", " ", "VALUE:IV" ], [ "T0", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1b", " ", "VALUE:IV" ], [ "T0", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1b", " ", "ERROR:" ], [ "Tis", "N0", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1b", " ", "ERROR:" ], [ "Tis", "N1", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1b", " ", "ERROR:" ], [ "Tis", "N1a", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1b", " ", "ERROR:" ], [ "Tis", "N1b", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1b", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1b", " ", "ERROR:" ], [ "Tis", "N2", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1b", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1b", " ", "ERROR:" ], [ "Tis", "NX", "M1b", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1b", "2,3,6,8", "ERROR:" ], [ "T1", "N0", "M1b", " ", "VALUE:IV" ], [ "T1", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1", "M1b", " ", "VALUE:IV" ], [ "T1", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1a", "M1b", " ", "VALUE:IV" ], [ "T1", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1b", "M1b", " ", "VALUE:IV" ], [ "T1", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T1", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1", "N2", "M1b", " ", "VALUE:IV" ], [ "T1", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T1", "NX", "M1b", " ", "VALUE:IV" ], [ "T1", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T1", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2", "N0", "M1b", " ", "VALUE:IV" ], [ "T2", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1", "M1b", " ", "VALUE:IV" ], [ "T2", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1a", "M1b", " ", "VALUE:IV" ], [ "T2", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1b", "M1b", " ", "VALUE:IV" ], [ "T2", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T2", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2", "N2", "M1b", " ", "VALUE:IV" ], [ "T2", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T2", "NX", "M1b", " ", "VALUE:IV" ], [ "T2", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T2", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3", "N0", "M1b", " ", "VALUE:IV" ], [ "T3", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1", "M1b", " ", "VALUE:IV" ], [ "T3", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1a", "M1b", " ", "VALUE:IV" ], [ "T3", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1b", "M1b", " ", "VALUE:IV" ], [ "T3", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T3", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3", "N2", "M1b", " ", "VALUE:IV" ], [ "T3", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T3", "NX", "M1b", " ", "VALUE:IV" ], [ "T3", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T3", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4", "N0", "M1b", " ", "VALUE:IV" ], [ "T4", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1", "M1b", " ", "VALUE:IV" ], [ "T4", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1a", "M1b", " ", "VALUE:IV" ], [ "T4", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1b", "M1b", " ", "VALUE:IV" ], [ "T4", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "T4", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4", "N2", "M1b", " ", "VALUE:IV" ], [ "T4", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T4", "NX", "M1b", " ", "VALUE:IV" ], [ "T4", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "T4", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1b", " ", "VALUE:IV" ], [ "TX", "N0", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1b", " ", "VALUE:IV" ], [ "TX", "N1", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1b", " ", "VALUE:IV" ], [ "TX", "N1a", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1b", " ", "VALUE:IV" ], [ "TX", "N1b", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1b", " ", "VALUE:IV" ], [ "TX", "N2", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1b", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1b", " ", "VALUE:IV" ], [ "TX", "NX", "M1b", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1b", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1c", " ", "VALUE:IV" ], [ "T0", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1c", " ", "VALUE:IV" ], [ "T0", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1c", " ", "VALUE:IV" ], [ "T0", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1c", " ", "VALUE:IV" ], [ "T0", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1c", " ", "VALUE:IV" ], [ "T0", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1c", " ", "VALUE:IV" ], [ "T0", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1c", " ", "ERROR:" ], [ "Tis", "N0", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1c", " ", "ERROR:" ], [ "Tis", "N1", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1c", " ", "ERROR:" ], [ "Tis", "N1a", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1c", " ", "ERROR:" ], [ "Tis", "N1b", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1c", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1c", " ", "ERROR:" ], [ "Tis", "N2", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1c", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1c", " ", "ERROR:" ], [ "Tis", "NX", "M1c", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1c", "2,3,6,8", "ERROR:" ], [ "T1", "N0", "M1c", " ", "VALUE:IV" ], [ "T1", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1", "M1c", " ", "VALUE:IV" ], [ "T1", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1a", "M1c", " ", "VALUE:IV" ], [ "T1", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1b", "M1c", " ", "VALUE:IV" ], [ "T1", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T1", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1", "N2", "M1c", " ", "VALUE:IV" ], [ "T1", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T1", "NX", "M1c", " ", "VALUE:IV" ], [ "T1", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T1", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2", "N0", "M1c", " ", "VALUE:IV" ], [ "T2", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1", "M1c", " ", "VALUE:IV" ], [ "T2", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1a", "M1c", " ", "VALUE:IV" ], [ "T2", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1b", "M1c", " ", "VALUE:IV" ], [ "T2", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T2", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2", "N2", "M1c", " ", "VALUE:IV" ], [ "T2", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T2", "NX", "M1c", " ", "VALUE:IV" ], [ "T2", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T2", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3", "N0", "M1c", " ", "VALUE:IV" ], [ "T3", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1", "M1c", " ", "VALUE:IV" ], [ "T3", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1a", "M1c", " ", "VALUE:IV" ], [ "T3", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1b", "M1c", " ", "VALUE:IV" ], [ "T3", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T3", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3", "N2", "M1c", " ", "VALUE:IV" ], [ "T3", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T3", "NX", "M1c", " ", "VALUE:IV" ], [ "T3", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T3", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4", "N0", "M1c", " ", "VALUE:IV" ], [ "T4", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1", "M1c", " ", "VALUE:IV" ], [ "T4", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1a", "M1c", " ", "VALUE:IV" ], [ "T4", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1b", "M1c", " ", "VALUE:IV" ], [ "T4", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "T4", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4", "N2", "M1c", " ", "VALUE:IV" ], [ "T4", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T4", "NX", "M1c", " ", "VALUE:IV" ], [ "T4", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "T4", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1c", " ", "VALUE:IV" ], [ "TX", "N0", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1c", " ", "VALUE:IV" ], [ "TX", "N1", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1c", " ", "VALUE:IV" ], [ "TX", "N1a", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1c", " ", "VALUE:IV" ], [ "TX", "N1b", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1c", " ", "VALUE:IV" ], [ "TX", "N2", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1c", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1c", " ", "VALUE:IV" ], [ "TX", "NX", "M1c", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1c", "2,3,6,8", "VALUE:IV" ], [ "T0", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T0", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T0", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T0", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "Tis", "N0", "M1NOS", " ", "ERROR:" ], [ "Tis", "N0", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N0", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1a", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1a", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1a", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1b", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1b", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1b", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", " ", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N1NOS", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "N2", "M1NOS", " ", "ERROR:" ], [ "Tis", "N2", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "N2", "M1NOS", "2,3,6,8", "ERROR:" ], [ "Tis", "NX", "M1NOS", " ", "ERROR:" ], [ "Tis", "NX", "M1NOS", "0,1,5,9", "ERROR:" ], [ "Tis", "NX", "M1NOS", "2,3,6,8", "ERROR:" ], [ "T1", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T1", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T1", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T1", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T1", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T1", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T1", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T1", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T1", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T1", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T2", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T2", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T2", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T2", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T2", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T2", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T2", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T2", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T2", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T3", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T3", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T3", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T3", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T3", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T3", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T3", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T3", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T3", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4", "N0", "M1NOS", " ", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1", "M1NOS", " ", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "T4", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "T4", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "T4", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4", "N2", "M1NOS", " ", "VALUE:IV" ], [ "T4", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "T4", "NX", "M1NOS", " ", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "T4", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N0", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N0", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1a", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1b", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N1NOS", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "N2", "M1NOS", " ", "VALUE:IV" ], [ "TX", "N2", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "N2", "M1NOS", "2,3,6,8", "VALUE:IV" ], [ "TX", "NX", "M1NOS", " ", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "0,1,5,9", "VALUE:IV" ], [ "TX", "NX", "M1NOS", "2,3,6,8", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_t_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_t_codes.json
deleted file mode 100644
index 2775e4511..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_t_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc7_t_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC 7 T Codes",
- "title" : "AJCC 7 T Allowable Codes",
- "last_modified" : "2015-05-27T16:19:00.607Z",
- "definition" : [ {
- "key" : "ajcc7_t",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_ajcc7_t",
- "name" : "AJCC7 Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "TX", "VALUE:999", "TX" ], [ "T0", "VALUE:000", "T0" ], [ "Ta", "VALUE:010", "Ta" ], [ "Tis", "VALUE:050", "Tis" ], [ "Tispu", "VALUE:060", "Tispu (Urethra only)" ], [ "Tispd", "VALUE:070", "Tispd (Urethra only)" ], [ "T1", "VALUE:100", "T1" ], [ "T1mi", "VALUE:110", "T1mi" ], [ "T1NOS", "VALUE:199", "T1 NOS" ], [ "T1NOS(s)", "VALUE:191", "T1 NOS(s)" ], [ "T1NOS(m)", "VALUE:192", "T1 NOS(m)" ], [ "T1a", "VALUE:120", "T1a" ], [ "T1a(s)", "VALUE:121", "T1a(s)" ], [ "T1a(m)", "VALUE:122", "T1a(m)" ], [ "T1a1", "VALUE:130", "T1a1" ], [ "T1a2", "VALUE:140", "T1a2" ], [ "T1b", "VALUE:150", "T1b" ], [ "T1b(s)", "VALUE:151", "T1b(s)" ], [ "T1b(m)", "VALUE:152", "T1b(m)" ], [ "T1b1", "VALUE:160", "T1b1" ], [ "T1b2", "VALUE:170", "T1b2" ], [ "T1c", "VALUE:180", "T1c" ], [ "T1d", "VALUE:181", "T1d" ], [ "T2", "VALUE:200", "T2" ], [ "T2(s)", "VALUE:201", "T2(s)" ], [ "T2(m)", "VALUE:202", "T2(m)" ], [ "T2NOS", "VALUE:299", "T2 NOS" ], [ "T2a", "VALUE:210", "T2a" ], [ "T2a1", "VALUE:211", "T2a1" ], [ "T2a2", "VALUE:212", "T2a2" ], [ "T2aNOS", "VALUE:213", "T2a NOS" ], [ "T2b", "VALUE:220", "T2b" ], [ "T2c", "VALUE:230", "T2c" ], [ "T2d", "VALUE:240", "T2d" ], [ "T3", "VALUE:300", "T3" ], [ "T3(s)", "VALUE:301", "T3(s)" ], [ "T3(m)", "VALUE:302", "T3(m)" ], [ "T3NOS", "VALUE:399", "T3 NOS" ], [ "T3a", "VALUE:310", "T3a" ], [ "T3b", "VALUE:320", "T3b" ], [ "T3c", "VALUE:330", "T3c" ], [ "T3d", "VALUE:340", "T3d" ], [ "T4", "VALUE:400", "T4" ], [ "T4NOS", "VALUE:499", "T4 NOS" ], [ "T4NOS(s)", "VALUE:491", "T4 NOS(s)" ], [ "T4NOS(m)", "VALUE:492", "T4 NOS(m)" ], [ "T4a", "VALUE:410", "T4a" ], [ "T4a(s)", "VALUE:411", "T4a(s)" ], [ "T4a(m)", "VALUE:412", "T4a(m)" ], [ "T4b", "VALUE:420", "T4b" ], [ "T4b(s)", "VALUE:421", "T4b(s)" ], [ "T4b(m)", "VALUE:422", "T4b(m)" ], [ "T4c", "VALUE:430", "T4c" ], [ "T4d", "VALUE:440", "T4d" ], [ "T4e", "VALUE:450", "T4e" ], [ "T1aNOS", "VALUE:800", "T1a NOS" ], [ "T1bNOS", "VALUE:810", "T1b NOS" ], [ "NA", "VALUE:888", "Not applicable" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_year_validation.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_year_validation.json
deleted file mode 100644
index a5415fdb8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc7_year_validation.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "ajcc7_year_validation",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC7 Year Validation",
- "title" : "AJCC7 Year Validation",
- "last_modified" : "2015-05-27T16:19:00.662Z",
- "definition" : [ {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "2010-{{ctx_year_current}}", "*" ], [ "", "020000-999999" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_descriptor_codes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_descriptor_codes.json
deleted file mode 100644
index b31702c3d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_descriptor_codes.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc_descriptor_codes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC Descriptor Codes",
- "title" : "AJCC Descriptor Allowable Codes",
- "last_modified" : "2015-05-27T16:19:01.882Z",
- "definition" : [ {
- "key" : "descriptor",
- "name" : "Display String",
- "type" : "INPUT"
- }, {
- "key" : "stor_descriptor",
- "name" : "Storage Code",
- "type" : "ENDPOINT"
- }, {
- "key" : "comments",
- "name" : "Comments",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "c", "VALUE:c", " " ], [ "p", "VALUE:p", " " ], [ "a", "VALUE:a", " " ], [ "yp", "VALUE:y", " " ], [ "", "VALUE:N", "Display String is blank" ], [ "*", "VALUE: ", "Error" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_mdescriptor_cleanup.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_mdescriptor_cleanup.json
deleted file mode 100644
index 2a2bbd6c2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_mdescriptor_cleanup.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc_mdescriptor_cleanup",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC M Descriptor Code Cleanup",
- "title" : "AJCC M Descriptor Code Cleanup",
- "last_modified" : "2015-05-27T16:19:01.937Z",
- "definition" : [ {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "mdescriptor",
- "name" : "M Descriptor",
- "type" : "INPUT"
- }, {
- "key" : "mdescriptor",
- "name" : "M Descriptor",
- "type" : "ENDPOINT"
- }, {
- "key" : "stor_mdescriptor",
- "name" : "Storage M Descriptor",
- "type" : "ENDPOINT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "*", "ERROR", "VALUE:", "VALUE:", "If M Descriptor is an error, both should be set to blank" ], [ "NA", "*", "VALUE:", "VALUE:N", "For M values of NA" ], [ "", "*", "VALUE:", "VALUE:", "For missing M values caused by an ERROR in mets" ], [ "*", "*", "MATCH", "MATCH", "For all other cases, leave codes as they are" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_ndescriptor_cleanup.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_ndescriptor_cleanup.json
deleted file mode 100644
index 72be22868..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_ndescriptor_cleanup.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc_ndescriptor_cleanup",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC N Descriptor Code Cleanup",
- "title" : "AJCC N Descriptor Code Cleanup",
- "last_modified" : "2015-05-27T16:19:01.987Z",
- "definition" : [ {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "ndescriptor",
- "name" : "N Descriptor",
- "type" : "INPUT"
- }, {
- "key" : "ndescriptor",
- "name" : "N Descriptor",
- "type" : "ENDPOINT"
- }, {
- "key" : "stor_ndescriptor",
- "name" : "Storage N Descriptor",
- "type" : "ENDPOINT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "*", "ERROR", "VALUE:", "VALUE:", "If N Descriptor is an error, both should be set to blank" ], [ "NA", "*", "VALUE:", "VALUE:N", "For N values of NA" ], [ "", "*", "VALUE:", "VALUE:", "For missing N values caused by an ERROR in nodes" ], [ "*", "*", "MATCH", "MATCH", "For all other cases, leave codes as they are" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_tdescriptor_cleanup.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_tdescriptor_cleanup.json
deleted file mode 100644
index 6b328691b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_tdescriptor_cleanup.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcc_tdescriptor_cleanup",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC T Descriptor Code Cleanup",
- "title" : "AJCC T Descriptor Code Cleanup",
- "last_modified" : "2015-05-27T16:19:02.043Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "tdescriptor",
- "name" : "T Descriptor",
- "type" : "INPUT"
- }, {
- "key" : "tdescriptor",
- "name" : "T Descriptor",
- "type" : "ENDPOINT"
- }, {
- "key" : "stor_tdescriptor",
- "name" : "Storage T Descriptor",
- "type" : "ENDPOINT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "*", "ERROR", "VALUE:", "VALUE:", "If T Descriptor is an error, both should be set to blank" ], [ "NA", "*", "VALUE:", "VALUE:N", "For T values of NA" ], [ "", "*", "VALUE:", "VALUE:", "For missing T values caused by an ERROR in extension" ], [ "*", "*", "MATCH", "MATCH", "For all other cases, leave codes as they are" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_tnm6_stage_csv1_xie.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_tnm6_stage_csv1_xie.json
deleted file mode 100644
index f8ef80438..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcc_tnm6_stage_csv1_xie.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "ajcc_tnm6_stage_csv1_xie",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC6 Stage",
- "title" : "AJCC TNM 6 Stage CSv1",
- "last_modified" : "2015-05-27T16:19:02.096Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "SSF2",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100-999", "988", "ERROR:" ], [ "100", "000,020", "VALUE:IA" ], [ "110", "000,020", "VALUE:IEA" ], [ "120", "000,020", "VALUE:ISA" ], [ "200", "000,020", "VALUE:IIA" ], [ "210", "000,020", "VALUE:IIEA" ], [ "220", "000,020", "VALUE:IISA" ], [ "230", "000,020", "VALUE:IIESA" ], [ "300", "000,020", "VALUE:IIIA" ], [ "310", "000,020", "VALUE:IIIEA" ], [ "320", "000,020", "VALUE:IIISA" ], [ "330", "000,020", "VALUE:IIIESA" ], [ "800", "000,020", "VALUE:IVA" ], [ "999", "000,020", "VALUE:UNK" ], [ "100", "010,030", "VALUE:IB" ], [ "110", "010,030", "VALUE:IEB" ], [ "120", "010,030", "VALUE:ISB" ], [ "200", "010,030", "VALUE:IIB" ], [ "210", "010,030", "VALUE:IIEB" ], [ "220", "010,030", "VALUE:IISB" ], [ "230", "010,030", "VALUE:IIESB" ], [ "300", "010,030", "VALUE:IIIB" ], [ "310", "010,030", "VALUE:IIIEB" ], [ "320", "010,030", "VALUE:IIISB" ], [ "330", "010,030", "VALUE:IIIESB" ], [ "800", "010,030", "VALUE:IVB" ], [ "999", "010,030", "VALUE:UNK" ], [ "100", "999", "VALUE:I" ], [ "110", "999", "VALUE:IE" ], [ "120", "999", "VALUE:IS" ], [ "200", "999", "VALUE:II" ], [ "210", "999", "VALUE:IIE" ], [ "220", "999", "VALUE:IIS" ], [ "230", "999", "VALUE:IIES" ], [ "300", "999", "VALUE:III" ], [ "310", "999", "VALUE:IIIE" ], [ "320", "999", "VALUE:IIIS" ], [ "330", "999", "VALUE:IIIES" ], [ "800", "999", "VALUE:IV" ], [ "999", "999", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_csv1_xpz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_csv1_xpz.json
deleted file mode 100644
index 74ee4d710..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_csv1_xpz.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "id" : "ajcctnm6_stage_csv1_xpz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM 6 Stage CSv1",
- "title" : "AJCC TNM 6 Stage",
- "notes" : "**Note**: For cases with a year of diagnosis less than 2010 and originally coded in CSv1, the AJCC 6th Edition stage is assigned based on the following table. For cases with a year of diagnosis greater than 2009 or originally coded in CSv2, AJCC 6th Edition stage is assigned as shown in the AJCC TNM 6 Stage table.",
- "last_modified" : "2015-05-27T16:19:00.759Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "s",
- "name" : "S",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "S0", "ERROR:" ], [ "T0", "N0", "M0", "S1", "VALUE:IS" ], [ "T0", "N0", "M0", "S2", "VALUE:IS" ], [ "T0", "N0", "M0", "S3", "VALUE:IS" ], [ "T0", "N0", "M0", "SX", "ERROR:" ], [ "T0", "N1", "M0", "S0", "VALUE:IIA" ], [ "T0", "N1", "M0", "S1", "VALUE:IIA" ], [ "T0", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T0", "N2", "M0", "S0", "VALUE:IIB" ], [ "T0", "N2", "M0", "S1", "VALUE:IIB" ], [ "T0", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T0", "N3", "M0", "S0", "VALUE:IIC" ], [ "T0", "N3", "M0", "S1", "VALUE:IIC" ], [ "T0", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T0", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T0", "NX", "M0", "S0", "VALUE:UNK" ], [ "T0", "NX", "M0", "S1", "VALUE:UNK" ], [ "T0", "NX", "M0", "S2", "VALUE:UNK" ], [ "T0", "NX", "M0", "S3", "VALUE:UNK" ], [ "T0", "NX", "M0", "SX", "VALUE:UNK" ], [ "T0", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N0", "M1NOS", "S3", "VALUE:IIIC" ], [ "T0", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N1", "M1NOS", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N2", "M1NOS", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "N3", "M1NOS", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T0", "NX", "M1NOS", "S3", "VALUE:IIIC" ], [ "T0", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T0", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T0", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T0", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T0", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T0", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T0", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T0", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T0", "N0", "MX", "S0", "VALUE:UNK" ], [ "T0", "N0", "MX", "S1", "VALUE:UNK" ], [ "T0", "N0", "MX", "S2", "VALUE:UNK" ], [ "T0", "N0", "MX", "S3", "VALUE:UNK" ], [ "T0", "N0", "MX", "SX", "VALUE:UNK" ], [ "T0", "N1", "MX", "S0", "VALUE:UNK" ], [ "T0", "N1", "MX", "S1", "VALUE:UNK" ], [ "T0", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T0", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T0", "N1", "MX", "SX", "VALUE:UNK" ], [ "T0", "N2", "MX", "S0", "VALUE:UNK" ], [ "T0", "N2", "MX", "S1", "VALUE:UNK" ], [ "T0", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T0", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T0", "N2", "MX", "SX", "VALUE:UNK" ], [ "T0", "N3", "MX", "S0", "VALUE:UNK" ], [ "T0", "N3", "MX", "S1", "VALUE:UNK" ], [ "T0", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T0", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T0", "N3", "MX", "SX", "VALUE:UNK" ], [ "T0", "NX", "MX", "S0", "VALUE:UNK" ], [ "T0", "NX", "MX", "S1", "VALUE:UNK" ], [ "T0", "NX", "MX", "S2", "VALUE:UNK" ], [ "T0", "NX", "MX", "S3", "VALUE:UNK" ], [ "T0", "NX", "MX", "SX", "VALUE:UNK" ], [ "Tis", "N0", "M0", "S0", "VALUE:0" ], [ "Tis", "N0", "M0", "S1", "ERROR:" ], [ "Tis", "N0", "M0", "S2", "ERROR:" ], [ "Tis", "N0", "M0", "S3", "ERROR:" ], [ "Tis", "N0", "M0", "SX", "VALUE:UNK" ], [ "Tis", "N1", "M0", "S0", "ERROR:" ], [ "Tis", "N1", "M0", "S1", "ERROR:" ], [ "Tis", "N1", "M0", "S2", "ERROR:" ], [ "Tis", "N1", "M0", "S3", "ERROR:" ], [ "Tis", "N1", "M0", "SX", "ERROR:" ], [ "Tis", "N2", "M0", "S0", "ERROR:" ], [ "Tis", "N2", "M0", "S1", "ERROR:" ], [ "Tis", "N2", "M0", "S2", "ERROR:" ], [ "Tis", "N2", "M0", "S3", "ERROR:" ], [ "Tis", "N2", "M0", "SX", "ERROR:" ], [ "Tis", "N3", "M0", "S0", "ERROR:" ], [ "Tis", "N3", "M0", "S1", "ERROR:" ], [ "Tis", "N3", "M0", "S2", "ERROR:" ], [ "Tis", "N3", "M0", "S3", "ERROR:" ], [ "Tis", "N3", "M0", "SX", "ERROR:" ], [ "Tis", "NX", "M0", "S0", "VALUE:0" ], [ "Tis", "NX", "M0", "S1", "ERROR:" ], [ "Tis", "NX", "M0", "S2", "ERROR:" ], [ "Tis", "NX", "M0", "S3", "ERROR:" ], [ "Tis", "NX", "M0", "SX", "VALUE:UNK" ], [ "Tis", "N0", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N0", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N0", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N1", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N1", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N2", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N2", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S0", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S1", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S2", "ERROR:" ], [ "Tis", "N3", "M1NOS", "S3", "ERROR:" ], [ "Tis", "N3", "M1NOS", "SX", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S0", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S1", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S2", "ERROR:" ], [ "Tis", "NX", "M1NOS", "S3", "ERROR:" ], [ "Tis", "NX", "M1NOS", "SX", "ERROR:" ], [ "Tis", "N0", "M1a", "S0", "ERROR:" ], [ "Tis", "N0", "M1a", "S1", "ERROR:" ], [ "Tis", "N0", "M1a", "S2", "ERROR:" ], [ "Tis", "N0", "M1a", "S3", "ERROR:" ], [ "Tis", "N0", "M1a", "SX", "ERROR:" ], [ "Tis", "N1", "M1a", "S0", "ERROR:" ], [ "Tis", "N1", "M1a", "S1", "ERROR:" ], [ "Tis", "N1", "M1a", "S2", "ERROR:" ], [ "Tis", "N1", "M1a", "S3", "ERROR:" ], [ "Tis", "N1", "M1a", "SX", "ERROR:" ], [ "Tis", "N2", "M1a", "S0", "ERROR:" ], [ "Tis", "N2", "M1a", "S1", "ERROR:" ], [ "Tis", "N2", "M1a", "S2", "ERROR:" ], [ "Tis", "N2", "M1a", "S3", "ERROR:" ], [ "Tis", "N2", "M1a", "SX", "ERROR:" ], [ "Tis", "N3", "M1a", "S0", "ERROR:" ], [ "Tis", "N3", "M1a", "S1", "ERROR:" ], [ "Tis", "N3", "M1a", "S2", "ERROR:" ], [ "Tis", "N3", "M1a", "S3", "ERROR:" ], [ "Tis", "N3", "M1a", "SX", "ERROR:" ], [ "Tis", "NX", "M1a", "S0", "ERROR:" ], [ "Tis", "NX", "M1a", "S1", "ERROR:" ], [ "Tis", "NX", "M1a", "S2", "ERROR:" ], [ "Tis", "NX", "M1a", "S3", "ERROR:" ], [ "Tis", "NX", "M1a", "SX", "ERROR:" ], [ "Tis", "N0", "M1b", "S0", "ERROR:" ], [ "Tis", "N0", "M1b", "S1", "ERROR:" ], [ "Tis", "N0", "M1b", "S2", "ERROR:" ], [ "Tis", "N0", "M1b", "S3", "ERROR:" ], [ "Tis", "N0", "M1b", "SX", "ERROR:" ], [ "Tis", "N1", "M1b", "S0", "ERROR:" ], [ "Tis", "N1", "M1b", "S1", "ERROR:" ], [ "Tis", "N1", "M1b", "S2", "ERROR:" ], [ "Tis", "N1", "M1b", "S3", "ERROR:" ], [ "Tis", "N1", "M1b", "SX", "ERROR:" ], [ "Tis", "N2", "M1b", "S0", "ERROR:" ], [ "Tis", "N2", "M1b", "S1", "ERROR:" ], [ "Tis", "N2", "M1b", "S2", "ERROR:" ], [ "Tis", "N2", "M1b", "S3", "ERROR:" ], [ "Tis", "N2", "M1b", "SX", "ERROR:" ], [ "Tis", "N3", "M1b", "S0", "ERROR:" ], [ "Tis", "N3", "M1b", "S1", "ERROR:" ], [ "Tis", "N3", "M1b", "S2", "ERROR:" ], [ "Tis", "N3", "M1b", "S3", "ERROR:" ], [ "Tis", "N3", "M1b", "SX", "ERROR:" ], [ "Tis", "NX", "M1b", "S0", "ERROR:" ], [ "Tis", "NX", "M1b", "S1", "ERROR:" ], [ "Tis", "NX", "M1b", "S2", "ERROR:" ], [ "Tis", "NX", "M1b", "S3", "ERROR:" ], [ "Tis", "NX", "M1b", "SX", "ERROR:" ], [ "Tis", "N0", "MX", "S0", "VALUE:0" ], [ "Tis", "N0", "MX", "S1", "ERROR:" ], [ "Tis", "N0", "MX", "S2", "ERROR:" ], [ "Tis", "N0", "MX", "S3", "ERROR:" ], [ "Tis", "N0", "MX", "SX", "ERROR:" ], [ "Tis", "N1", "MX", "S0", "ERROR:" ], [ "Tis", "N1", "MX", "S1", "ERROR:" ], [ "Tis", "N1", "MX", "S2", "ERROR:" ], [ "Tis", "N1", "MX", "S3", "ERROR:" ], [ "Tis", "N1", "MX", "SX", "ERROR:" ], [ "Tis", "N2", "MX", "S0", "ERROR:" ], [ "Tis", "N2", "MX", "S1", "ERROR:" ], [ "Tis", "N2", "MX", "S2", "ERROR:" ], [ "Tis", "N2", "MX", "S3", "ERROR:" ], [ "Tis", "N2", "MX", "SX", "ERROR:" ], [ "Tis", "N3", "MX", "S0", "ERROR:" ], [ "Tis", "N3", "MX", "S1", "ERROR:" ], [ "Tis", "N3", "MX", "S2", "ERROR:" ], [ "Tis", "N3", "MX", "S3", "ERROR:" ], [ "Tis", "N3", "MX", "SX", "ERROR:" ], [ "Tis", "NX", "MX", "S0", "VALUE:0" ], [ "Tis", "NX", "MX", "S1", "ERROR:" ], [ "Tis", "NX", "MX", "S2", "ERROR:" ], [ "Tis", "NX", "MX", "S3", "ERROR:" ], [ "Tis", "NX", "MX", "SX", "VALUE:UNK" ], [ "T1", "N0", "M0", "S0", "VALUE:IA" ], [ "T1", "N0", "M0", "S1", "VALUE:IS" ], [ "T1", "N0", "M0", "S2", "VALUE:IS" ], [ "T1", "N0", "M0", "S3", "VALUE:IS" ], [ "T1", "N0", "M0", "SX", "VALUE:INOS" ], [ "T1", "N1", "M0", "S0", "VALUE:IIA" ], [ "T1", "N1", "M0", "S1", "VALUE:IIA" ], [ "T1", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T1", "N2", "M0", "S0", "VALUE:IIB" ], [ "T1", "N2", "M0", "S1", "VALUE:IIB" ], [ "T1", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T1", "N3", "M0", "S0", "VALUE:IIC" ], [ "T1", "N3", "M0", "S1", "VALUE:IIC" ], [ "T1", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T1", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T1", "NX", "M0", "S0", "VALUE:UNK" ], [ "T1", "NX", "M0", "S1", "VALUE:UNK" ], [ "T1", "NX", "M0", "S2", "VALUE:UNK" ], [ "T1", "NX", "M0", "S3", "VALUE:UNK" ], [ "T1", "NX", "M0", "SX", "VALUE:UNK" ], [ "T1", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N0", "M1NOS", "S3", "VALUE:IIIC" ], [ "T1", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N1", "M1NOS", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N2", "M1NOS", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "N3", "M1NOS", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T1", "NX", "M1NOS", "S3", "VALUE:IIIC" ], [ "T1", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T1", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T1", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T1", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T1", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T1", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T1", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T1", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T1", "N0", "MX", "S0", "VALUE:UNK" ], [ "T1", "N0", "MX", "S1", "VALUE:UNK" ], [ "T1", "N0", "MX", "S2", "VALUE:UNK" ], [ "T1", "N0", "MX", "S3", "VALUE:UNK" ], [ "T1", "N0", "MX", "SX", "VALUE:UNK" ], [ "T1", "N1", "MX", "S0", "VALUE:UNK" ], [ "T1", "N1", "MX", "S1", "VALUE:UNK" ], [ "T1", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T1", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T1", "N1", "MX", "SX", "VALUE:UNK" ], [ "T1", "N2", "MX", "S0", "VALUE:UNK" ], [ "T1", "N2", "MX", "S1", "VALUE:UNK" ], [ "T1", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T1", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T1", "N2", "MX", "SX", "VALUE:UNK" ], [ "T1", "N3", "MX", "S0", "VALUE:UNK" ], [ "T1", "N3", "MX", "S1", "VALUE:UNK" ], [ "T1", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T1", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T1", "N3", "MX", "SX", "VALUE:UNK" ], [ "T1", "NX", "MX", "S0", "VALUE:UNK" ], [ "T1", "NX", "MX", "S1", "VALUE:UNK" ], [ "T1", "NX", "MX", "S2", "VALUE:IIINOS" ], [ "T1", "NX", "MX", "S3", "VALUE:UNK" ], [ "T1", "NX", "MX", "SX", "VALUE:UNK" ], [ "T2", "N0", "M0", "S0", "VALUE:IB" ], [ "T2", "N0", "M0", "S1", "VALUE:IS" ], [ "T2", "N0", "M0", "S2", "VALUE:IS" ], [ "T2", "N0", "M0", "S3", "VALUE:IS" ], [ "T2", "N0", "M0", "SX", "VALUE:INOS" ], [ "T2", "N1", "M0", "S0", "VALUE:IIA" ], [ "T2", "N1", "M0", "S1", "VALUE:IIA" ], [ "T2", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T2", "N2", "M0", "S0", "VALUE:IIB" ], [ "T2", "N2", "M0", "S1", "VALUE:IIB" ], [ "T2", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T2", "N3", "M0", "S0", "VALUE:IIC" ], [ "T2", "N3", "M0", "S1", "VALUE:IIC" ], [ "T2", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T2", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T2", "NX", "M0", "S0", "VALUE:UNK" ], [ "T2", "NX", "M0", "S1", "VALUE:UNK" ], [ "T2", "NX", "M0", "S2", "VALUE:UNK" ], [ "T2", "NX", "M0", "S3", "VALUE:UNK" ], [ "T2", "NX", "M0", "SX", "VALUE:UNK" ], [ "T2", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N0", "M1NOS", "S3", "VALUE:IIIC" ], [ "T2", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N1", "M1NOS", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N2", "M1NOS", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "N3", "M1NOS", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T2", "NX", "M1NOS", "S3", "VALUE:IIIC" ], [ "T2", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T2", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T2", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T2", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T2", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T2", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T2", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T2", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T2", "N0", "MX", "S0", "VALUE:UNK" ], [ "T2", "N0", "MX", "S1", "VALUE:UNK" ], [ "T2", "N0", "MX", "S2", "VALUE:UNK" ], [ "T2", "N0", "MX", "S3", "VALUE:UNK" ], [ "T2", "N0", "MX", "SX", "VALUE:UNK" ], [ "T2", "N1", "MX", "S0", "VALUE:UNK" ], [ "T2", "N1", "MX", "S1", "VALUE:UNK" ], [ "T2", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T2", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T2", "N1", "MX", "SX", "VALUE:UNK" ], [ "T2", "N2", "MX", "S0", "VALUE:UNK" ], [ "T2", "N2", "MX", "S1", "VALUE:UNK" ], [ "T2", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T2", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T2", "N2", "MX", "SX", "VALUE:UNK" ], [ "T2", "N3", "MX", "S0", "VALUE:UNK" ], [ "T2", "N3", "MX", "S1", "VALUE:UNK" ], [ "T2", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T2", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T2", "N3", "MX", "SX", "VALUE:UNK" ], [ "T2", "NX", "MX", "S0", "VALUE:UNK" ], [ "T2", "NX", "MX", "S1", "VALUE:UNK" ], [ "T2", "NX", "MX", "S2", "VALUE:IIINOS" ], [ "T2", "NX", "MX", "S3", "VALUE:UNK" ], [ "T2", "NX", "MX", "SX", "VALUE:UNK" ], [ "T3", "N0", "M0", "S0", "VALUE:IB" ], [ "T3", "N0", "M0", "S1", "VALUE:IS" ], [ "T3", "N0", "M0", "S2", "VALUE:IS" ], [ "T3", "N0", "M0", "S3", "VALUE:IS" ], [ "T3", "N0", "M0", "SX", "VALUE:INOS" ], [ "T3", "N1", "M0", "S0", "VALUE:IIA" ], [ "T3", "N1", "M0", "S1", "VALUE:IIA" ], [ "T3", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T3", "N2", "M0", "S0", "VALUE:IIB" ], [ "T3", "N2", "M0", "S1", "VALUE:IIB" ], [ "T3", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T3", "N3", "M0", "S0", "VALUE:IIC" ], [ "T3", "N3", "M0", "S1", "VALUE:IIC" ], [ "T3", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T3", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T3", "NX", "M0", "S0", "VALUE:UNK" ], [ "T3", "NX", "M0", "S1", "VALUE:UNK" ], [ "T3", "NX", "M0", "S2", "VALUE:UNK" ], [ "T3", "NX", "M0", "S3", "VALUE:UNK" ], [ "T3", "NX", "M0", "SX", "VALUE:UNK" ], [ "T3", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N0", "M1NOS", "S3", "VALUE:IIIC" ], [ "T3", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N1", "M1NOS", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N2", "M1NOS", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "N3", "M1NOS", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T3", "NX", "M1NOS", "S3", "VALUE:IIIC" ], [ "T3", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T3", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T3", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T3", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T3", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T3", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T3", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T3", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T3", "N0", "MX", "S0", "VALUE:UNK" ], [ "T3", "N0", "MX", "S1", "VALUE:UNK" ], [ "T3", "N0", "MX", "S2", "VALUE:UNK" ], [ "T3", "N0", "MX", "S3", "VALUE:UNK" ], [ "T3", "N0", "MX", "SX", "VALUE:UNK" ], [ "T3", "N1", "MX", "S0", "VALUE:UNK" ], [ "T3", "N1", "MX", "S1", "VALUE:UNK" ], [ "T3", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T3", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T3", "N1", "MX", "SX", "VALUE:UNK" ], [ "T3", "N2", "MX", "S0", "VALUE:UNK" ], [ "T3", "N2", "MX", "S1", "VALUE:UNK" ], [ "T3", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T3", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T3", "N2", "MX", "SX", "VALUE:UNK" ], [ "T3", "N3", "MX", "S0", "VALUE:UNK" ], [ "T3", "N3", "MX", "S1", "VALUE:UNK" ], [ "T3", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T3", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T3", "N3", "MX", "SX", "VALUE:UNK" ], [ "T3", "NX", "MX", "S0", "VALUE:UNK" ], [ "T3", "NX", "MX", "S1", "VALUE:UNK" ], [ "T3", "NX", "MX", "S2", "VALUE:UNK" ], [ "T3", "NX", "MX", "S3", "VALUE:UNK" ], [ "T3", "NX", "MX", "SX", "VALUE:UNK" ], [ "T4", "N0", "M0", "S0", "VALUE:IB" ], [ "T4", "N0", "M0", "S1", "VALUE:IS" ], [ "T4", "N0", "M0", "S2", "VALUE:IS" ], [ "T4", "N0", "M0", "S3", "VALUE:IS" ], [ "T4", "N0", "M0", "SX", "VALUE:INOS" ], [ "T4", "N1", "M0", "S0", "VALUE:IIA" ], [ "T4", "N1", "M0", "S1", "VALUE:IIA" ], [ "T4", "N1", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N1", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M0", "SX", "VALUE:IINOS" ], [ "T4", "N2", "M0", "S0", "VALUE:IIB" ], [ "T4", "N2", "M0", "S1", "VALUE:IIB" ], [ "T4", "N2", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N2", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M0", "SX", "VALUE:IINOS" ], [ "T4", "N3", "M0", "S0", "VALUE:IIC" ], [ "T4", "N3", "M0", "S1", "VALUE:IIC" ], [ "T4", "N3", "M0", "S2", "VALUE:IIIB" ], [ "T4", "N3", "M0", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M0", "SX", "VALUE:IINOS" ], [ "T4", "NX", "M0", "S0", "VALUE:UNK" ], [ "T4", "NX", "M0", "S1", "VALUE:UNK" ], [ "T4", "NX", "M0", "S2", "VALUE:UNK" ], [ "T4", "NX", "M0", "S3", "VALUE:UNK" ], [ "T4", "NX", "M0", "SX", "VALUE:UNK" ], [ "T4", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N0", "M1NOS", "S3", "VALUE:IIIC" ], [ "T4", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N1", "M1NOS", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N2", "M1NOS", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "N3", "M1NOS", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "T4", "NX", "M1NOS", "S3", "VALUE:IIIC" ], [ "T4", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "T4", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "T4", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "T4", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "T4", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "T4", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "T4", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "T4", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "T4", "N0", "MX", "S0", "VALUE:UNK" ], [ "T4", "N0", "MX", "S1", "VALUE:UNK" ], [ "T4", "N0", "MX", "S2", "VALUE:UNK" ], [ "T4", "N0", "MX", "S3", "VALUE:UNK" ], [ "T4", "N0", "MX", "SX", "VALUE:UNK" ], [ "T4", "N1", "MX", "S0", "VALUE:UNK" ], [ "T4", "N1", "MX", "S1", "VALUE:UNK" ], [ "T4", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "T4", "N1", "MX", "S3", "VALUE:IIIC" ], [ "T4", "N1", "MX", "SX", "VALUE:UNK" ], [ "T4", "N2", "MX", "S0", "VALUE:UNK" ], [ "T4", "N2", "MX", "S1", "VALUE:UNK" ], [ "T4", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "T4", "N2", "MX", "S3", "VALUE:IIIC" ], [ "T4", "N2", "MX", "SX", "VALUE:UNK" ], [ "T4", "N3", "MX", "S0", "VALUE:UNK" ], [ "T4", "N3", "MX", "S1", "VALUE:UNK" ], [ "T4", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "T4", "N3", "MX", "S3", "VALUE:IIIC" ], [ "T4", "N3", "MX", "SX", "VALUE:UNK" ], [ "T4", "NX", "MX", "S0", "VALUE:UNK" ], [ "T4", "NX", "MX", "S1", "VALUE:UNK" ], [ "T4", "NX", "MX", "S2", "VALUE:UNK" ], [ "T4", "NX", "MX", "S3", "VALUE:UNK" ], [ "T4", "NX", "MX", "SX", "VALUE:UNK" ], [ "TX", "N0", "M0", "S0", "VALUE:UNK" ], [ "TX", "N0", "M0", "S1", "VALUE:IS" ], [ "TX", "N0", "M0", "S2", "VALUE:IS" ], [ "TX", "N0", "M0", "S3", "VALUE:IS" ], [ "TX", "N0", "M0", "SX", "VALUE:UNK" ], [ "TX", "N1", "M0", "S0", "VALUE:IIA" ], [ "TX", "N1", "M0", "S1", "VALUE:IIA" ], [ "TX", "N1", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N1", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M0", "SX", "VALUE:IINOS" ], [ "TX", "N2", "M0", "S0", "VALUE:IIB" ], [ "TX", "N2", "M0", "S1", "VALUE:IIB" ], [ "TX", "N2", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N2", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M0", "SX", "VALUE:IINOS" ], [ "TX", "N3", "M0", "S0", "VALUE:IIC" ], [ "TX", "N3", "M0", "S1", "VALUE:IIC" ], [ "TX", "N3", "M0", "S2", "VALUE:IIIB" ], [ "TX", "N3", "M0", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M0", "SX", "VALUE:IINOS" ], [ "TX", "NX", "M0", "S0", "VALUE:UNK" ], [ "TX", "NX", "M0", "S1", "VALUE:UNK" ], [ "TX", "NX", "M0", "S2", "VALUE:UNK" ], [ "TX", "NX", "M0", "S3", "VALUE:UNK" ], [ "TX", "NX", "M0", "SX", "VALUE:UNK" ], [ "TX", "N0", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N0", "M1NOS", "S3", "VALUE:IIIC" ], [ "TX", "N0", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N1", "M1NOS", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N2", "M1NOS", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "N3", "M1NOS", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S0", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S1", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S2", "VALUE:IIINOS" ], [ "TX", "NX", "M1NOS", "S3", "VALUE:IIIC" ], [ "TX", "NX", "M1NOS", "SX", "VALUE:IIINOS" ], [ "TX", "N0", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N0", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N0", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N0", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N0", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N1", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N1", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N1", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N1", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N2", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N2", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N2", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N2", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N3", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "N3", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "N3", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "N3", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "NX", "M1a", "S0", "VALUE:IIIA" ], [ "TX", "NX", "M1a", "S1", "VALUE:IIIA" ], [ "TX", "NX", "M1a", "S2", "VALUE:IIIB" ], [ "TX", "NX", "M1a", "S3", "VALUE:IIIC" ], [ "TX", "NX", "M1a", "SX", "VALUE:IIINOS" ], [ "TX", "N0", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N0", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N1", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N2", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "N3", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S0", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S1", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S2", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "S3", "VALUE:IIIC" ], [ "TX", "NX", "M1b", "SX", "VALUE:IIIC" ], [ "TX", "N0", "MX", "S0", "VALUE:UNK" ], [ "TX", "N0", "MX", "S1", "VALUE:UNK" ], [ "TX", "N0", "MX", "S2", "VALUE:UNK" ], [ "TX", "N0", "MX", "S3", "VALUE:UNK" ], [ "TX", "N0", "MX", "SX", "VALUE:UNK" ], [ "TX", "N1", "MX", "S0", "VALUE:UNK" ], [ "TX", "N1", "MX", "S1", "VALUE:UNK" ], [ "TX", "N1", "MX", "S2", "VALUE:IIINOS" ], [ "TX", "N1", "MX", "S3", "VALUE:IIIC" ], [ "TX", "N1", "MX", "SX", "VALUE:UNK" ], [ "TX", "N2", "MX", "S0", "VALUE:UNK" ], [ "TX", "N2", "MX", "S1", "VALUE:UNK" ], [ "TX", "N2", "MX", "S2", "VALUE:IIINOS" ], [ "TX", "N2", "MX", "S3", "VALUE:IIIC" ], [ "TX", "N2", "MX", "SX", "VALUE:UNK" ], [ "TX", "N3", "MX", "S0", "VALUE:UNK" ], [ "TX", "N3", "MX", "S1", "VALUE:UNK" ], [ "TX", "N3", "MX", "S2", "VALUE:IIINOS" ], [ "TX", "N3", "MX", "S3", "VALUE:IIIC" ], [ "TX", "N3", "MX", "SX", "VALUE:UNK" ], [ "TX", "NX", "MX", "S0", "VALUE:UNK" ], [ "TX", "NX", "MX", "S1", "VALUE:UNK" ], [ "TX", "NX", "MX", "S2", "VALUE:UNK" ], [ "TX", "NX", "MX", "S3", "VALUE:UNK" ], [ "TX", "NX", "MX", "SX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_anaplastic_xcg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_anaplastic_xcg.json
deleted file mode 100644
index 979f0967a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_anaplastic_xcg.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcctnm6_stage_thyroid_anaplastic_xcg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM 6 Stage Thyroid Anaplastic",
- "title" : "AJCC TNM 6 Stage-Thyroid: Anaplastic",
- "last_modified" : "2015-05-27T16:19:00.923Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_stage",
- "name" : "Stage Table 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N0", "MX", "VALUE:IVNOS" ], [ "T4a", "N1a", "M0", "VALUE:IVA" ], [ "T4a", "N1a", "M1", "VALUE:IVC" ], [ "T4a", "N1a", "MX", "VALUE:IVNOS" ], [ "T4a", "N1b", "M0", "VALUE:IVA" ], [ "T4a", "N1b", "M1", "VALUE:IVC" ], [ "T4a", "N1b", "MX", "VALUE:IVNOS" ], [ "T4a", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4a", "NX", "M0", "VALUE:IVA" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4a", "NX", "MX", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N0", "MX", "VALUE:IVNOS" ], [ "T4b", "N1a", "M0", "VALUE:IVB" ], [ "T4b", "N1a", "M1", "VALUE:IVC" ], [ "T4b", "N1a", "MX", "VALUE:IVNOS" ], [ "T4b", "N1b", "M0", "VALUE:IVB" ], [ "T4b", "N1b", "M1", "VALUE:IVC" ], [ "T4b", "N1b", "MX", "VALUE:IVNOS" ], [ "T4b", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4b", "NX", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS", "N1a", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS", "N1b", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "MX", "VALUE:IVNOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_medullary_xcf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_medullary_xcf.json
deleted file mode 100644
index 12dda7072..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_medullary_xcf.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcctnm6_stage_thyroid_medullary_xcf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM 6 Stage Thyroid Medullary",
- "title" : "AJCC TNM 6 Stage-Thyroid: Medullary",
- "last_modified" : "2015-05-27T16:19:00.979Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_stage",
- "name" : "Stage Table 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1a", "M0", "VALUE:III" ], [ "T0", "N1a", "M1", "VALUE:IVC" ], [ "T0", "N1a", "MX", "VALUE:UNK" ], [ "T0", "N1b", "M0", "VALUE:IVA" ], [ "T0", "N1b", "M1", "VALUE:IVC" ], [ "T0", "N1b", "MX", "VALUE:IVNOS" ], [ "T0", "N1NOS", "M0", "VALUE:UNK" ], [ "T0", "N1NOS", "M1", "VALUE:IVC" ], [ "T0", "N1NOS", "MX", "VALUE:UNK" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1a", "M0", "VALUE:III" ], [ "T1", "N1a", "M1", "VALUE:IVC" ], [ "T1", "N1a", "MX", "VALUE:UNK" ], [ "T1", "N1b", "M0", "VALUE:IVA" ], [ "T1", "N1b", "M1", "VALUE:IVC" ], [ "T1", "N1b", "MX", "VALUE:IVNOS" ], [ "T1", "N1NOS", "M0", "VALUE:UNK" ], [ "T1", "N1NOS", "M1", "VALUE:IVC" ], [ "T1", "N1NOS", "MX", "VALUE:UNK" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1a", "M0", "VALUE:III" ], [ "T2", "N1a", "M1", "VALUE:IVC" ], [ "T2", "N1a", "MX", "VALUE:UNK" ], [ "T2", "N1b", "M0", "VALUE:IVA" ], [ "T2", "N1b", "M1", "VALUE:IVC" ], [ "T2", "N1b", "MX", "VALUE:IVNOS" ], [ "T2", "N1NOS", "M0", "VALUE:UNK" ], [ "T2", "N1NOS", "M1", "VALUE:IVC" ], [ "T2", "N1NOS", "MX", "VALUE:UNK" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1a", "M0", "VALUE:III" ], [ "T3", "N1a", "M1", "VALUE:IVC" ], [ "T3", "N1a", "MX", "VALUE:UNK" ], [ "T3", "N1b", "M0", "VALUE:IVA" ], [ "T3", "N1b", "M1", "VALUE:IVC" ], [ "T3", "N1b", "MX", "VALUE:IVB" ], [ "T3", "N1NOS", "M0", "VALUE:UNK" ], [ "T3", "N1NOS", "M1", "VALUE:IVC" ], [ "T3", "N1NOS", "MX", "VALUE:UNK" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N0", "MX", "VALUE:IVNOS" ], [ "T4a", "N1a", "M0", "VALUE:IVA" ], [ "T4a", "N1a", "M1", "VALUE:IVC" ], [ "T4a", "N1a", "MX", "VALUE:IVNOS" ], [ "T4a", "N1b", "M0", "VALUE:IVA" ], [ "T4a", "N1b", "M1", "VALUE:IVC" ], [ "T4a", "N1b", "MX", "VALUE:IVNOS" ], [ "T4a", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4a", "NX", "M0", "VALUE:IVA" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4a", "NX", "MX", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N0", "MX", "VALUE:IVNOS" ], [ "T4b", "N1a", "M0", "VALUE:IVB" ], [ "T4b", "N1a", "M1", "VALUE:IVC" ], [ "T4b", "N1a", "MX", "VALUE:IVNOS" ], [ "T4b", "N1b", "M0", "VALUE:IVB" ], [ "T4b", "N1b", "M1", "VALUE:IVC" ], [ "T4b", "N1b", "MX", "VALUE:IVNOS" ], [ "T4b", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4b", "NX", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS", "N1a", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS", "N1b", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1a", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M1", "VALUE:IVC" ], [ "TX", "N1a", "MX", "VALUE:UNK" ], [ "TX", "N1b", "M0", "VALUE:IVNOS" ], [ "TX", "N1b", "M1", "VALUE:IVC" ], [ "TX", "N1b", "MX", "VALUE:IVNOS" ], [ "TX", "N1NOS", "M0", "VALUE:UNK" ], [ "TX", "N1NOS", "M1", "VALUE:IVC" ], [ "TX", "N1NOS", "MX", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "TX", "NX", "M1", "VALUE:IVC" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_papillaryand_follicular_age45and_older_xco.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_papillaryand_follicular_age45and_older_xco.json
deleted file mode 100644
index 1780d7014..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6_stage_thyroid_papillaryand_follicular_age45and_older_xco.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcctnm6_stage_thyroid_papillaryand_follicular_age45and_older_xco",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM 6 Stage Thyroid Papillary and Follicular Age45 and Older",
- "title" : "AJCC TNM 6 Stage-Thyroid: Papillary and Follicular Age 45 and Older",
- "last_modified" : "2015-05-27T16:19:01.060Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_stage",
- "name" : "Stage Table 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1a", "M0", "VALUE:III" ], [ "T0", "N1a", "M1", "VALUE:IVC" ], [ "T0", "N1a", "MX", "VALUE:UNK" ], [ "T0", "N1b", "M0", "VALUE:IVA" ], [ "T0", "N1b", "M1", "VALUE:IVC" ], [ "T0", "N1b", "MX", "VALUE:IVNOS" ], [ "T0", "N1NOS", "M0", "VALUE:UNK" ], [ "T0", "N1NOS", "M1", "VALUE:IVC" ], [ "T0", "N1NOS", "MX", "VALUE:UNK" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "M0", "VALUE:I" ], [ "T1", "N0", "M1", "VALUE:IVC" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1a", "M0", "VALUE:III" ], [ "T1", "N1a", "M1", "VALUE:IVC" ], [ "T1", "N1a", "MX", "VALUE:UNK" ], [ "T1", "N1b", "M0", "VALUE:IVA" ], [ "T1", "N1b", "M1", "VALUE:IVC" ], [ "T1", "N1b", "MX", "VALUE:IVNOS" ], [ "T1", "N1NOS", "M0", "VALUE:UNK" ], [ "T1", "N1NOS", "M1", "VALUE:IVC" ], [ "T1", "N1NOS", "MX", "VALUE:UNK" ], [ "T1", "NX", "M0", "VALUE:UNK" ], [ "T1", "NX", "M1", "VALUE:IVC" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1a", "M0", "VALUE:III" ], [ "T2", "N1a", "M1", "VALUE:IVC" ], [ "T2", "N1a", "MX", "VALUE:UNK" ], [ "T2", "N1b", "M0", "VALUE:IVA" ], [ "T2", "N1b", "M1", "VALUE:IVC" ], [ "T2", "N1b", "MX", "VALUE:IVNOS" ], [ "T2", "N1NOS", "M0", "VALUE:UNK" ], [ "T2", "N1NOS", "M1", "VALUE:IVC" ], [ "T2", "N1NOS", "MX", "VALUE:UNK" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1a", "M0", "VALUE:III" ], [ "T3", "N1a", "M1", "VALUE:IVC" ], [ "T3", "N1a", "MX", "VALUE:UNK" ], [ "T3", "N1b", "M0", "VALUE:IVA" ], [ "T3", "N1b", "M1", "VALUE:IVC" ], [ "T3", "N1b", "MX", "VALUE:IVNOS" ], [ "T3", "N1NOS", "M0", "VALUE:UNK" ], [ "T3", "N1NOS", "M1", "VALUE:IVC" ], [ "T3", "N1NOS", "MX", "VALUE:UNK" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N0", "MX", "VALUE:IVNOS" ], [ "T4a", "N1a", "M0", "VALUE:IVA" ], [ "T4a", "N1a", "M1", "VALUE:IVC" ], [ "T4a", "N1a", "MX", "VALUE:IVNOS" ], [ "T4a", "N1b", "M0", "VALUE:IVA" ], [ "T4a", "N1b", "M1", "VALUE:IVC" ], [ "T4a", "N1b", "MX", "VALUE:IVNOS" ], [ "T4a", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4a", "NX", "M0", "VALUE:IVA" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4a", "NX", "MX", "VALUE:IVNOS" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N0", "MX", "VALUE:IVNOS" ], [ "T4b", "N1a", "M0", "VALUE:IVB" ], [ "T4b", "N1a", "M1", "VALUE:IVC" ], [ "T4b", "N1a", "MX", "VALUE:IVNOS" ], [ "T4b", "N1b", "M0", "VALUE:IVB" ], [ "T4b", "N1b", "M1", "VALUE:IVC" ], [ "T4b", "N1b", "MX", "VALUE:IVNOS" ], [ "T4b", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4b", "NX", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS", "N1a", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS", "N1b", "MX", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "N1NOS", "MX", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "MX", "VALUE:IVNOS" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1a", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M1", "VALUE:IVC" ], [ "TX", "N1a", "MX", "VALUE:UNK" ], [ "TX", "N1b", "M0", "VALUE:IVNOS" ], [ "TX", "N1b", "M1", "VALUE:IVC" ], [ "TX", "N1b", "MX", "VALUE:IVNOS" ], [ "TX", "N1NOS", "M0", "VALUE:UNK" ], [ "TX", "N1NOS", "M1", "VALUE:IVC" ], [ "TX", "N1NOS", "MX", "VALUE:UNK" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "TX", "NX", "M1", "VALUE:IVC" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6and7_stage_ewing_xho.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6and7_stage_ewing_xho.json
deleted file mode 100644
index d48b100c0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm6and7_stage_ewing_xho.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcctnm6and7_stage_ewing_xho",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM 6 and 7 Stage Ewing",
- "title" : "AJCC TNM 6 and 7 Stage Ewing",
- "last_modified" : "2015-05-27T16:19:00.709Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N1", "M0", "VALUE:IVB" ], [ "T0", "NX", "M0", "ERROR:" ], [ "T1", "N0", "M0", "VALUE:IIA" ], [ "T1", "N1", "M0", "VALUE:IVB" ], [ "T1", "NX", "M0", "VALUE:IIA" ], [ "T2", "N0", "M0", "VALUE:IIB" ], [ "T2", "N1", "M0", "VALUE:IVB" ], [ "T2", "NX", "M0", "VALUE:IIB" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N1", "M0", "VALUE:IVB" ], [ "T3", "NX", "M0", "VALUE:III" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N1", "M0", "VALUE:IVB" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "T0", "N0", "M1a", "VALUE:IVA" ], [ "T0", "N1", "M1a", "VALUE:IVB" ], [ "T0", "NX", "M1a", "VALUE:IVA" ], [ "T1", "N0", "M1a", "VALUE:IVA" ], [ "T1", "N1", "M1a", "VALUE:IVB" ], [ "T1", "NX", "M1a", "VALUE:IVA" ], [ "T2", "N0", "M1a", "VALUE:IVA" ], [ "T2", "N1", "M1a", "VALUE:IVB" ], [ "T2", "NX", "M1a", "VALUE:IVA" ], [ "T3", "N0", "M1a", "VALUE:IVA" ], [ "T3", "N1", "M1a", "VALUE:IVB" ], [ "T3", "NX", "M1a", "VALUE:IVA" ], [ "TX", "N0", "M1a", "VALUE:IVA" ], [ "TX", "N1", "M1a", "VALUE:IVB" ], [ "TX", "NX", "M1a", "VALUE:IVA" ], [ "T0", "N0", "M1b", "VALUE:IVB" ], [ "T0", "N1", "M1b", "VALUE:IVB" ], [ "T0", "NX", "M1b", "VALUE:IVB" ], [ "T1", "N0", "M1b", "VALUE:IVB" ], [ "T1", "N1", "M1b", "VALUE:IVB" ], [ "T1", "NX", "M1b", "VALUE:IVB" ], [ "T2", "N0", "M1b", "VALUE:IVB" ], [ "T2", "N1", "M1b", "VALUE:IVB" ], [ "T2", "NX", "M1b", "VALUE:IVB" ], [ "T3", "N0", "M1b", "VALUE:IVB" ], [ "T3", "N1", "M1b", "VALUE:IVB" ], [ "T3", "NX", "M1b", "VALUE:IVB" ], [ "TX", "N0", "M1b", "VALUE:IVB" ], [ "TX", "N1", "M1b", "VALUE:IVB" ], [ "TX", "NX", "M1b", "VALUE:IVB" ], [ "T0", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N1", "M1NOS", "VALUE:IVB" ], [ "T0", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T1", "N1", "M1NOS", "VALUE:IVB" ], [ "T1", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T2", "N1", "M1NOS", "VALUE:IVB" ], [ "T2", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N0", "M1NOS", "VALUE:IVNOS" ], [ "T3", "N1", "M1NOS", "VALUE:IVB" ], [ "T3", "NX", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N0", "M1NOS", "VALUE:IVNOS" ], [ "TX", "N1", "M1NOS", "VALUE:IVB" ], [ "TX", "NX", "M1NOS", "VALUE:IVNOS" ], [ "T0", "N0", "MX", "VALUE:UNK" ], [ "T0", "N1", "MX", "VALUE:IVB" ], [ "T0", "NX", "MX", "VALUE:UNK" ], [ "T1", "N0", "MX", "VALUE:UNK" ], [ "T1", "N1", "MX", "VALUE:IVB" ], [ "T1", "NX", "MX", "VALUE:UNK" ], [ "T2", "N0", "MX", "VALUE:UNK" ], [ "T2", "N1", "MX", "VALUE:IVB" ], [ "T2", "NX", "MX", "VALUE:UNK" ], [ "T3", "N0", "MX", "VALUE:UNK" ], [ "T3", "N1", "MX", "VALUE:IVB" ], [ "T3", "NX", "MX", "VALUE:UNK" ], [ "TX", "N0", "MX", "VALUE:UNK" ], [ "TX", "N1", "MX", "VALUE:IVB" ], [ "TX", "NX", "MX", "VALUE:UNK" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_adenocarcinoma_xhz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_adenocarcinoma_xhz.json
deleted file mode 100644
index fe0f74c26..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_adenocarcinoma_xhz.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcctnm7_stage_adenocarcinoma_xhz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage Adenocarcinoma",
- "title" : "AJCC TNM 7 Stage Adenocarcinoma",
- "last_modified" : "2015-05-27T16:19:01.122Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "4", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N0", "M1", "1", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "VALUE:IV" ], [ "T0", "N0", "M1", "4", "VALUE:IV" ], [ "T0", "N0", "M1", "9", "VALUE:IV" ], [ "T0", "N1", "M0", "1", "VALUE:UNK" ], [ "T0", "N1", "M0", "2", "VALUE:UNK" ], [ "T0", "N1", "M0", "3", "VALUE:UNK" ], [ "T0", "N1", "M0", "4", "VALUE:UNK" ], [ "T0", "N1", "M0", "9", "VALUE:UNK" ], [ "T0", "N1", "M1", "1", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "VALUE:IV" ], [ "T0", "N1", "M1", "4", "VALUE:IV" ], [ "T0", "N1", "M1", "9", "VALUE:IV" ], [ "T0", "N2", "M0", "1", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "2", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "3", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "4", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "9", "VALUE:IIINOS" ], [ "T0", "N2", "M1", "1", "VALUE:IV" ], [ "T0", "N2", "M1", "2", "VALUE:IV" ], [ "T0", "N2", "M1", "3", "VALUE:IV" ], [ "T0", "N2", "M1", "4", "VALUE:IV" ], [ "T0", "N2", "M1", "9", "VALUE:IV" ], [ "T0", "N3", "M0", "1", "VALUE:IIIC" ], [ "T0", "N3", "M0", "2", "VALUE:IIIC" ], [ "T0", "N3", "M0", "3", "VALUE:IIIC" ], [ "T0", "N3", "M0", "4", "VALUE:IIIC" ], [ "T0", "N3", "M0", "9", "VALUE:IIIC" ], [ "T0", "N3", "M1", "1", "VALUE:IV" ], [ "T0", "N3", "M1", "2", "VALUE:IV" ], [ "T0", "N3", "M1", "3", "VALUE:IV" ], [ "T0", "N3", "M1", "4", "VALUE:IV" ], [ "T0", "N3", "M1", "9", "VALUE:IV" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "4", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "NX", "M1", "1", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "VALUE:IV" ], [ "T0", "NX", "M1", "4", "VALUE:IV" ], [ "T0", "NX", "M1", "9", "VALUE:IV" ], [ "T1a", "N0", "M0", "1", "VALUE:IA" ], [ "T1a", "N0", "M0", "2", "VALUE:IA" ], [ "T1a", "N0", "M0", "3", "VALUE:IB" ], [ "T1a", "N0", "M0", "4", "VALUE:IB" ], [ "T1a", "N0", "M0", "9", "VALUE:IA" ], [ "T1a", "N0", "M1", "1", "VALUE:IV" ], [ "T1a", "N0", "M1", "2", "VALUE:IV" ], [ "T1a", "N0", "M1", "3", "VALUE:IV" ], [ "T1a", "N0", "M1", "4", "VALUE:IV" ], [ "T1a", "N0", "M1", "9", "VALUE:IV" ], [ "T1a", "N1", "M0", "1", "VALUE:IIB" ], [ "T1a", "N1", "M0", "2", "VALUE:IIB" ], [ "T1a", "N1", "M0", "3", "VALUE:IIB" ], [ "T1a", "N1", "M0", "4", "VALUE:IIB" ], [ "T1a", "N1", "M0", "9", "VALUE:IIB" ], [ "T1a", "N1", "M1", "1", "VALUE:IV" ], [ "T1a", "N1", "M1", "2", "VALUE:IV" ], [ "T1a", "N1", "M1", "3", "VALUE:IV" ], [ "T1a", "N1", "M1", "4", "VALUE:IV" ], [ "T1a", "N1", "M1", "9", "VALUE:IV" ], [ "T1a", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1a", "N2", "M1", "1", "VALUE:IV" ], [ "T1a", "N2", "M1", "2", "VALUE:IV" ], [ "T1a", "N2", "M1", "3", "VALUE:IV" ], [ "T1a", "N2", "M1", "4", "VALUE:IV" ], [ "T1a", "N2", "M1", "9", "VALUE:IV" ], [ "T1a", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1a", "N3", "M1", "1", "VALUE:IV" ], [ "T1a", "N3", "M1", "2", "VALUE:IV" ], [ "T1a", "N3", "M1", "3", "VALUE:IV" ], [ "T1a", "N3", "M1", "4", "VALUE:IV" ], [ "T1a", "N3", "M1", "9", "VALUE:IV" ], [ "T1a", "NX", "M0", "1", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2", "VALUE:UNK" ], [ "T1a", "NX", "M0", "3", "VALUE:UNK" ], [ "T1a", "NX", "M0", "4", "VALUE:UNK" ], [ "T1a", "NX", "M0", "9", "VALUE:UNK" ], [ "T1a", "NX", "M1", "1", "VALUE:IV" ], [ "T1a", "NX", "M1", "2", "VALUE:IV" ], [ "T1a", "NX", "M1", "3", "VALUE:IV" ], [ "T1a", "NX", "M1", "4", "VALUE:IV" ], [ "T1a", "NX", "M1", "9", "VALUE:IV" ], [ "T1b", "N0", "M0", "1", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "VALUE:IA" ], [ "T1b", "N0", "M0", "3", "VALUE:IB" ], [ "T1b", "N0", "M0", "4", "VALUE:IB" ], [ "T1b", "N0", "M0", "9", "VALUE:IA" ], [ "T1b", "N0", "M1", "1", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "VALUE:IV" ], [ "T1b", "N0", "M1", "4", "VALUE:IV" ], [ "T1b", "N0", "M1", "9", "VALUE:IV" ], [ "T1b", "N1", "M0", "1", "VALUE:IIB" ], [ "T1b", "N1", "M0", "2", "VALUE:IIB" ], [ "T1b", "N1", "M0", "3", "VALUE:IIB" ], [ "T1b", "N1", "M0", "4", "VALUE:IIB" ], [ "T1b", "N1", "M0", "9", "VALUE:IIB" ], [ "T1b", "N1", "M1", "1", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "VALUE:IV" ], [ "T1b", "N1", "M1", "4", "VALUE:IV" ], [ "T1b", "N1", "M1", "9", "VALUE:IV" ], [ "T1b", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1b", "N2", "M1", "1", "VALUE:IV" ], [ "T1b", "N2", "M1", "2", "VALUE:IV" ], [ "T1b", "N2", "M1", "3", "VALUE:IV" ], [ "T1b", "N2", "M1", "4", "VALUE:IV" ], [ "T1b", "N2", "M1", "9", "VALUE:IV" ], [ "T1b", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1b", "N3", "M1", "1", "VALUE:IV" ], [ "T1b", "N3", "M1", "2", "VALUE:IV" ], [ "T1b", "N3", "M1", "3", "VALUE:IV" ], [ "T1b", "N3", "M1", "4", "VALUE:IV" ], [ "T1b", "N3", "M1", "9", "VALUE:IV" ], [ "T1b", "NX", "M0", "1", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2", "VALUE:UNK" ], [ "T1b", "NX", "M0", "3", "VALUE:UNK" ], [ "T1b", "NX", "M0", "4", "VALUE:UNK" ], [ "T1b", "NX", "M0", "9", "VALUE:UNK" ], [ "T1b", "NX", "M1", "1", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "VALUE:IV" ], [ "T1b", "NX", "M1", "4", "VALUE:IV" ], [ "T1b", "NX", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N0", "M0", "1", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "2", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "3", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "4", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "9", "VALUE:IA" ], [ "T1NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "1", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "2", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "3", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "4", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "9", "VALUE:IIB" ], [ "T1NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1NOS", "N2", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1NOS", "N3", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "9", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "4", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "T1NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "9", "VALUE:IV" ], [ "T2", "N0", "M0", "1", "VALUE:IB" ], [ "T2", "N0", "M0", "2", "VALUE:IB" ], [ "T2", "N0", "M0", "3", "VALUE:IIA" ], [ "T2", "N0", "M0", "4", "VALUE:IIA" ], [ "T2", "N0", "M0", "9", "VALUE:IB" ], [ "T2", "N0", "M1", "1", "VALUE:IV" ], [ "T2", "N0", "M1", "2", "VALUE:IV" ], [ "T2", "N0", "M1", "3", "VALUE:IV" ], [ "T2", "N0", "M1", "4", "VALUE:IV" ], [ "T2", "N0", "M1", "9", "VALUE:IV" ], [ "T2", "N1", "M0", "1", "VALUE:IIB" ], [ "T2", "N1", "M0", "2", "VALUE:IIB" ], [ "T2", "N1", "M0", "3", "VALUE:IIB" ], [ "T2", "N1", "M0", "4", "VALUE:IIB" ], [ "T2", "N1", "M0", "9", "VALUE:IIB" ], [ "T2", "N1", "M1", "1", "VALUE:IV" ], [ "T2", "N1", "M1", "2", "VALUE:IV" ], [ "T2", "N1", "M1", "3", "VALUE:IV" ], [ "T2", "N1", "M1", "4", "VALUE:IV" ], [ "T2", "N1", "M1", "9", "VALUE:IV" ], [ "T2", "N2", "M0", "1", "VALUE:IIIA" ], [ "T2", "N2", "M0", "2", "VALUE:IIIA" ], [ "T2", "N2", "M0", "3", "VALUE:IIIA" ], [ "T2", "N2", "M0", "4", "VALUE:IIIA" ], [ "T2", "N2", "M0", "9", "VALUE:IIIA" ], [ "T2", "N2", "M1", "1", "VALUE:IV" ], [ "T2", "N2", "M1", "2", "VALUE:IV" ], [ "T2", "N2", "M1", "3", "VALUE:IV" ], [ "T2", "N2", "M1", "4", "VALUE:IV" ], [ "T2", "N2", "M1", "9", "VALUE:IV" ], [ "T2", "N3", "M0", "1", "VALUE:IIIC" ], [ "T2", "N3", "M0", "2", "VALUE:IIIC" ], [ "T2", "N3", "M0", "3", "VALUE:IIIC" ], [ "T2", "N3", "M0", "4", "VALUE:IIIC" ], [ "T2", "N3", "M0", "9", "VALUE:IIIC" ], [ "T2", "N3", "M1", "1", "VALUE:IV" ], [ "T2", "N3", "M1", "2", "VALUE:IV" ], [ "T2", "N3", "M1", "3", "VALUE:IV" ], [ "T2", "N3", "M1", "4", "VALUE:IV" ], [ "T2", "N3", "M1", "9", "VALUE:IV" ], [ "T2", "NX", "M0", "1", "VALUE:UNK" ], [ "T2", "NX", "M0", "2", "VALUE:UNK" ], [ "T2", "NX", "M0", "3", "VALUE:UNK" ], [ "T2", "NX", "M0", "4", "VALUE:UNK" ], [ "T2", "NX", "M0", "9", "VALUE:UNK" ], [ "T2", "NX", "M1", "1", "VALUE:IV" ], [ "T2", "NX", "M1", "2", "VALUE:IV" ], [ "T2", "NX", "M1", "3", "VALUE:IV" ], [ "T2", "NX", "M1", "4", "VALUE:IV" ], [ "T2", "NX", "M1", "9", "VALUE:IV" ], [ "T3", "N0", "M0", "1", "VALUE:IIB" ], [ "T3", "N0", "M0", "2", "VALUE:IIB" ], [ "T3", "N0", "M0", "3", "VALUE:IIB" ], [ "T3", "N0", "M0", "4", "VALUE:IIB" ], [ "T3", "N0", "M0", "9", "VALUE:IIB" ], [ "T3", "N0", "M1", "1", "VALUE:IV" ], [ "T3", "N0", "M1", "2", "VALUE:IV" ], [ "T3", "N0", "M1", "3", "VALUE:IV" ], [ "T3", "N0", "M1", "4", "VALUE:IV" ], [ "T3", "N0", "M1", "9", "VALUE:IV" ], [ "T3", "N1", "M0", "1", "VALUE:IIIA" ], [ "T3", "N1", "M0", "2", "VALUE:IIIA" ], [ "T3", "N1", "M0", "3", "VALUE:IIIA" ], [ "T3", "N1", "M0", "4", "VALUE:IIIA" ], [ "T3", "N1", "M0", "9", "VALUE:IIIA" ], [ "T3", "N1", "M1", "1", "VALUE:IV" ], [ "T3", "N1", "M1", "2", "VALUE:IV" ], [ "T3", "N1", "M1", "3", "VALUE:IV" ], [ "T3", "N1", "M1", "4", "VALUE:IV" ], [ "T3", "N1", "M1", "9", "VALUE:IV" ], [ "T3", "N2", "M0", "1", "VALUE:IIIB" ], [ "T3", "N2", "M0", "2", "VALUE:IIIB" ], [ "T3", "N2", "M0", "3", "VALUE:IIIB" ], [ "T3", "N2", "M0", "4", "VALUE:IIIB" ], [ "T3", "N2", "M0", "9", "VALUE:IIIB" ], [ "T3", "N2", "M1", "1", "VALUE:IV" ], [ "T3", "N2", "M1", "2", "VALUE:IV" ], [ "T3", "N2", "M1", "3", "VALUE:IV" ], [ "T3", "N2", "M1", "4", "VALUE:IV" ], [ "T3", "N2", "M1", "9", "VALUE:IV" ], [ "T3", "N3", "M0", "1", "VALUE:IIIC" ], [ "T3", "N3", "M0", "2", "VALUE:IIIC" ], [ "T3", "N3", "M0", "3", "VALUE:IIIC" ], [ "T3", "N3", "M0", "4", "VALUE:IIIC" ], [ "T3", "N3", "M0", "9", "VALUE:IIIC" ], [ "T3", "N3", "M1", "1", "VALUE:IV" ], [ "T3", "N3", "M1", "2", "VALUE:IV" ], [ "T3", "N3", "M1", "3", "VALUE:IV" ], [ "T3", "N3", "M1", "4", "VALUE:IV" ], [ "T3", "N3", "M1", "9", "VALUE:IV" ], [ "T3", "NX", "M0", "1", "VALUE:UNK" ], [ "T3", "NX", "M0", "2", "VALUE:UNK" ], [ "T3", "NX", "M0", "3", "VALUE:UNK" ], [ "T3", "NX", "M0", "4", "VALUE:UNK" ], [ "T3", "NX", "M0", "9", "VALUE:UNK" ], [ "T3", "NX", "M1", "1", "VALUE:IV" ], [ "T3", "NX", "M1", "2", "VALUE:IV" ], [ "T3", "NX", "M1", "3", "VALUE:IV" ], [ "T3", "NX", "M1", "4", "VALUE:IV" ], [ "T3", "NX", "M1", "9", "VALUE:IV" ], [ "T4a", "N0", "M0", "1", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "2", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "3", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "4", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "9", "VALUE:IIIA" ], [ "T4a", "N0", "M1", "1", "VALUE:IV" ], [ "T4a", "N0", "M1", "2", "VALUE:IV" ], [ "T4a", "N0", "M1", "3", "VALUE:IV" ], [ "T4a", "N0", "M1", "4", "VALUE:IV" ], [ "T4a", "N0", "M1", "9", "VALUE:IV" ], [ "T4a", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N1", "M1", "1", "VALUE:IV" ], [ "T4a", "N1", "M1", "2", "VALUE:IV" ], [ "T4a", "N1", "M1", "3", "VALUE:IV" ], [ "T4a", "N1", "M1", "4", "VALUE:IV" ], [ "T4a", "N1", "M1", "9", "VALUE:IV" ], [ "T4a", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N2", "M1", "1", "VALUE:IV" ], [ "T4a", "N2", "M1", "2", "VALUE:IV" ], [ "T4a", "N2", "M1", "3", "VALUE:IV" ], [ "T4a", "N2", "M1", "4", "VALUE:IV" ], [ "T4a", "N2", "M1", "9", "VALUE:IV" ], [ "T4a", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N3", "M1", "1", "VALUE:IV" ], [ "T4a", "N3", "M1", "2", "VALUE:IV" ], [ "T4a", "N3", "M1", "3", "VALUE:IV" ], [ "T4a", "N3", "M1", "4", "VALUE:IV" ], [ "T4a", "N3", "M1", "9", "VALUE:IV" ], [ "T4a", "NX", "M0", "1", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "2", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "3", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "4", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "9", "VALUE:IIINOS" ], [ "T4a", "NX", "M1", "1", "VALUE:IV" ], [ "T4a", "NX", "M1", "2", "VALUE:IV" ], [ "T4a", "NX", "M1", "3", "VALUE:IV" ], [ "T4a", "NX", "M1", "4", "VALUE:IV" ], [ "T4a", "NX", "M1", "9", "VALUE:IV" ], [ "T4b", "N0", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N0", "M1", "1", "VALUE:IV" ], [ "T4b", "N0", "M1", "2", "VALUE:IV" ], [ "T4b", "N0", "M1", "3", "VALUE:IV" ], [ "T4b", "N0", "M1", "4", "VALUE:IV" ], [ "T4b", "N0", "M1", "9", "VALUE:IV" ], [ "T4b", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N1", "M1", "1", "VALUE:IV" ], [ "T4b", "N1", "M1", "2", "VALUE:IV" ], [ "T4b", "N1", "M1", "3", "VALUE:IV" ], [ "T4b", "N1", "M1", "4", "VALUE:IV" ], [ "T4b", "N1", "M1", "9", "VALUE:IV" ], [ "T4b", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N2", "M1", "1", "VALUE:IV" ], [ "T4b", "N2", "M1", "2", "VALUE:IV" ], [ "T4b", "N2", "M1", "3", "VALUE:IV" ], [ "T4b", "N2", "M1", "4", "VALUE:IV" ], [ "T4b", "N2", "M1", "9", "VALUE:IV" ], [ "T4b", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N3", "M1", "1", "VALUE:IV" ], [ "T4b", "N3", "M1", "2", "VALUE:IV" ], [ "T4b", "N3", "M1", "3", "VALUE:IV" ], [ "T4b", "N3", "M1", "4", "VALUE:IV" ], [ "T4b", "N3", "M1", "9", "VALUE:IV" ], [ "T4b", "NX", "M0", "1", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "2", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "3", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "4", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "9", "VALUE:IIIC" ], [ "T4b", "NX", "M1", "1", "VALUE:IV" ], [ "T4b", "NX", "M1", "2", "VALUE:IV" ], [ "T4b", "NX", "M1", "3", "VALUE:IV" ], [ "T4b", "NX", "M1", "4", "VALUE:IV" ], [ "T4b", "NX", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N0", "M0", "1", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "2", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "3", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "4", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "9", "VALUE:IIIA" ], [ "T4NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N2", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N3", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "9", "VALUE:IV" ], [ "T4NOS", "NX", "M0", "1", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "2", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "3", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "4", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "9", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "9", "VALUE:IV" ], [ "Tis", "N0", "M0", "1", "VALUE:0" ], [ "Tis", "N0", "M0", "2", "ERROR:" ], [ "Tis", "N0", "M0", "3", "ERROR:" ], [ "Tis", "N0", "M0", "4", "ERROR:" ], [ "Tis", "N0", "M0", "9", "VALUE:0" ], [ "Tis", "N0", "M1", "1", "ERROR:" ], [ "Tis", "N0", "M1", "2", "ERROR:" ], [ "Tis", "N0", "M1", "3", "ERROR:" ], [ "Tis", "N0", "M1", "4", "ERROR:" ], [ "Tis", "N0", "M1", "9", "ERROR:" ], [ "Tis", "N1", "M0", "1", "ERROR:" ], [ "Tis", "N1", "M0", "2", "ERROR:" ], [ "Tis", "N1", "M0", "3", "ERROR:" ], [ "Tis", "N1", "M0", "4", "ERROR:" ], [ "Tis", "N1", "M0", "9", "ERROR:" ], [ "Tis", "N1", "M1", "1", "ERROR:" ], [ "Tis", "N1", "M1", "2", "ERROR:" ], [ "Tis", "N1", "M1", "3", "ERROR:" ], [ "Tis", "N1", "M1", "4", "ERROR:" ], [ "Tis", "N1", "M1", "9", "ERROR:" ], [ "Tis", "N2", "M0", "1", "ERROR:" ], [ "Tis", "N2", "M0", "2", "ERROR:" ], [ "Tis", "N2", "M0", "3", "ERROR:" ], [ "Tis", "N2", "M0", "4", "ERROR:" ], [ "Tis", "N2", "M0", "9", "ERROR:" ], [ "Tis", "N2", "M1", "1", "ERROR:" ], [ "Tis", "N2", "M1", "2", "ERROR:" ], [ "Tis", "N2", "M1", "3", "ERROR:" ], [ "Tis", "N2", "M1", "4", "ERROR:" ], [ "Tis", "N2", "M1", "9", "ERROR:" ], [ "Tis", "N3", "M0", "1", "ERROR:" ], [ "Tis", "N3", "M0", "2", "ERROR:" ], [ "Tis", "N3", "M0", "3", "ERROR:" ], [ "Tis", "N3", "M0", "4", "ERROR:" ], [ "Tis", "N3", "M0", "9", "ERROR:" ], [ "Tis", "N3", "M1", "1", "ERROR:" ], [ "Tis", "N3", "M1", "2", "ERROR:" ], [ "Tis", "N3", "M1", "3", "ERROR:" ], [ "Tis", "N3", "M1", "4", "ERROR:" ], [ "Tis", "N3", "M1", "9", "ERROR:" ], [ "Tis", "NX", "M0", "1", "VALUE:0" ], [ "Tis", "NX", "M0", "2", "ERROR:" ], [ "Tis", "NX", "M0", "3", "ERROR:" ], [ "Tis", "NX", "M0", "4", "ERROR:" ], [ "Tis", "NX", "M0", "9", "VALUE:0" ], [ "Tis", "NX", "M1", "1", "ERROR:" ], [ "Tis", "NX", "M1", "2", "ERROR:" ], [ "Tis", "NX", "M1", "3", "ERROR:" ], [ "Tis", "NX", "M1", "4", "ERROR:" ], [ "Tis", "NX", "M1", "9", "ERROR:" ], [ "TX", "N0", "M0", "1", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:UNK" ], [ "TX", "N0", "M1", "1", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "VALUE:IV" ], [ "TX", "N0", "M1", "4", "VALUE:IV" ], [ "TX", "N0", "M1", "9", "VALUE:IV" ], [ "TX", "N1", "M0", "1", "VALUE:UNK" ], [ "TX", "N1", "M0", "2", "VALUE:UNK" ], [ "TX", "N1", "M0", "3", "VALUE:UNK" ], [ "TX", "N1", "M0", "4", "VALUE:UNK" ], [ "TX", "N1", "M0", "9", "VALUE:UNK" ], [ "TX", "N1", "M1", "1", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "VALUE:IV" ], [ "TX", "N1", "M1", "4", "VALUE:IV" ], [ "TX", "N1", "M1", "9", "VALUE:IV" ], [ "TX", "N2", "M0", "1", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "2", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "3", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "4", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "9", "VALUE:IIINOS" ], [ "TX", "N2", "M1", "1", "VALUE:IV" ], [ "TX", "N2", "M1", "2", "VALUE:IV" ], [ "TX", "N2", "M1", "3", "VALUE:IV" ], [ "TX", "N2", "M1", "4", "VALUE:IV" ], [ "TX", "N2", "M1", "9", "VALUE:IV" ], [ "TX", "N3", "M0", "1", "VALUE:IIIC" ], [ "TX", "N3", "M0", "2", "VALUE:IIIC" ], [ "TX", "N3", "M0", "3", "VALUE:IIIC" ], [ "TX", "N3", "M0", "4", "VALUE:IIIC" ], [ "TX", "N3", "M0", "9", "VALUE:IIIC" ], [ "TX", "N3", "M1", "1", "VALUE:IV" ], [ "TX", "N3", "M1", "2", "VALUE:IV" ], [ "TX", "N3", "M1", "3", "VALUE:IV" ], [ "TX", "N3", "M1", "4", "VALUE:IV" ], [ "TX", "N3", "M1", "9", "VALUE:IV" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "TX", "NX", "M1", "1", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "VALUE:IV" ], [ "TX", "NX", "M1", "4", "VALUE:IV" ], [ "TX", "NX", "M1", "9", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_adenocarcinoma_xib.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_adenocarcinoma_xib.json
deleted file mode 100644
index ff9eee0b8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_adenocarcinoma_xib.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcctnm7_stage_adenocarcinoma_xib",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage Adenocarcinoma",
- "title" : "AJCC TNM 7 Stage Adenocarcinoma",
- "last_modified" : "2015-05-27T16:19:01.240Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "4", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N0", "M1", "1", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "VALUE:IV" ], [ "T0", "N0", "M1", "4", "VALUE:IV" ], [ "T0", "N0", "M1", "9", "VALUE:IV" ], [ "T0", "N1", "M0", "1", "VALUE:IIB" ], [ "T0", "N1", "M0", "2", "VALUE:IIB" ], [ "T0", "N1", "M0", "3", "VALUE:IIB" ], [ "T0", "N1", "M0", "4", "VALUE:IIB" ], [ "T0", "N1", "M0", "9", "VALUE:IIB" ], [ "T0", "N1", "M1", "1", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "VALUE:IV" ], [ "T0", "N1", "M1", "4", "VALUE:IV" ], [ "T0", "N1", "M1", "9", "VALUE:IV" ], [ "T0", "N2", "M0", "1", "VALUE:IIIA" ], [ "T0", "N2", "M0", "2", "VALUE:IIIA" ], [ "T0", "N2", "M0", "3", "VALUE:IIIA" ], [ "T0", "N2", "M0", "4", "VALUE:IIIA" ], [ "T0", "N2", "M0", "9", "VALUE:IIIA" ], [ "T0", "N2", "M1", "1", "VALUE:IV" ], [ "T0", "N2", "M1", "2", "VALUE:IV" ], [ "T0", "N2", "M1", "3", "VALUE:IV" ], [ "T0", "N2", "M1", "4", "VALUE:IV" ], [ "T0", "N2", "M1", "9", "VALUE:IV" ], [ "T0", "N3", "M0", "1", "VALUE:IIIC" ], [ "T0", "N3", "M0", "2", "VALUE:IIIC" ], [ "T0", "N3", "M0", "3", "VALUE:IIIC" ], [ "T0", "N3", "M0", "4", "VALUE:IIIC" ], [ "T0", "N3", "M0", "9", "VALUE:IIIC" ], [ "T0", "N3", "M1", "1", "VALUE:IV" ], [ "T0", "N3", "M1", "2", "VALUE:IV" ], [ "T0", "N3", "M1", "3", "VALUE:IV" ], [ "T0", "N3", "M1", "4", "VALUE:IV" ], [ "T0", "N3", "M1", "9", "VALUE:IV" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "4", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "NX", "M1", "1", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "VALUE:IV" ], [ "T0", "NX", "M1", "4", "VALUE:IV" ], [ "T0", "NX", "M1", "9", "VALUE:IV" ], [ "T1a", "N0", "M0", "1", "VALUE:IA" ], [ "T1a", "N0", "M0", "2", "VALUE:IA" ], [ "T1a", "N0", "M0", "3", "VALUE:IB" ], [ "T1a", "N0", "M0", "4", "VALUE:IB" ], [ "T1a", "N0", "M0", "9", "VALUE:IA" ], [ "T1a", "N0", "M1", "1", "VALUE:IV" ], [ "T1a", "N0", "M1", "2", "VALUE:IV" ], [ "T1a", "N0", "M1", "3", "VALUE:IV" ], [ "T1a", "N0", "M1", "4", "VALUE:IV" ], [ "T1a", "N0", "M1", "9", "VALUE:IV" ], [ "T1a", "N1", "M0", "1", "VALUE:IIB" ], [ "T1a", "N1", "M0", "2", "VALUE:IIB" ], [ "T1a", "N1", "M0", "3", "VALUE:IIB" ], [ "T1a", "N1", "M0", "4", "VALUE:IIB" ], [ "T1a", "N1", "M0", "9", "VALUE:IIB" ], [ "T1a", "N1", "M1", "1", "VALUE:IV" ], [ "T1a", "N1", "M1", "2", "VALUE:IV" ], [ "T1a", "N1", "M1", "3", "VALUE:IV" ], [ "T1a", "N1", "M1", "4", "VALUE:IV" ], [ "T1a", "N1", "M1", "9", "VALUE:IV" ], [ "T1a", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1a", "N2", "M1", "1", "VALUE:IV" ], [ "T1a", "N2", "M1", "2", "VALUE:IV" ], [ "T1a", "N2", "M1", "3", "VALUE:IV" ], [ "T1a", "N2", "M1", "4", "VALUE:IV" ], [ "T1a", "N2", "M1", "9", "VALUE:IV" ], [ "T1a", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1a", "N3", "M1", "1", "VALUE:IV" ], [ "T1a", "N3", "M1", "2", "VALUE:IV" ], [ "T1a", "N3", "M1", "3", "VALUE:IV" ], [ "T1a", "N3", "M1", "4", "VALUE:IV" ], [ "T1a", "N3", "M1", "9", "VALUE:IV" ], [ "T1a", "NX", "M0", "1", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2", "VALUE:UNK" ], [ "T1a", "NX", "M0", "3", "VALUE:UNK" ], [ "T1a", "NX", "M0", "4", "VALUE:UNK" ], [ "T1a", "NX", "M0", "9", "VALUE:UNK" ], [ "T1a", "NX", "M1", "1", "VALUE:IV" ], [ "T1a", "NX", "M1", "2", "VALUE:IV" ], [ "T1a", "NX", "M1", "3", "VALUE:IV" ], [ "T1a", "NX", "M1", "4", "VALUE:IV" ], [ "T1a", "NX", "M1", "9", "VALUE:IV" ], [ "T1b", "N0", "M0", "1", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "VALUE:IA" ], [ "T1b", "N0", "M0", "3", "VALUE:IB" ], [ "T1b", "N0", "M0", "4", "VALUE:IB" ], [ "T1b", "N0", "M0", "9", "VALUE:IA" ], [ "T1b", "N0", "M1", "1", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "VALUE:IV" ], [ "T1b", "N0", "M1", "4", "VALUE:IV" ], [ "T1b", "N0", "M1", "9", "VALUE:IV" ], [ "T1b", "N1", "M0", "1", "VALUE:IIB" ], [ "T1b", "N1", "M0", "2", "VALUE:IIB" ], [ "T1b", "N1", "M0", "3", "VALUE:IIB" ], [ "T1b", "N1", "M0", "4", "VALUE:IIB" ], [ "T1b", "N1", "M0", "9", "VALUE:IIB" ], [ "T1b", "N1", "M1", "1", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "VALUE:IV" ], [ "T1b", "N1", "M1", "4", "VALUE:IV" ], [ "T1b", "N1", "M1", "9", "VALUE:IV" ], [ "T1b", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1b", "N2", "M1", "1", "VALUE:IV" ], [ "T1b", "N2", "M1", "2", "VALUE:IV" ], [ "T1b", "N2", "M1", "3", "VALUE:IV" ], [ "T1b", "N2", "M1", "4", "VALUE:IV" ], [ "T1b", "N2", "M1", "9", "VALUE:IV" ], [ "T1b", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1b", "N3", "M1", "1", "VALUE:IV" ], [ "T1b", "N3", "M1", "2", "VALUE:IV" ], [ "T1b", "N3", "M1", "3", "VALUE:IV" ], [ "T1b", "N3", "M1", "4", "VALUE:IV" ], [ "T1b", "N3", "M1", "9", "VALUE:IV" ], [ "T1b", "NX", "M0", "1", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2", "VALUE:UNK" ], [ "T1b", "NX", "M0", "3", "VALUE:UNK" ], [ "T1b", "NX", "M0", "4", "VALUE:UNK" ], [ "T1b", "NX", "M0", "9", "VALUE:UNK" ], [ "T1b", "NX", "M1", "1", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "VALUE:IV" ], [ "T1b", "NX", "M1", "4", "VALUE:IV" ], [ "T1b", "NX", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N0", "M0", "1", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "2", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "3", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "4", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "9", "VALUE:IA" ], [ "T1NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "1", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "2", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "3", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "4", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "9", "VALUE:IIB" ], [ "T1NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1NOS", "N2", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1NOS", "N3", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "9", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "4", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "T1NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "9", "VALUE:IV" ], [ "T2", "N0", "M0", "1", "VALUE:IB" ], [ "T2", "N0", "M0", "2", "VALUE:IB" ], [ "T2", "N0", "M0", "3", "VALUE:IIA" ], [ "T2", "N0", "M0", "4", "VALUE:IIA" ], [ "T2", "N0", "M0", "9", "VALUE:IB" ], [ "T2", "N0", "M1", "1", "VALUE:IV" ], [ "T2", "N0", "M1", "2", "VALUE:IV" ], [ "T2", "N0", "M1", "3", "VALUE:IV" ], [ "T2", "N0", "M1", "4", "VALUE:IV" ], [ "T2", "N0", "M1", "9", "VALUE:IV" ], [ "T2", "N1", "M0", "1", "VALUE:IIB" ], [ "T2", "N1", "M0", "2", "VALUE:IIB" ], [ "T2", "N1", "M0", "3", "VALUE:IIB" ], [ "T2", "N1", "M0", "4", "VALUE:IIB" ], [ "T2", "N1", "M0", "9", "VALUE:IIB" ], [ "T2", "N1", "M1", "1", "VALUE:IV" ], [ "T2", "N1", "M1", "2", "VALUE:IV" ], [ "T2", "N1", "M1", "3", "VALUE:IV" ], [ "T2", "N1", "M1", "4", "VALUE:IV" ], [ "T2", "N1", "M1", "9", "VALUE:IV" ], [ "T2", "N2", "M0", "1", "VALUE:IIIA" ], [ "T2", "N2", "M0", "2", "VALUE:IIIA" ], [ "T2", "N2", "M0", "3", "VALUE:IIIA" ], [ "T2", "N2", "M0", "4", "VALUE:IIIA" ], [ "T2", "N2", "M0", "9", "VALUE:IIIA" ], [ "T2", "N2", "M1", "1", "VALUE:IV" ], [ "T2", "N2", "M1", "2", "VALUE:IV" ], [ "T2", "N2", "M1", "3", "VALUE:IV" ], [ "T2", "N2", "M1", "4", "VALUE:IV" ], [ "T2", "N2", "M1", "9", "VALUE:IV" ], [ "T2", "N3", "M0", "1", "VALUE:IIIC" ], [ "T2", "N3", "M0", "2", "VALUE:IIIC" ], [ "T2", "N3", "M0", "3", "VALUE:IIIC" ], [ "T2", "N3", "M0", "4", "VALUE:IIIC" ], [ "T2", "N3", "M0", "9", "VALUE:IIIC" ], [ "T2", "N3", "M1", "1", "VALUE:IV" ], [ "T2", "N3", "M1", "2", "VALUE:IV" ], [ "T2", "N3", "M1", "3", "VALUE:IV" ], [ "T2", "N3", "M1", "4", "VALUE:IV" ], [ "T2", "N3", "M1", "9", "VALUE:IV" ], [ "T2", "NX", "M0", "1", "VALUE:UNK" ], [ "T2", "NX", "M0", "2", "VALUE:UNK" ], [ "T2", "NX", "M0", "3", "VALUE:UNK" ], [ "T2", "NX", "M0", "4", "VALUE:UNK" ], [ "T2", "NX", "M0", "9", "VALUE:UNK" ], [ "T2", "NX", "M1", "1", "VALUE:IV" ], [ "T2", "NX", "M1", "2", "VALUE:IV" ], [ "T2", "NX", "M1", "3", "VALUE:IV" ], [ "T2", "NX", "M1", "4", "VALUE:IV" ], [ "T2", "NX", "M1", "9", "VALUE:IV" ], [ "T3", "N0", "M0", "1", "VALUE:IIB" ], [ "T3", "N0", "M0", "2", "VALUE:IIB" ], [ "T3", "N0", "M0", "3", "VALUE:IIB" ], [ "T3", "N0", "M0", "4", "VALUE:IIB" ], [ "T3", "N0", "M0", "9", "VALUE:IIB" ], [ "T3", "N0", "M1", "1", "VALUE:IV" ], [ "T3", "N0", "M1", "2", "VALUE:IV" ], [ "T3", "N0", "M1", "3", "VALUE:IV" ], [ "T3", "N0", "M1", "4", "VALUE:IV" ], [ "T3", "N0", "M1", "9", "VALUE:IV" ], [ "T3", "N1", "M0", "1", "VALUE:IIIA" ], [ "T3", "N1", "M0", "2", "VALUE:IIIA" ], [ "T3", "N1", "M0", "3", "VALUE:IIIA" ], [ "T3", "N1", "M0", "4", "VALUE:IIIA" ], [ "T3", "N1", "M0", "9", "VALUE:IIIA" ], [ "T3", "N1", "M1", "1", "VALUE:IV" ], [ "T3", "N1", "M1", "2", "VALUE:IV" ], [ "T3", "N1", "M1", "3", "VALUE:IV" ], [ "T3", "N1", "M1", "4", "VALUE:IV" ], [ "T3", "N1", "M1", "9", "VALUE:IV" ], [ "T3", "N2", "M0", "1", "VALUE:IIIB" ], [ "T3", "N2", "M0", "2", "VALUE:IIIB" ], [ "T3", "N2", "M0", "3", "VALUE:IIIB" ], [ "T3", "N2", "M0", "4", "VALUE:IIIB" ], [ "T3", "N2", "M0", "9", "VALUE:IIIB" ], [ "T3", "N2", "M1", "1", "VALUE:IV" ], [ "T3", "N2", "M1", "2", "VALUE:IV" ], [ "T3", "N2", "M1", "3", "VALUE:IV" ], [ "T3", "N2", "M1", "4", "VALUE:IV" ], [ "T3", "N2", "M1", "9", "VALUE:IV" ], [ "T3", "N3", "M0", "1", "VALUE:IIIC" ], [ "T3", "N3", "M0", "2", "VALUE:IIIC" ], [ "T3", "N3", "M0", "3", "VALUE:IIIC" ], [ "T3", "N3", "M0", "4", "VALUE:IIIC" ], [ "T3", "N3", "M0", "9", "VALUE:IIIC" ], [ "T3", "N3", "M1", "1", "VALUE:IV" ], [ "T3", "N3", "M1", "2", "VALUE:IV" ], [ "T3", "N3", "M1", "3", "VALUE:IV" ], [ "T3", "N3", "M1", "4", "VALUE:IV" ], [ "T3", "N3", "M1", "9", "VALUE:IV" ], [ "T3", "NX", "M0", "1", "VALUE:UNK" ], [ "T3", "NX", "M0", "2", "VALUE:UNK" ], [ "T3", "NX", "M0", "3", "VALUE:UNK" ], [ "T3", "NX", "M0", "4", "VALUE:UNK" ], [ "T3", "NX", "M0", "9", "VALUE:UNK" ], [ "T3", "NX", "M1", "1", "VALUE:IV" ], [ "T3", "NX", "M1", "2", "VALUE:IV" ], [ "T3", "NX", "M1", "3", "VALUE:IV" ], [ "T3", "NX", "M1", "4", "VALUE:IV" ], [ "T3", "NX", "M1", "9", "VALUE:IV" ], [ "T4a", "N0", "M0", "1", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "2", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "3", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "4", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "9", "VALUE:IIIA" ], [ "T4a", "N0", "M1", "1", "VALUE:IV" ], [ "T4a", "N0", "M1", "2", "VALUE:IV" ], [ "T4a", "N0", "M1", "3", "VALUE:IV" ], [ "T4a", "N0", "M1", "4", "VALUE:IV" ], [ "T4a", "N0", "M1", "9", "VALUE:IV" ], [ "T4a", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N1", "M1", "1", "VALUE:IV" ], [ "T4a", "N1", "M1", "2", "VALUE:IV" ], [ "T4a", "N1", "M1", "3", "VALUE:IV" ], [ "T4a", "N1", "M1", "4", "VALUE:IV" ], [ "T4a", "N1", "M1", "9", "VALUE:IV" ], [ "T4a", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N2", "M1", "1", "VALUE:IV" ], [ "T4a", "N2", "M1", "2", "VALUE:IV" ], [ "T4a", "N2", "M1", "3", "VALUE:IV" ], [ "T4a", "N2", "M1", "4", "VALUE:IV" ], [ "T4a", "N2", "M1", "9", "VALUE:IV" ], [ "T4a", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N3", "M1", "1", "VALUE:IV" ], [ "T4a", "N3", "M1", "2", "VALUE:IV" ], [ "T4a", "N3", "M1", "3", "VALUE:IV" ], [ "T4a", "N3", "M1", "4", "VALUE:IV" ], [ "T4a", "N3", "M1", "9", "VALUE:IV" ], [ "T4a", "NX", "M0", "1", "VALUE:UNK" ], [ "T4a", "NX", "M0", "2", "VALUE:UNK" ], [ "T4a", "NX", "M0", "3", "VALUE:UNK" ], [ "T4a", "NX", "M0", "4", "VALUE:UNK" ], [ "T4a", "NX", "M0", "9", "VALUE:UNK" ], [ "T4a", "NX", "M1", "1", "VALUE:IV" ], [ "T4a", "NX", "M1", "2", "VALUE:IV" ], [ "T4a", "NX", "M1", "3", "VALUE:IV" ], [ "T4a", "NX", "M1", "4", "VALUE:IV" ], [ "T4a", "NX", "M1", "9", "VALUE:IV" ], [ "T4b", "N0", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N0", "M1", "1", "VALUE:IV" ], [ "T4b", "N0", "M1", "2", "VALUE:IV" ], [ "T4b", "N0", "M1", "3", "VALUE:IV" ], [ "T4b", "N0", "M1", "4", "VALUE:IV" ], [ "T4b", "N0", "M1", "9", "VALUE:IV" ], [ "T4b", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N1", "M1", "1", "VALUE:IV" ], [ "T4b", "N1", "M1", "2", "VALUE:IV" ], [ "T4b", "N1", "M1", "3", "VALUE:IV" ], [ "T4b", "N1", "M1", "4", "VALUE:IV" ], [ "T4b", "N1", "M1", "9", "VALUE:IV" ], [ "T4b", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N2", "M1", "1", "VALUE:IV" ], [ "T4b", "N2", "M1", "2", "VALUE:IV" ], [ "T4b", "N2", "M1", "3", "VALUE:IV" ], [ "T4b", "N2", "M1", "4", "VALUE:IV" ], [ "T4b", "N2", "M1", "9", "VALUE:IV" ], [ "T4b", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N3", "M1", "1", "VALUE:IV" ], [ "T4b", "N3", "M1", "2", "VALUE:IV" ], [ "T4b", "N3", "M1", "3", "VALUE:IV" ], [ "T4b", "N3", "M1", "4", "VALUE:IV" ], [ "T4b", "N3", "M1", "9", "VALUE:IV" ], [ "T4b", "NX", "M0", "1", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "2", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "3", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "4", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "9", "VALUE:IIIC" ], [ "T4b", "NX", "M1", "1", "VALUE:IV" ], [ "T4b", "NX", "M1", "2", "VALUE:IV" ], [ "T4b", "NX", "M1", "3", "VALUE:IV" ], [ "T4b", "NX", "M1", "4", "VALUE:IV" ], [ "T4b", "NX", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N0", "M0", "1", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "2", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "3", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "4", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "9", "VALUE:IIIA" ], [ "T4NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N2", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N3", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "9", "VALUE:IV" ], [ "T4NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "4", "VALUE:UNK" ], [ "T4NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "T4NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "9", "VALUE:IV" ], [ "Tis", "N0", "M0", "1", "VALUE:0" ], [ "Tis", "N0", "M0", "2", "VALUE:0" ], [ "Tis", "N0", "M0", "3", "VALUE:0" ], [ "Tis", "N0", "M0", "4", "VALUE:0" ], [ "Tis", "N0", "M0", "9", "VALUE:0" ], [ "Tis", "N0", "M1", "1", "ERROR:" ], [ "Tis", "N0", "M1", "2", "ERROR:" ], [ "Tis", "N0", "M1", "3", "ERROR:" ], [ "Tis", "N0", "M1", "4", "ERROR:" ], [ "Tis", "N0", "M1", "9", "ERROR:" ], [ "Tis", "N1", "M0", "1", "ERROR:" ], [ "Tis", "N1", "M0", "2", "ERROR:" ], [ "Tis", "N1", "M0", "3", "ERROR:" ], [ "Tis", "N1", "M0", "4", "ERROR:" ], [ "Tis", "N1", "M0", "9", "ERROR:" ], [ "Tis", "N1", "M1", "1", "ERROR:" ], [ "Tis", "N1", "M1", "2", "ERROR:" ], [ "Tis", "N1", "M1", "3", "ERROR:" ], [ "Tis", "N1", "M1", "4", "ERROR:" ], [ "Tis", "N1", "M1", "9", "ERROR:" ], [ "Tis", "N2", "M0", "1", "ERROR:" ], [ "Tis", "N2", "M0", "2", "ERROR:" ], [ "Tis", "N2", "M0", "3", "ERROR:" ], [ "Tis", "N2", "M0", "4", "ERROR:" ], [ "Tis", "N2", "M0", "9", "ERROR:" ], [ "Tis", "N2", "M1", "1", "ERROR:" ], [ "Tis", "N2", "M1", "2", "ERROR:" ], [ "Tis", "N2", "M1", "3", "ERROR:" ], [ "Tis", "N2", "M1", "4", "ERROR:" ], [ "Tis", "N2", "M1", "9", "ERROR:" ], [ "Tis", "N3", "M0", "1", "ERROR:" ], [ "Tis", "N3", "M0", "2", "ERROR:" ], [ "Tis", "N3", "M0", "3", "ERROR:" ], [ "Tis", "N3", "M0", "4", "ERROR:" ], [ "Tis", "N3", "M0", "9", "ERROR:" ], [ "Tis", "N3", "M1", "1", "ERROR:" ], [ "Tis", "N3", "M1", "2", "ERROR:" ], [ "Tis", "N3", "M1", "3", "ERROR:" ], [ "Tis", "N3", "M1", "4", "ERROR:" ], [ "Tis", "N3", "M1", "9", "ERROR:" ], [ "Tis", "NX", "M0", "1", "VALUE:0" ], [ "Tis", "NX", "M0", "2", "VALUE:0" ], [ "Tis", "NX", "M0", "3", "VALUE:0" ], [ "Tis", "NX", "M0", "4", "VALUE:0" ], [ "Tis", "NX", "M0", "9", "VALUE:0" ], [ "Tis", "NX", "M1", "1", "ERROR:" ], [ "Tis", "NX", "M1", "2", "ERROR:" ], [ "Tis", "NX", "M1", "3", "ERROR:" ], [ "Tis", "NX", "M1", "4", "ERROR:" ], [ "Tis", "NX", "M1", "9", "ERROR:" ], [ "TX", "N0", "M0", "1", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:UNK" ], [ "TX", "N0", "M1", "1", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "VALUE:IV" ], [ "TX", "N0", "M1", "4", "VALUE:IV" ], [ "TX", "N0", "M1", "9", "VALUE:IV" ], [ "TX", "N1", "M0", "1", "VALUE:UNK" ], [ "TX", "N1", "M0", "2", "VALUE:UNK" ], [ "TX", "N1", "M0", "3", "VALUE:UNK" ], [ "TX", "N1", "M0", "4", "VALUE:UNK" ], [ "TX", "N1", "M0", "9", "VALUE:UNK" ], [ "TX", "N1", "M1", "1", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "VALUE:IV" ], [ "TX", "N1", "M1", "4", "VALUE:IV" ], [ "TX", "N1", "M1", "9", "VALUE:IV" ], [ "TX", "N2", "M0", "1", "VALUE:UNK" ], [ "TX", "N2", "M0", "2", "VALUE:UNK" ], [ "TX", "N2", "M0", "3", "VALUE:UNK" ], [ "TX", "N2", "M0", "4", "VALUE:UNK" ], [ "TX", "N2", "M0", "9", "VALUE:UNK" ], [ "TX", "N2", "M1", "1", "VALUE:IV" ], [ "TX", "N2", "M1", "2", "VALUE:IV" ], [ "TX", "N2", "M1", "3", "VALUE:IV" ], [ "TX", "N2", "M1", "4", "VALUE:IV" ], [ "TX", "N2", "M1", "9", "VALUE:IV" ], [ "TX", "N3", "M0", "1", "VALUE:IIIC" ], [ "TX", "N3", "M0", "2", "VALUE:IIIC" ], [ "TX", "N3", "M0", "3", "VALUE:IIIC" ], [ "TX", "N3", "M0", "4", "VALUE:IIIC" ], [ "TX", "N3", "M0", "9", "VALUE:IIIC" ], [ "TX", "N3", "M1", "1", "VALUE:IV" ], [ "TX", "N3", "M1", "2", "VALUE:IV" ], [ "TX", "N3", "M1", "3", "VALUE:IV" ], [ "TX", "N3", "M1", "4", "VALUE:IV" ], [ "TX", "N3", "M1", "9", "VALUE:IV" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "TX", "NX", "M1", "1", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "VALUE:IV" ], [ "TX", "NX", "M1", "4", "VALUE:IV" ], [ "TX", "NX", "M1", "9", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_giststomach_xit.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_giststomach_xit.json
deleted file mode 100644
index b2340ab13..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_giststomach_xit.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcctnm7_stage_giststomach_xit",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage GIST Stomach",
- "title" : "AJCC TNM 7 Stage - GIST Stomach",
- "last_modified" : "2015-05-27T16:19:01.360Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "mitotic_rate",
- "name" : "Mitotic Rate",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "High", "ERROR:" ], [ "T0", "N0", "M0", "Low", "ERROR:" ], [ "T0", "N0", "M0", "Unknown", "ERROR:" ], [ "T0", "N0", "M1", "High", "VALUE:IV" ], [ "T0", "N0", "M1", "Low", "VALUE:IV" ], [ "T0", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T0", "N1", "M0", "High", "VALUE:IV" ], [ "T0", "N1", "M0", "Low", "VALUE:IV" ], [ "T0", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T0", "N1", "M1", "High", "VALUE:IV" ], [ "T0", "N1", "M1", "Low", "VALUE:IV" ], [ "T0", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T1", "N0", "M0", "High", "VALUE:II" ], [ "T1", "N0", "M0", "Low", "VALUE:IA" ], [ "T1", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T1", "N0", "M1", "High", "VALUE:IV" ], [ "T1", "N0", "M1", "Low", "VALUE:IV" ], [ "T1", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T1", "N1", "M0", "High", "VALUE:IV" ], [ "T1", "N1", "M0", "Low", "VALUE:IV" ], [ "T1", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T1", "N1", "M1", "High", "VALUE:IV" ], [ "T1", "N1", "M1", "Low", "VALUE:IV" ], [ "T1", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T2", "N0", "M0", "High", "VALUE:II" ], [ "T2", "N0", "M0", "Low", "VALUE:IA" ], [ "T2", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T2", "N0", "M1", "High", "VALUE:IV" ], [ "T2", "N0", "M1", "Low", "VALUE:IV" ], [ "T2", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T2", "N1", "M0", "High", "VALUE:IV" ], [ "T2", "N1", "M0", "Low", "VALUE:IV" ], [ "T2", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T2", "N1", "M1", "High", "VALUE:IV" ], [ "T2", "N1", "M1", "Low", "VALUE:IV" ], [ "T2", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T3", "N0", "M0", "High", "VALUE:IIIA" ], [ "T3", "N0", "M0", "Low", "VALUE:IB" ], [ "T3", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T3", "N0", "M1", "High", "VALUE:IV" ], [ "T3", "N0", "M1", "Low", "VALUE:IV" ], [ "T3", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T3", "N1", "M0", "High", "VALUE:IV" ], [ "T3", "N1", "M0", "Low", "VALUE:IV" ], [ "T3", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T3", "N1", "M1", "High", "VALUE:IV" ], [ "T3", "N1", "M1", "Low", "VALUE:IV" ], [ "T3", "N1", "M1", "Unknown", "VALUE:IV" ], [ "T4", "N0", "M0", "High", "VALUE:IIIB" ], [ "T4", "N0", "M0", "Low", "VALUE:II" ], [ "T4", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "T4", "N0", "M1", "High", "VALUE:IV" ], [ "T4", "N0", "M1", "Low", "VALUE:IV" ], [ "T4", "N0", "M1", "Unknown", "VALUE:IV" ], [ "T4", "N1", "M0", "High", "VALUE:IV" ], [ "T4", "N1", "M0", "Low", "VALUE:IV" ], [ "T4", "N1", "M0", "Unknown", "VALUE:IV" ], [ "T4", "N1", "M1", "High", "VALUE:IV" ], [ "T4", "N1", "M1", "Low", "VALUE:IV" ], [ "T4", "N1", "M1", "Unknown", "VALUE:IV" ], [ "TX", "N0", "M0", "High", "VALUE:UNK" ], [ "TX", "N0", "M0", "Low", "VALUE:UNK" ], [ "TX", "N0", "M0", "Unknown", "VALUE:UNK" ], [ "TX", "N0", "M1", "High", "VALUE:IV" ], [ "TX", "N0", "M1", "Low", "VALUE:IV" ], [ "TX", "N0", "M1", "Unknown", "VALUE:IV" ], [ "TX", "N1", "M0", "High", "VALUE:IV" ], [ "TX", "N1", "M0", "Low", "VALUE:IV" ], [ "TX", "N1", "M0", "Unknown", "VALUE:IV" ], [ "TX", "N1", "M1", "High", "VALUE:IV" ], [ "TX", "N1", "M1", "Low", "VALUE:IV" ], [ "TX", "N1", "M1", "Unknown", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_squamous_xhy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_squamous_xhy.json
deleted file mode 100644
index ddf499393..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_squamous_xhy.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "ajcctnm7_stage_squamous_xhy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage Squamous",
- "title" : "AJCC TNM 7 Stage Squamous",
- "last_modified" : "2015-05-27T16:19:01.412Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "site",
- "name" : "Site",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "*", "ERROR:" ], [ "T0", "N0", "M0", "2", "*", "ERROR:" ], [ "T0", "N0", "M0", "3", "*", "ERROR:" ], [ "T0", "N0", "M0", "4", "*", "ERROR:" ], [ "T0", "N0", "M0", "9", "*", "ERROR:" ], [ "T0", "N1", "M0", "1", "*", "VALUE:UNK" ], [ "T0", "N1", "M0", "2", "*", "VALUE:UNK" ], [ "T0", "N1", "M0", "3", "*", "VALUE:UNK" ], [ "T0", "N1", "M0", "4", "*", "VALUE:UNK" ], [ "T0", "N1", "M0", "9", "*", "VALUE:UNK" ], [ "T0", "N2", "M0", "1", "*", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "2", "*", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "3", "*", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "4", "*", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "9", "*", "VALUE:IIINOS" ], [ "T0", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T0", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T0", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T0", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T0", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T0", "NX", "M0", "1", "*", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "*", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "*", "VALUE:UNK" ], [ "T0", "NX", "M0", "4", "*", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "*", "VALUE:UNK" ], [ "Tis", "N0", "M0", "1", "*", "VALUE:0" ], [ "Tis", "N0", "M0", "2", "*", "ERROR:" ], [ "Tis", "N0", "M0", "3", "*", "ERROR:" ], [ "Tis", "N0", "M0", "4", "*", "ERROR:" ], [ "Tis", "N0", "M0", "9", "*", "VALUE:0" ], [ "Tis", "N1", "M0", "1", "*", "ERROR:" ], [ "Tis", "N1", "M0", "2", "*", "ERROR:" ], [ "Tis", "N1", "M0", "3", "*", "ERROR:" ], [ "Tis", "N1", "M0", "4", "*", "ERROR:" ], [ "Tis", "N1", "M0", "9", "*", "ERROR:" ], [ "Tis", "N2", "M0", "1", "*", "ERROR:" ], [ "Tis", "N2", "M0", "2", "*", "ERROR:" ], [ "Tis", "N2", "M0", "3", "*", "ERROR:" ], [ "Tis", "N2", "M0", "4", "*", "ERROR:" ], [ "Tis", "N2", "M0", "9", "*", "ERROR:" ], [ "Tis", "N3", "M0", "1", "*", "ERROR:" ], [ "Tis", "N3", "M0", "2", "*", "ERROR:" ], [ "Tis", "N3", "M0", "3", "*", "ERROR:" ], [ "Tis", "N3", "M0", "4", "*", "ERROR:" ], [ "Tis", "N3", "M0", "9", "*", "ERROR:" ], [ "Tis", "NX", "M0", "1", "*", "VALUE:0" ], [ "Tis", "NX", "M0", "2", "*", "ERROR:" ], [ "Tis", "NX", "M0", "3", "*", "ERROR:" ], [ "Tis", "NX", "M0", "4", "*", "ERROR:" ], [ "Tis", "NX", "M0", "9", "*", "VALUE:0" ], [ "T1a", "N0", "M0", "1", "*", "VALUE:IA" ], [ "T1a", "N0", "M0", "2", "*", "VALUE:IB" ], [ "T1a", "N0", "M0", "3", "*", "VALUE:IB" ], [ "T1a", "N0", "M0", "4", "*", "VALUE:IB" ], [ "T1a", "N0", "M0", "9", "*", "VALUE:IA" ], [ "T1a", "N1", "M0", "1", "*", "VALUE:IIB" ], [ "T1a", "N1", "M0", "2", "*", "VALUE:IIB" ], [ "T1a", "N1", "M0", "3", "*", "VALUE:IIB" ], [ "T1a", "N1", "M0", "4", "*", "VALUE:IIB" ], [ "T1a", "N1", "M0", "9", "*", "VALUE:IIB" ], [ "T1a", "N2", "M0", "1", "*", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "2", "*", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "3", "*", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "4", "*", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "9", "*", "VALUE:IIIA" ], [ "T1a", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T1a", "NX", "M0", "1", "*", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2", "*", "VALUE:UNK" ], [ "T1a", "NX", "M0", "3", "*", "VALUE:UNK" ], [ "T1a", "NX", "M0", "4", "*", "VALUE:UNK" ], [ "T1a", "NX", "M0", "9", "*", "VALUE:UNK" ], [ "T1b", "N0", "M0", "1", "*", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "*", "VALUE:IB" ], [ "T1b", "N0", "M0", "3", "*", "VALUE:IB" ], [ "T1b", "N0", "M0", "4", "*", "VALUE:IB" ], [ "T1b", "N0", "M0", "9", "*", "VALUE:IA" ], [ "T1b", "N1", "M0", "1", "*", "VALUE:IIB" ], [ "T1b", "N1", "M0", "2", "*", "VALUE:IIB" ], [ "T1b", "N1", "M0", "3", "*", "VALUE:IIB" ], [ "T1b", "N1", "M0", "4", "*", "VALUE:IIB" ], [ "T1b", "N1", "M0", "9", "*", "VALUE:IIB" ], [ "T1b", "N2", "M0", "1", "*", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "2", "*", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "3", "*", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "4", "*", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "9", "*", "VALUE:IIIA" ], [ "T1b", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T1b", "NX", "M0", "1", "*", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2", "*", "VALUE:UNK" ], [ "T1b", "NX", "M0", "3", "*", "VALUE:UNK" ], [ "T1b", "NX", "M0", "4", "*", "VALUE:UNK" ], [ "T1b", "NX", "M0", "9", "*", "VALUE:UNK" ], [ "T1NOS", "N0", "M0", "1", "*", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "2", "*", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "3", "*", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "4", "*", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "9", "*", "VALUE:IA" ], [ "T1NOS", "N1", "M0", "1", "*", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "2", "*", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "3", "*", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "4", "*", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "9", "*", "VALUE:IIB" ], [ "T1NOS", "N2", "M0", "1", "*", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "2", "*", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "3", "*", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "4", "*", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "9", "*", "VALUE:IIIA" ], [ "T1NOS", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T1NOS", "NX", "M0", "1", "*", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2", "*", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "3", "*", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "4", "*", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "9", "*", "VALUE:UNK" ], [ "T2", "N0", "M0", "1", "C150,C151,C153,C154", "VALUE:IIA" ], [ "T2", "N0", "M0", "1", "C152,C155,C158,C159", "VALUE:IB" ], [ "T2", "N0", "M0", "2", "C150,C151,C153,C154", "VALUE:IIB" ], [ "T2", "N0", "M0", "2", "C152,C155,C158,C159", "VALUE:IIA" ], [ "T2", "N0", "M0", "3", "C150,C151,C153,C154", "VALUE:IIB" ], [ "T2", "N0", "M0", "3", "C152,C155,C158,C159", "VALUE:IIA" ], [ "T2", "N0", "M0", "4", "C150,C151,C153,C154", "VALUE:IIB" ], [ "T2", "N0", "M0", "4", "C152,C155,C158,C159", "VALUE:IIA" ], [ "T2", "N0", "M0", "9", "C150,C151,C153,C154", "VALUE:IIA" ], [ "T2", "N0", "M0", "9", "C152,C155,C158,C159", "VALUE:IB" ], [ "T2", "N1", "M0", "1", "*", "VALUE:IIB" ], [ "T2", "N1", "M0", "2", "*", "VALUE:IIB" ], [ "T2", "N1", "M0", "3", "*", "VALUE:IIB" ], [ "T2", "N1", "M0", "4", "*", "VALUE:IIB" ], [ "T2", "N1", "M0", "9", "*", "VALUE:IIB" ], [ "T2", "N2", "M0", "1", "*", "VALUE:IIIA" ], [ "T2", "N2", "M0", "2", "*", "VALUE:IIIA" ], [ "T2", "N2", "M0", "3", "*", "VALUE:IIIA" ], [ "T2", "N2", "M0", "4", "*", "VALUE:IIIA" ], [ "T2", "N2", "M0", "9", "*", "VALUE:IIIA" ], [ "T2", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T2", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T2", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T2", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T2", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T2", "NX", "M0", "1", "*", "VALUE:UNK" ], [ "T2", "NX", "M0", "2", "*", "VALUE:UNK" ], [ "T2", "NX", "M0", "3", "*", "VALUE:UNK" ], [ "T2", "NX", "M0", "4", "*", "VALUE:UNK" ], [ "T2", "NX", "M0", "9", "*", "VALUE:UNK" ], [ "T3", "N0", "M0", "1", "C150,C151,C153,C154", "VALUE:IIA" ], [ "T3", "N0", "M0", "1", "C152,C155,C158,C159", "VALUE:IB" ], [ "T3", "N0", "M0", "2", "C150,C151,C153,C154", "VALUE:IIB" ], [ "T3", "N0", "M0", "2", "C152,C155,C158,C159", "VALUE:IIA" ], [ "T3", "N0", "M0", "3", "C150,C151,C153,C154", "VALUE:IIB" ], [ "T3", "N0", "M0", "3", "C152,C155,C158,C159", "VALUE:IIA" ], [ "T3", "N0", "M0", "4", "C150,C151,C153,C154", "VALUE:IIB" ], [ "T3", "N0", "M0", "4", "C152,C155,C158,C159", "VALUE:IIA" ], [ "T3", "N0", "M0", "9", "C150,C151,C153,C154", "VALUE:IIA" ], [ "T3", "N0", "M0", "9", "C152,C155,C158,C159", "VALUE:IB" ], [ "T3", "N1", "M0", "1", "*", "VALUE:IIIA" ], [ "T3", "N1", "M0", "2", "*", "VALUE:IIIA" ], [ "T3", "N1", "M0", "3", "*", "VALUE:IIIA" ], [ "T3", "N1", "M0", "4", "*", "VALUE:IIIA" ], [ "T3", "N1", "M0", "9", "*", "VALUE:IIIA" ], [ "T3", "N2", "M0", "1", "*", "VALUE:IIIB" ], [ "T3", "N2", "M0", "2", "*", "VALUE:IIIB" ], [ "T3", "N2", "M0", "3", "*", "VALUE:IIIB" ], [ "T3", "N2", "M0", "4", "*", "VALUE:IIIB" ], [ "T3", "N2", "M0", "9", "*", "VALUE:IIIB" ], [ "T3", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T3", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T3", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T3", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T3", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T3", "NX", "M0", "1", "*", "VALUE:UNK" ], [ "T3", "NX", "M0", "2", "*", "VALUE:UNK" ], [ "T3", "NX", "M0", "3", "*", "VALUE:UNK" ], [ "T3", "NX", "M0", "4", "*", "VALUE:UNK" ], [ "T3", "NX", "M0", "9", "*", "VALUE:UNK" ], [ "T4a", "N0", "M0", "1", "*", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "2", "*", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "3", "*", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "4", "*", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "9", "*", "VALUE:IIIA" ], [ "T4a", "N1", "M0", "1", "*", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "2", "*", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "3", "*", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "4", "*", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "9", "*", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "1", "*", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "2", "*", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "3", "*", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "4", "*", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "9", "*", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T4a", "NX", "M0", "1", "*", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "2", "*", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "3", "*", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "4", "*", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "9", "*", "VALUE:IIINOS" ], [ "T4b", "N0", "M0", "1", "*", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "2", "*", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "3", "*", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "4", "*", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "9", "*", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "1", "*", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "2", "*", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "3", "*", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "4", "*", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "9", "*", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "1", "*", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "2", "*", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "3", "*", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "4", "*", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "9", "*", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "1", "*", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "2", "*", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "3", "*", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "4", "*", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "9", "*", "VALUE:IIIC" ], [ "T4NOS", "N0", "M0", "1", "*", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "2", "*", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "3", "*", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "4", "*", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "9", "*", "VALUE:IIIA" ], [ "T4NOS", "N1", "M0", "1", "*", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "2", "*", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "3", "*", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "4", "*", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "9", "*", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "1", "*", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "2", "*", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "3", "*", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "4", "*", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "9", "*", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "T4NOS", "NX", "M0", "1", "*", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "2", "*", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "3", "*", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "4", "*", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "9", "*", "VALUE:IIINOS" ], [ "TX", "N0", "M0", "1", "*", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "*", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "*", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "*", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "*", "VALUE:UNK" ], [ "TX", "N1", "M0", "1", "*", "VALUE:UNK" ], [ "TX", "N1", "M0", "2", "*", "VALUE:UNK" ], [ "TX", "N1", "M0", "3", "*", "VALUE:UNK" ], [ "TX", "N1", "M0", "4", "*", "VALUE:UNK" ], [ "TX", "N1", "M0", "9", "*", "VALUE:UNK" ], [ "TX", "N2", "M0", "1", "*", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "2", "*", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "3", "*", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "4", "*", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "9", "*", "VALUE:IIINOS" ], [ "TX", "N3", "M0", "1", "*", "VALUE:IIIC" ], [ "TX", "N3", "M0", "2", "*", "VALUE:IIIC" ], [ "TX", "N3", "M0", "3", "*", "VALUE:IIIC" ], [ "TX", "N3", "M0", "4", "*", "VALUE:IIIC" ], [ "TX", "N3", "M0", "9", "*", "VALUE:IIIC" ], [ "TX", "NX", "M0", "1", "*", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "*", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "*", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "*", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "*", "VALUE:UNK" ], [ "T0", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T0", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T0", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T0", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T0", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T0", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T0", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T0", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T0", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T0", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T0", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T0", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T0", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T0", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T0", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T0", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T0", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T0", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T0", "NX", "M1", "9", "*", "VALUE:IV" ], [ "Tis", "N0", "M1", "1", "*", "ERROR:" ], [ "Tis", "N0", "M1", "2", "*", "ERROR:" ], [ "Tis", "N0", "M1", "3", "*", "ERROR:" ], [ "Tis", "N0", "M1", "4", "*", "ERROR:" ], [ "Tis", "N0", "M1", "9", "*", "ERROR:" ], [ "Tis", "N1", "M1", "1", "*", "ERROR:" ], [ "Tis", "N1", "M1", "2", "*", "ERROR:" ], [ "Tis", "N1", "M1", "3", "*", "ERROR:" ], [ "Tis", "N1", "M1", "4", "*", "ERROR:" ], [ "Tis", "N1", "M1", "9", "*", "ERROR:" ], [ "Tis", "N2", "M1", "1", "*", "ERROR:" ], [ "Tis", "N2", "M1", "2", "*", "ERROR:" ], [ "Tis", "N2", "M1", "3", "*", "ERROR:" ], [ "Tis", "N2", "M1", "4", "*", "ERROR:" ], [ "Tis", "N2", "M1", "9", "*", "ERROR:" ], [ "Tis", "N3", "M1", "1", "*", "ERROR:" ], [ "Tis", "N3", "M1", "2", "*", "ERROR:" ], [ "Tis", "N3", "M1", "3", "*", "ERROR:" ], [ "Tis", "N3", "M1", "4", "*", "ERROR:" ], [ "Tis", "N3", "M1", "9", "*", "ERROR:" ], [ "Tis", "NX", "M1", "1", "*", "ERROR:" ], [ "Tis", "NX", "M1", "2", "*", "ERROR:" ], [ "Tis", "NX", "M1", "3", "*", "ERROR:" ], [ "Tis", "NX", "M1", "4", "*", "ERROR:" ], [ "Tis", "NX", "M1", "9", "*", "ERROR:" ], [ "T1a", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T1a", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T1a", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T1a", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T1a", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T1a", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T1a", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T1a", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T1a", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T1a", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T1a", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T1a", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T1a", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T1a", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T1a", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T1a", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T1a", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T1a", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T1a", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T1a", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T1a", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T1a", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T1a", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T1a", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T1a", "NX", "M1", "9", "*", "VALUE:IV" ], [ "T1b", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T1b", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T1b", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T1b", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T1b", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T1b", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T1b", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T1b", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T1b", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T1b", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T1b", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T1b", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T1b", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T1b", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T1b", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T1b", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T1b", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T1b", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T1b", "NX", "M1", "9", "*", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "9", "*", "VALUE:IV" ], [ "T2", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T2", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T2", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T2", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T2", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T2", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T2", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T2", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T2", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T2", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T2", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T2", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T2", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T2", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T2", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T2", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T2", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T2", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T2", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T2", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T2", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T2", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T2", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T2", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T2", "NX", "M1", "9", "*", "VALUE:IV" ], [ "T3", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T3", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T3", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T3", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T3", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T3", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T3", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T3", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T3", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T3", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T3", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T3", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T3", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T3", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T3", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T3", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T3", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T3", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T3", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T3", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T3", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T3", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T3", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T3", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T3", "NX", "M1", "9", "*", "VALUE:IV" ], [ "T4a", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T4a", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T4a", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T4a", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T4a", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T4a", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T4a", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T4a", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T4a", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T4a", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T4a", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T4a", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T4a", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T4a", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T4a", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T4a", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T4a", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T4a", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T4a", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T4a", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T4a", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T4a", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T4a", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T4a", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T4a", "NX", "M1", "9", "*", "VALUE:IV" ], [ "T4b", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T4b", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T4b", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T4b", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T4b", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T4b", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T4b", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T4b", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T4b", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T4b", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T4b", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T4b", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T4b", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T4b", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T4b", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T4b", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T4b", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T4b", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T4b", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T4b", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T4b", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T4b", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T4b", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T4b", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T4b", "NX", "M1", "9", "*", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "1", "*", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "2", "*", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "3", "*", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "4", "*", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "9", "*", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "1", "*", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "2", "*", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "3", "*", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "4", "*", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "9", "*", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "1", "*", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "2", "*", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "3", "*", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "4", "*", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "9", "*", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "1", "*", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "2", "*", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "3", "*", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "4", "*", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "9", "*", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "1", "*", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "2", "*", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "3", "*", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "4", "*", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "9", "*", "VALUE:IV" ], [ "TX", "N0", "M1", "1", "*", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "*", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "*", "VALUE:IV" ], [ "TX", "N0", "M1", "4", "*", "VALUE:IV" ], [ "TX", "N0", "M1", "9", "*", "VALUE:IV" ], [ "TX", "N1", "M1", "1", "*", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "*", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "*", "VALUE:IV" ], [ "TX", "N1", "M1", "4", "*", "VALUE:IV" ], [ "TX", "N1", "M1", "9", "*", "VALUE:IV" ], [ "TX", "N2", "M1", "1", "*", "VALUE:IV" ], [ "TX", "N2", "M1", "2", "*", "VALUE:IV" ], [ "TX", "N2", "M1", "3", "*", "VALUE:IV" ], [ "TX", "N2", "M1", "4", "*", "VALUE:IV" ], [ "TX", "N2", "M1", "9", "*", "VALUE:IV" ], [ "TX", "N3", "M1", "1", "*", "VALUE:IV" ], [ "TX", "N3", "M1", "2", "*", "VALUE:IV" ], [ "TX", "N3", "M1", "3", "*", "VALUE:IV" ], [ "TX", "N3", "M1", "4", "*", "VALUE:IV" ], [ "TX", "N3", "M1", "9", "*", "VALUE:IV" ], [ "TX", "NX", "M1", "1", "*", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "*", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "*", "VALUE:IV" ], [ "TX", "NX", "M1", "4", "*", "VALUE:IV" ], [ "TX", "NX", "M1", "9", "*", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_squamous_xia.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_squamous_xia.json
deleted file mode 100644
index 54686e932..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_squamous_xia.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "id" : "ajcctnm7_stage_squamous_xia",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage Squamous",
- "title" : "AJCC TNM 7 Stage Squamous",
- "last_modified" : "2015-05-27T16:19:01.549Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "1", "ERROR:" ], [ "T0", "N0", "M0", "2", "ERROR:" ], [ "T0", "N0", "M0", "3", "ERROR:" ], [ "T0", "N0", "M0", "4", "ERROR:" ], [ "T0", "N0", "M0", "9", "ERROR:" ], [ "T0", "N0", "M1", "1", "VALUE:IV" ], [ "T0", "N0", "M1", "2", "VALUE:IV" ], [ "T0", "N0", "M1", "3", "VALUE:IV" ], [ "T0", "N0", "M1", "4", "VALUE:IV" ], [ "T0", "N0", "M1", "9", "VALUE:IV" ], [ "T0", "N1", "M0", "1", "VALUE:UNK" ], [ "T0", "N1", "M0", "2", "VALUE:UNK" ], [ "T0", "N1", "M0", "3", "VALUE:UNK" ], [ "T0", "N1", "M0", "4", "VALUE:UNK" ], [ "T0", "N1", "M0", "9", "VALUE:UNK" ], [ "T0", "N1", "M1", "1", "VALUE:IV" ], [ "T0", "N1", "M1", "2", "VALUE:IV" ], [ "T0", "N1", "M1", "3", "VALUE:IV" ], [ "T0", "N1", "M1", "4", "VALUE:IV" ], [ "T0", "N1", "M1", "9", "VALUE:IV" ], [ "T0", "N2", "M0", "1", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "2", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "3", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "4", "VALUE:IIINOS" ], [ "T0", "N2", "M0", "9", "VALUE:IIINOS" ], [ "T0", "N2", "M1", "1", "VALUE:IV" ], [ "T0", "N2", "M1", "2", "VALUE:IV" ], [ "T0", "N2", "M1", "3", "VALUE:IV" ], [ "T0", "N2", "M1", "4", "VALUE:IV" ], [ "T0", "N2", "M1", "9", "VALUE:IV" ], [ "T0", "N3", "M0", "1", "VALUE:IIIC" ], [ "T0", "N3", "M0", "2", "VALUE:IIIC" ], [ "T0", "N3", "M0", "3", "VALUE:IIIC" ], [ "T0", "N3", "M0", "4", "VALUE:IIIC" ], [ "T0", "N3", "M0", "9", "VALUE:IIIC" ], [ "T0", "N3", "M1", "1", "VALUE:IV" ], [ "T0", "N3", "M1", "2", "VALUE:IV" ], [ "T0", "N3", "M1", "3", "VALUE:IV" ], [ "T0", "N3", "M1", "4", "VALUE:IV" ], [ "T0", "N3", "M1", "9", "VALUE:IV" ], [ "T0", "NX", "M0", "1", "VALUE:UNK" ], [ "T0", "NX", "M0", "2", "VALUE:UNK" ], [ "T0", "NX", "M0", "3", "VALUE:UNK" ], [ "T0", "NX", "M0", "4", "VALUE:UNK" ], [ "T0", "NX", "M0", "9", "VALUE:UNK" ], [ "T0", "NX", "M1", "1", "VALUE:IV" ], [ "T0", "NX", "M1", "2", "VALUE:IV" ], [ "T0", "NX", "M1", "3", "VALUE:IV" ], [ "T0", "NX", "M1", "4", "VALUE:IV" ], [ "T0", "NX", "M1", "9", "VALUE:IV" ], [ "T1a", "N0", "M0", "1", "VALUE:IA" ], [ "T1a", "N0", "M0", "2", "VALUE:IB" ], [ "T1a", "N0", "M0", "3", "VALUE:IB" ], [ "T1a", "N0", "M0", "4", "VALUE:IB" ], [ "T1a", "N0", "M0", "9", "VALUE:IA" ], [ "T1a", "N0", "M1", "1", "VALUE:IV" ], [ "T1a", "N0", "M1", "2", "VALUE:IV" ], [ "T1a", "N0", "M1", "3", "VALUE:IV" ], [ "T1a", "N0", "M1", "4", "VALUE:IV" ], [ "T1a", "N0", "M1", "9", "VALUE:IV" ], [ "T1a", "N1", "M0", "1", "VALUE:IIB" ], [ "T1a", "N1", "M0", "2", "VALUE:IIB" ], [ "T1a", "N1", "M0", "3", "VALUE:IIB" ], [ "T1a", "N1", "M0", "4", "VALUE:IIB" ], [ "T1a", "N1", "M0", "9", "VALUE:IIB" ], [ "T1a", "N1", "M1", "1", "VALUE:IV" ], [ "T1a", "N1", "M1", "2", "VALUE:IV" ], [ "T1a", "N1", "M1", "3", "VALUE:IV" ], [ "T1a", "N1", "M1", "4", "VALUE:IV" ], [ "T1a", "N1", "M1", "9", "VALUE:IV" ], [ "T1a", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1a", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1a", "N2", "M1", "1", "VALUE:IV" ], [ "T1a", "N2", "M1", "2", "VALUE:IV" ], [ "T1a", "N2", "M1", "3", "VALUE:IV" ], [ "T1a", "N2", "M1", "4", "VALUE:IV" ], [ "T1a", "N2", "M1", "9", "VALUE:IV" ], [ "T1a", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1a", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1a", "N3", "M1", "1", "VALUE:IV" ], [ "T1a", "N3", "M1", "2", "VALUE:IV" ], [ "T1a", "N3", "M1", "3", "VALUE:IV" ], [ "T1a", "N3", "M1", "4", "VALUE:IV" ], [ "T1a", "N3", "M1", "9", "VALUE:IV" ], [ "T1a", "NX", "M0", "1", "VALUE:UNK" ], [ "T1a", "NX", "M0", "2", "VALUE:UNK" ], [ "T1a", "NX", "M0", "3", "VALUE:UNK" ], [ "T1a", "NX", "M0", "4", "VALUE:UNK" ], [ "T1a", "NX", "M0", "9", "VALUE:UNK" ], [ "T1a", "NX", "M1", "1", "VALUE:IV" ], [ "T1a", "NX", "M1", "2", "VALUE:IV" ], [ "T1a", "NX", "M1", "3", "VALUE:IV" ], [ "T1a", "NX", "M1", "4", "VALUE:IV" ], [ "T1a", "NX", "M1", "9", "VALUE:IV" ], [ "T1b", "N0", "M0", "1", "VALUE:IA" ], [ "T1b", "N0", "M0", "2", "VALUE:IB" ], [ "T1b", "N0", "M0", "3", "VALUE:IB" ], [ "T1b", "N0", "M0", "4", "VALUE:IB" ], [ "T1b", "N0", "M0", "9", "VALUE:IA" ], [ "T1b", "N0", "M1", "1", "VALUE:IV" ], [ "T1b", "N0", "M1", "2", "VALUE:IV" ], [ "T1b", "N0", "M1", "3", "VALUE:IV" ], [ "T1b", "N0", "M1", "4", "VALUE:IV" ], [ "T1b", "N0", "M1", "9", "VALUE:IV" ], [ "T1b", "N1", "M0", "1", "VALUE:IIB" ], [ "T1b", "N1", "M0", "2", "VALUE:IIB" ], [ "T1b", "N1", "M0", "3", "VALUE:IIB" ], [ "T1b", "N1", "M0", "4", "VALUE:IIB" ], [ "T1b", "N1", "M0", "9", "VALUE:IIB" ], [ "T1b", "N1", "M1", "1", "VALUE:IV" ], [ "T1b", "N1", "M1", "2", "VALUE:IV" ], [ "T1b", "N1", "M1", "3", "VALUE:IV" ], [ "T1b", "N1", "M1", "4", "VALUE:IV" ], [ "T1b", "N1", "M1", "9", "VALUE:IV" ], [ "T1b", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1b", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1b", "N2", "M1", "1", "VALUE:IV" ], [ "T1b", "N2", "M1", "2", "VALUE:IV" ], [ "T1b", "N2", "M1", "3", "VALUE:IV" ], [ "T1b", "N2", "M1", "4", "VALUE:IV" ], [ "T1b", "N2", "M1", "9", "VALUE:IV" ], [ "T1b", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1b", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1b", "N3", "M1", "1", "VALUE:IV" ], [ "T1b", "N3", "M1", "2", "VALUE:IV" ], [ "T1b", "N3", "M1", "3", "VALUE:IV" ], [ "T1b", "N3", "M1", "4", "VALUE:IV" ], [ "T1b", "N3", "M1", "9", "VALUE:IV" ], [ "T1b", "NX", "M0", "1", "VALUE:UNK" ], [ "T1b", "NX", "M0", "2", "VALUE:UNK" ], [ "T1b", "NX", "M0", "3", "VALUE:UNK" ], [ "T1b", "NX", "M0", "4", "VALUE:UNK" ], [ "T1b", "NX", "M0", "9", "VALUE:UNK" ], [ "T1b", "NX", "M1", "1", "VALUE:IV" ], [ "T1b", "NX", "M1", "2", "VALUE:IV" ], [ "T1b", "NX", "M1", "3", "VALUE:IV" ], [ "T1b", "NX", "M1", "4", "VALUE:IV" ], [ "T1b", "NX", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N0", "M0", "1", "VALUE:IA" ], [ "T1NOS", "N0", "M0", "2", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "3", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "4", "VALUE:IB" ], [ "T1NOS", "N0", "M0", "9", "VALUE:IA" ], [ "T1NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N1", "M0", "1", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "2", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "3", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "4", "VALUE:IIB" ], [ "T1NOS", "N1", "M0", "9", "VALUE:IIB" ], [ "T1NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N2", "M0", "1", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "2", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "3", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "4", "VALUE:IIIA" ], [ "T1NOS", "N2", "M0", "9", "VALUE:IIIA" ], [ "T1NOS", "N2", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N2", "M1", "9", "VALUE:IV" ], [ "T1NOS", "N3", "M0", "1", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "2", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "3", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "4", "VALUE:IIIC" ], [ "T1NOS", "N3", "M0", "9", "VALUE:IIIC" ], [ "T1NOS", "N3", "M1", "1", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "2", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "3", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "4", "VALUE:IV" ], [ "T1NOS", "N3", "M1", "9", "VALUE:IV" ], [ "T1NOS", "NX", "M0", "1", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "2", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "3", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "4", "VALUE:UNK" ], [ "T1NOS", "NX", "M0", "9", "VALUE:UNK" ], [ "T1NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T1NOS", "NX", "M1", "9", "VALUE:IV" ], [ "T2", "N0", "M0", "1", "VALUE:IB" ], [ "T2", "N0", "M0", "2", "VALUE:IIA" ], [ "T2", "N0", "M0", "3", "VALUE:IIA" ], [ "T2", "N0", "M0", "4", "VALUE:IIA" ], [ "T2", "N0", "M0", "9", "VALUE:IB" ], [ "T2", "N0", "M1", "1", "VALUE:IV" ], [ "T2", "N0", "M1", "2", "VALUE:IV" ], [ "T2", "N0", "M1", "3", "VALUE:IV" ], [ "T2", "N0", "M1", "4", "VALUE:IV" ], [ "T2", "N0", "M1", "9", "VALUE:IV" ], [ "T2", "N1", "M0", "1", "VALUE:IIB" ], [ "T2", "N1", "M0", "2", "VALUE:IIB" ], [ "T2", "N1", "M0", "3", "VALUE:IIB" ], [ "T2", "N1", "M0", "4", "VALUE:IIB" ], [ "T2", "N1", "M0", "9", "VALUE:IIB" ], [ "T2", "N1", "M1", "1", "VALUE:IV" ], [ "T2", "N1", "M1", "2", "VALUE:IV" ], [ "T2", "N1", "M1", "3", "VALUE:IV" ], [ "T2", "N1", "M1", "4", "VALUE:IV" ], [ "T2", "N1", "M1", "9", "VALUE:IV" ], [ "T2", "N2", "M0", "1", "VALUE:IIIA" ], [ "T2", "N2", "M0", "2", "VALUE:IIIA" ], [ "T2", "N2", "M0", "3", "VALUE:IIIA" ], [ "T2", "N2", "M0", "4", "VALUE:IIIA" ], [ "T2", "N2", "M0", "9", "VALUE:IIIA" ], [ "T2", "N2", "M1", "1", "VALUE:IV" ], [ "T2", "N2", "M1", "2", "VALUE:IV" ], [ "T2", "N2", "M1", "3", "VALUE:IV" ], [ "T2", "N2", "M1", "4", "VALUE:IV" ], [ "T2", "N2", "M1", "9", "VALUE:IV" ], [ "T2", "N3", "M0", "1", "VALUE:IIIC" ], [ "T2", "N3", "M0", "2", "VALUE:IIIC" ], [ "T2", "N3", "M0", "3", "VALUE:IIIC" ], [ "T2", "N3", "M0", "4", "VALUE:IIIC" ], [ "T2", "N3", "M0", "9", "VALUE:IIIC" ], [ "T2", "N3", "M1", "1", "VALUE:IV" ], [ "T2", "N3", "M1", "2", "VALUE:IV" ], [ "T2", "N3", "M1", "3", "VALUE:IV" ], [ "T2", "N3", "M1", "4", "VALUE:IV" ], [ "T2", "N3", "M1", "9", "VALUE:IV" ], [ "T2", "NX", "M0", "1", "VALUE:UNK" ], [ "T2", "NX", "M0", "2", "VALUE:UNK" ], [ "T2", "NX", "M0", "3", "VALUE:UNK" ], [ "T2", "NX", "M0", "4", "VALUE:UNK" ], [ "T2", "NX", "M0", "9", "VALUE:UNK" ], [ "T2", "NX", "M1", "1", "VALUE:IV" ], [ "T2", "NX", "M1", "2", "VALUE:IV" ], [ "T2", "NX", "M1", "3", "VALUE:IV" ], [ "T2", "NX", "M1", "4", "VALUE:IV" ], [ "T2", "NX", "M1", "9", "VALUE:IV" ], [ "T3", "N0", "M0", "1", "VALUE:IB" ], [ "T3", "N0", "M0", "2", "VALUE:IIA" ], [ "T3", "N0", "M0", "3", "VALUE:IIA" ], [ "T3", "N0", "M0", "4", "VALUE:IIA" ], [ "T3", "N0", "M0", "9", "VALUE:IB" ], [ "T3", "N0", "M1", "1", "VALUE:IV" ], [ "T3", "N0", "M1", "2", "VALUE:IV" ], [ "T3", "N0", "M1", "3", "VALUE:IV" ], [ "T3", "N0", "M1", "4", "VALUE:IV" ], [ "T3", "N0", "M1", "9", "VALUE:IV" ], [ "T3", "N1", "M0", "1", "VALUE:IIIA" ], [ "T3", "N1", "M0", "2", "VALUE:IIIA" ], [ "T3", "N1", "M0", "3", "VALUE:IIIA" ], [ "T3", "N1", "M0", "4", "VALUE:IIIA" ], [ "T3", "N1", "M0", "9", "VALUE:IIIA" ], [ "T3", "N1", "M1", "1", "VALUE:IV" ], [ "T3", "N1", "M1", "2", "VALUE:IV" ], [ "T3", "N1", "M1", "3", "VALUE:IV" ], [ "T3", "N1", "M1", "4", "VALUE:IV" ], [ "T3", "N1", "M1", "9", "VALUE:IV" ], [ "T3", "N2", "M0", "1", "VALUE:IIIB" ], [ "T3", "N2", "M0", "2", "VALUE:IIIB" ], [ "T3", "N2", "M0", "3", "VALUE:IIIB" ], [ "T3", "N2", "M0", "4", "VALUE:IIIB" ], [ "T3", "N2", "M0", "9", "VALUE:IIIB" ], [ "T3", "N2", "M1", "1", "VALUE:IV" ], [ "T3", "N2", "M1", "2", "VALUE:IV" ], [ "T3", "N2", "M1", "3", "VALUE:IV" ], [ "T3", "N2", "M1", "4", "VALUE:IV" ], [ "T3", "N2", "M1", "9", "VALUE:IV" ], [ "T3", "N3", "M0", "1", "VALUE:IIIC" ], [ "T3", "N3", "M0", "2", "VALUE:IIIC" ], [ "T3", "N3", "M0", "3", "VALUE:IIIC" ], [ "T3", "N3", "M0", "4", "VALUE:IIIC" ], [ "T3", "N3", "M0", "9", "VALUE:IIIC" ], [ "T3", "N3", "M1", "1", "VALUE:IV" ], [ "T3", "N3", "M1", "2", "VALUE:IV" ], [ "T3", "N3", "M1", "3", "VALUE:IV" ], [ "T3", "N3", "M1", "4", "VALUE:IV" ], [ "T3", "N3", "M1", "9", "VALUE:IV" ], [ "T3", "NX", "M0", "1", "VALUE:UNK" ], [ "T3", "NX", "M0", "2", "VALUE:UNK" ], [ "T3", "NX", "M0", "3", "VALUE:UNK" ], [ "T3", "NX", "M0", "4", "VALUE:UNK" ], [ "T3", "NX", "M0", "9", "VALUE:UNK" ], [ "T3", "NX", "M1", "1", "VALUE:IV" ], [ "T3", "NX", "M1", "2", "VALUE:IV" ], [ "T3", "NX", "M1", "3", "VALUE:IV" ], [ "T3", "NX", "M1", "4", "VALUE:IV" ], [ "T3", "NX", "M1", "9", "VALUE:IV" ], [ "T4a", "N0", "M0", "1", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "2", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "3", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "4", "VALUE:IIIA" ], [ "T4a", "N0", "M0", "9", "VALUE:IIIA" ], [ "T4a", "N0", "M1", "1", "VALUE:IV" ], [ "T4a", "N0", "M1", "2", "VALUE:IV" ], [ "T4a", "N0", "M1", "3", "VALUE:IV" ], [ "T4a", "N0", "M1", "4", "VALUE:IV" ], [ "T4a", "N0", "M1", "9", "VALUE:IV" ], [ "T4a", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N1", "M1", "1", "VALUE:IV" ], [ "T4a", "N1", "M1", "2", "VALUE:IV" ], [ "T4a", "N1", "M1", "3", "VALUE:IV" ], [ "T4a", "N1", "M1", "4", "VALUE:IV" ], [ "T4a", "N1", "M1", "9", "VALUE:IV" ], [ "T4a", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N2", "M1", "1", "VALUE:IV" ], [ "T4a", "N2", "M1", "2", "VALUE:IV" ], [ "T4a", "N2", "M1", "3", "VALUE:IV" ], [ "T4a", "N2", "M1", "4", "VALUE:IV" ], [ "T4a", "N2", "M1", "9", "VALUE:IV" ], [ "T4a", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4a", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4a", "N3", "M1", "1", "VALUE:IV" ], [ "T4a", "N3", "M1", "2", "VALUE:IV" ], [ "T4a", "N3", "M1", "3", "VALUE:IV" ], [ "T4a", "N3", "M1", "4", "VALUE:IV" ], [ "T4a", "N3", "M1", "9", "VALUE:IV" ], [ "T4a", "NX", "M0", "1", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "2", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "3", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "4", "VALUE:IIINOS" ], [ "T4a", "NX", "M0", "9", "VALUE:IIINOS" ], [ "T4a", "NX", "M1", "1", "VALUE:IV" ], [ "T4a", "NX", "M1", "2", "VALUE:IV" ], [ "T4a", "NX", "M1", "3", "VALUE:IV" ], [ "T4a", "NX", "M1", "4", "VALUE:IV" ], [ "T4a", "NX", "M1", "9", "VALUE:IV" ], [ "T4b", "N0", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N0", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N0", "M1", "1", "VALUE:IV" ], [ "T4b", "N0", "M1", "2", "VALUE:IV" ], [ "T4b", "N0", "M1", "3", "VALUE:IV" ], [ "T4b", "N0", "M1", "4", "VALUE:IV" ], [ "T4b", "N0", "M1", "9", "VALUE:IV" ], [ "T4b", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N1", "M1", "1", "VALUE:IV" ], [ "T4b", "N1", "M1", "2", "VALUE:IV" ], [ "T4b", "N1", "M1", "3", "VALUE:IV" ], [ "T4b", "N1", "M1", "4", "VALUE:IV" ], [ "T4b", "N1", "M1", "9", "VALUE:IV" ], [ "T4b", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N2", "M1", "1", "VALUE:IV" ], [ "T4b", "N2", "M1", "2", "VALUE:IV" ], [ "T4b", "N2", "M1", "3", "VALUE:IV" ], [ "T4b", "N2", "M1", "4", "VALUE:IV" ], [ "T4b", "N2", "M1", "9", "VALUE:IV" ], [ "T4b", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4b", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4b", "N3", "M1", "1", "VALUE:IV" ], [ "T4b", "N3", "M1", "2", "VALUE:IV" ], [ "T4b", "N3", "M1", "3", "VALUE:IV" ], [ "T4b", "N3", "M1", "4", "VALUE:IV" ], [ "T4b", "N3", "M1", "9", "VALUE:IV" ], [ "T4b", "NX", "M0", "1", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "2", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "3", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "4", "VALUE:IIIC" ], [ "T4b", "NX", "M0", "9", "VALUE:IIIC" ], [ "T4b", "NX", "M1", "1", "VALUE:IV" ], [ "T4b", "NX", "M1", "2", "VALUE:IV" ], [ "T4b", "NX", "M1", "3", "VALUE:IV" ], [ "T4b", "NX", "M1", "4", "VALUE:IV" ], [ "T4b", "NX", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N0", "M0", "1", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "2", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "3", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "4", "VALUE:IIIA" ], [ "T4NOS", "N0", "M0", "9", "VALUE:IIIA" ], [ "T4NOS", "N0", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N0", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N1", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N1", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N1", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N1", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N2", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N2", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N2", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N2", "M1", "9", "VALUE:IV" ], [ "T4NOS", "N3", "M0", "1", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "2", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "3", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "4", "VALUE:IIIC" ], [ "T4NOS", "N3", "M0", "9", "VALUE:IIIC" ], [ "T4NOS", "N3", "M1", "1", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "2", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "3", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "4", "VALUE:IV" ], [ "T4NOS", "N3", "M1", "9", "VALUE:IV" ], [ "T4NOS", "NX", "M0", "1", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "2", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "3", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "4", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M0", "9", "VALUE:IIINOS" ], [ "T4NOS", "NX", "M1", "1", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "2", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "3", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "4", "VALUE:IV" ], [ "T4NOS", "NX", "M1", "9", "VALUE:IV" ], [ "Tis", "N0", "M0", "1", "VALUE:0" ], [ "Tis", "N0", "M0", "2", "ERROR:" ], [ "Tis", "N0", "M0", "3", "ERROR:" ], [ "Tis", "N0", "M0", "4", "ERROR:" ], [ "Tis", "N0", "M0", "9", "VALUE:0" ], [ "Tis", "N0", "M1", "1", "ERROR:" ], [ "Tis", "N0", "M1", "2", "ERROR:" ], [ "Tis", "N0", "M1", "3", "ERROR:" ], [ "Tis", "N0", "M1", "4", "ERROR:" ], [ "Tis", "N0", "M1", "9", "ERROR:" ], [ "Tis", "N1", "M0", "1", "ERROR:" ], [ "Tis", "N1", "M0", "2", "ERROR:" ], [ "Tis", "N1", "M0", "3", "ERROR:" ], [ "Tis", "N1", "M0", "4", "ERROR:" ], [ "Tis", "N1", "M0", "9", "ERROR:" ], [ "Tis", "N1", "M1", "1", "ERROR:" ], [ "Tis", "N1", "M1", "2", "ERROR:" ], [ "Tis", "N1", "M1", "3", "ERROR:" ], [ "Tis", "N1", "M1", "4", "ERROR:" ], [ "Tis", "N1", "M1", "9", "ERROR:" ], [ "Tis", "N2", "M0", "1", "ERROR:" ], [ "Tis", "N2", "M0", "2", "ERROR:" ], [ "Tis", "N2", "M0", "3", "ERROR:" ], [ "Tis", "N2", "M0", "4", "ERROR:" ], [ "Tis", "N2", "M0", "9", "ERROR:" ], [ "Tis", "N2", "M1", "1", "ERROR:" ], [ "Tis", "N2", "M1", "2", "ERROR:" ], [ "Tis", "N2", "M1", "3", "ERROR:" ], [ "Tis", "N2", "M1", "4", "ERROR:" ], [ "Tis", "N2", "M1", "9", "ERROR:" ], [ "Tis", "N3", "M0", "1", "ERROR:" ], [ "Tis", "N3", "M0", "2", "ERROR:" ], [ "Tis", "N3", "M0", "3", "ERROR:" ], [ "Tis", "N3", "M0", "4", "ERROR:" ], [ "Tis", "N3", "M0", "9", "ERROR:" ], [ "Tis", "N3", "M1", "1", "ERROR:" ], [ "Tis", "N3", "M1", "2", "ERROR:" ], [ "Tis", "N3", "M1", "3", "ERROR:" ], [ "Tis", "N3", "M1", "4", "ERROR:" ], [ "Tis", "N3", "M1", "9", "ERROR:" ], [ "Tis", "NX", "M0", "1", "VALUE:0" ], [ "Tis", "NX", "M0", "2", "ERROR:" ], [ "Tis", "NX", "M0", "3", "ERROR:" ], [ "Tis", "NX", "M0", "4", "ERROR:" ], [ "Tis", "NX", "M0", "9", "VALUE:0" ], [ "Tis", "NX", "M1", "1", "ERROR:" ], [ "Tis", "NX", "M1", "2", "ERROR:" ], [ "Tis", "NX", "M1", "3", "ERROR:" ], [ "Tis", "NX", "M1", "4", "ERROR:" ], [ "Tis", "NX", "M1", "9", "ERROR:" ], [ "TX", "N0", "M0", "1", "VALUE:UNK" ], [ "TX", "N0", "M0", "2", "VALUE:UNK" ], [ "TX", "N0", "M0", "3", "VALUE:UNK" ], [ "TX", "N0", "M0", "4", "VALUE:UNK" ], [ "TX", "N0", "M0", "9", "VALUE:UNK" ], [ "TX", "N0", "M1", "1", "VALUE:IV" ], [ "TX", "N0", "M1", "2", "VALUE:IV" ], [ "TX", "N0", "M1", "3", "VALUE:IV" ], [ "TX", "N0", "M1", "4", "VALUE:IV" ], [ "TX", "N0", "M1", "9", "VALUE:IV" ], [ "TX", "N1", "M0", "1", "VALUE:UNK" ], [ "TX", "N1", "M0", "2", "VALUE:UNK" ], [ "TX", "N1", "M0", "3", "VALUE:UNK" ], [ "TX", "N1", "M0", "4", "VALUE:UNK" ], [ "TX", "N1", "M0", "9", "VALUE:UNK" ], [ "TX", "N1", "M1", "1", "VALUE:IV" ], [ "TX", "N1", "M1", "2", "VALUE:IV" ], [ "TX", "N1", "M1", "3", "VALUE:IV" ], [ "TX", "N1", "M1", "4", "VALUE:IV" ], [ "TX", "N1", "M1", "9", "VALUE:IV" ], [ "TX", "N2", "M0", "1", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "2", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "3", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "4", "VALUE:IIINOS" ], [ "TX", "N2", "M0", "9", "VALUE:IIINOS" ], [ "TX", "N2", "M1", "1", "VALUE:IV" ], [ "TX", "N2", "M1", "2", "VALUE:IV" ], [ "TX", "N2", "M1", "3", "VALUE:IV" ], [ "TX", "N2", "M1", "4", "VALUE:IV" ], [ "TX", "N2", "M1", "9", "VALUE:IV" ], [ "TX", "N3", "M0", "1", "VALUE:IIIC" ], [ "TX", "N3", "M0", "2", "VALUE:IIIC" ], [ "TX", "N3", "M0", "3", "VALUE:IIIC" ], [ "TX", "N3", "M0", "4", "VALUE:IIIC" ], [ "TX", "N3", "M0", "9", "VALUE:IIIC" ], [ "TX", "N3", "M1", "1", "VALUE:IV" ], [ "TX", "N3", "M1", "2", "VALUE:IV" ], [ "TX", "N3", "M1", "3", "VALUE:IV" ], [ "TX", "N3", "M1", "4", "VALUE:IV" ], [ "TX", "N3", "M1", "9", "VALUE:IV" ], [ "TX", "NX", "M0", "1", "VALUE:UNK" ], [ "TX", "NX", "M0", "2", "VALUE:UNK" ], [ "TX", "NX", "M0", "3", "VALUE:UNK" ], [ "TX", "NX", "M0", "4", "VALUE:UNK" ], [ "TX", "NX", "M0", "9", "VALUE:UNK" ], [ "TX", "NX", "M1", "1", "VALUE:IV" ], [ "TX", "NX", "M1", "2", "VALUE:IV" ], [ "TX", "NX", "M1", "3", "VALUE:IV" ], [ "TX", "NX", "M1", "4", "VALUE:IV" ], [ "TX", "NX", "M1", "9", "VALUE:IV" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_anaplastic_xdz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_anaplastic_xdz.json
deleted file mode 100644
index e7d65b839..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_anaplastic_xdz.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcctnm7_stage_thyroid_anaplastic_xdz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage Thyroid Anaplastic",
- "title" : "AJCC TNM 7 Stage-Thyroid: Anaplastic",
- "last_modified" : "2015-05-27T16:19:01.664Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_stage",
- "name" : "Stage Table 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1a", "M0", "VALUE:IVA" ], [ "T4a", "N1a", "M1", "VALUE:IVC" ], [ "T4a", "N1b", "M0", "VALUE:IVA" ], [ "T4a", "N1b", "M1", "VALUE:IVC" ], [ "T4a", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M0", "VALUE:IVA" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4a(m)", "N0", "M0", "VALUE:IVA" ], [ "T4a(m)", "N0", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1a", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1b", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a(m)", "NX", "M0", "VALUE:IVA" ], [ "T4a(m)", "NX", "M1", "VALUE:IVC" ], [ "T4a(s)", "N0", "M0", "VALUE:IVA" ], [ "T4a(s)", "N0", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1a", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1b", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a(s)", "NX", "M0", "VALUE:IVA" ], [ "T4a(s)", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1a", "M0", "VALUE:IVB" ], [ "T4b", "N1a", "M1", "VALUE:IVC" ], [ "T4b", "N1b", "M0", "VALUE:IVB" ], [ "T4b", "N1b", "M1", "VALUE:IVC" ], [ "T4b", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4b(m)", "N0", "M0", "VALUE:IVB" ], [ "T4b(m)", "N0", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1a", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1b", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b(m)", "NX", "M0", "VALUE:IVB" ], [ "T4b(m)", "NX", "M1", "VALUE:IVC" ], [ "T4b(s)", "N0", "M0", "VALUE:IVB" ], [ "T4b(s)", "N0", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1a", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1b", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b(s)", "NX", "M0", "VALUE:IVB" ], [ "T4b(s)", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N0", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "NX", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N0", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "NX", "M1", "VALUE:IVC" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_medullary_xdy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_medullary_xdy.json
deleted file mode 100644
index 83d35989b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_medullary_xdy.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcctnm7_stage_thyroid_medullary_xdy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage Thyroid Medullary",
- "title" : "AJCC TNM 7 Stage-Thyroid: Medullary",
- "last_modified" : "2015-05-27T16:19:01.728Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_stage",
- "name" : "Stage Table 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1a", "M0", "VALUE:UNK" ], [ "T0", "N1a", "M1", "VALUE:IVC" ], [ "T0", "N1b", "M0", "VALUE:IVA" ], [ "T0", "N1b", "M1", "VALUE:IVC" ], [ "T0", "N1NOS", "M0", "VALUE:UNK" ], [ "T0", "N1NOS", "M1", "VALUE:IVC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N0", "M1", "VALUE:IVC" ], [ "T1a", "N1a", "M0", "VALUE:III" ], [ "T1a", "N1a", "M1", "VALUE:IVC" ], [ "T1a", "N1b", "M0", "VALUE:IVA" ], [ "T1a", "N1b", "M1", "VALUE:IVC" ], [ "T1a", "N1NOS", "M0", "VALUE:UNK" ], [ "T1a", "N1NOS", "M1", "VALUE:IVC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1a", "NX", "M1", "VALUE:IVC" ], [ "T1a(m)", "N0", "M0", "VALUE:I" ], [ "T1a(m)", "N0", "M1", "VALUE:IVC" ], [ "T1a(m)", "N1a", "M0", "VALUE:III" ], [ "T1a(m)", "N1a", "M1", "VALUE:IVC" ], [ "T1a(m)", "N1b", "M0", "VALUE:IVA" ], [ "T1a(m)", "N1b", "M1", "VALUE:IVC" ], [ "T1a(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1a(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1a(m)", "NX", "M0", "VALUE:UNK" ], [ "T1a(m)", "NX", "M1", "VALUE:IVC" ], [ "T1a(s)", "N0", "M0", "VALUE:I" ], [ "T1a(s)", "N0", "M1", "VALUE:IVC" ], [ "T1a(s)", "N1a", "M0", "VALUE:III" ], [ "T1a(s)", "N1a", "M1", "VALUE:IVC" ], [ "T1a(s)", "N1b", "M0", "VALUE:IVA" ], [ "T1a(s)", "N1b", "M1", "VALUE:IVC" ], [ "T1a(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1a(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1a(s)", "NX", "M0", "VALUE:UNK" ], [ "T1a(s)", "NX", "M1", "VALUE:IVC" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N0", "M1", "VALUE:IVC" ], [ "T1b", "N1a", "M0", "VALUE:III" ], [ "T1b", "N1a", "M1", "VALUE:IVC" ], [ "T1b", "N1b", "M0", "VALUE:IVA" ], [ "T1b", "N1b", "M1", "VALUE:IVC" ], [ "T1b", "N1NOS", "M0", "VALUE:UNK" ], [ "T1b", "N1NOS", "M1", "VALUE:IVC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1b", "NX", "M1", "VALUE:IVC" ], [ "T1b(m)", "N0", "M0", "VALUE:I" ], [ "T1b(m)", "N0", "M1", "VALUE:IVC" ], [ "T1b(m)", "N1a", "M0", "VALUE:III" ], [ "T1b(m)", "N1a", "M1", "VALUE:IVC" ], [ "T1b(m)", "N1b", "M0", "VALUE:IVA" ], [ "T1b(m)", "N1b", "M1", "VALUE:IVC" ], [ "T1b(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1b(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1b(m)", "NX", "M0", "VALUE:UNK" ], [ "T1b(m)", "NX", "M1", "VALUE:IVC" ], [ "T1b(s)", "N0", "M0", "VALUE:I" ], [ "T1b(s)", "N0", "M1", "VALUE:IVC" ], [ "T1b(s)", "N1a", "M0", "VALUE:III" ], [ "T1b(s)", "N1a", "M1", "VALUE:IVC" ], [ "T1b(s)", "N1b", "M0", "VALUE:IVA" ], [ "T1b(s)", "N1b", "M1", "VALUE:IVC" ], [ "T1b(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1b(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1b(s)", "NX", "M0", "VALUE:UNK" ], [ "T1b(s)", "NX", "M1", "VALUE:IVC" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N0", "M1", "VALUE:IVC" ], [ "T1NOS", "N1a", "M0", "VALUE:III" ], [ "T1NOS", "N1a", "M1", "VALUE:IVC" ], [ "T1NOS", "N1b", "M0", "VALUE:IVA" ], [ "T1NOS", "N1b", "M1", "VALUE:IVC" ], [ "T1NOS", "N1NOS", "M0", "VALUE:UNK" ], [ "T1NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "NX", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N0", "M0", "VALUE:I" ], [ "T1NOS(m)", "N0", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N1a", "M0", "VALUE:III" ], [ "T1NOS(m)", "N1a", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N1b", "M0", "VALUE:IVA" ], [ "T1NOS(m)", "N1b", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1NOS(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "NX", "M0", "VALUE:UNK" ], [ "T1NOS(m)", "NX", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N0", "M0", "VALUE:I" ], [ "T1NOS(s)", "N0", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N1a", "M0", "VALUE:III" ], [ "T1NOS(s)", "N1a", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N1b", "M0", "VALUE:IVA" ], [ "T1NOS(s)", "N1b", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1NOS(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "NX", "M0", "VALUE:UNK" ], [ "T1NOS(s)", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1a", "M0", "VALUE:III" ], [ "T2", "N1a", "M1", "VALUE:IVC" ], [ "T2", "N1b", "M0", "VALUE:IVA" ], [ "T2", "N1b", "M1", "VALUE:IVC" ], [ "T2", "N1NOS", "M0", "VALUE:UNK" ], [ "T2", "N1NOS", "M1", "VALUE:IVC" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T2(m)", "N0", "M0", "VALUE:II" ], [ "T2(m)", "N0", "M1", "VALUE:IVC" ], [ "T2(m)", "N1a", "M0", "VALUE:III" ], [ "T2(m)", "N1a", "M1", "VALUE:IVC" ], [ "T2(m)", "N1b", "M0", "VALUE:IVA" ], [ "T2(m)", "N1b", "M1", "VALUE:IVC" ], [ "T2(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T2(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T2(m)", "NX", "M0", "VALUE:UNK" ], [ "T2(m)", "NX", "M1", "VALUE:IVC" ], [ "T2(s)", "N0", "M0", "VALUE:II" ], [ "T2(s)", "N0", "M1", "VALUE:IVC" ], [ "T2(s)", "N1a", "M0", "VALUE:III" ], [ "T2(s)", "N1a", "M1", "VALUE:IVC" ], [ "T2(s)", "N1b", "M0", "VALUE:IVA" ], [ "T2(s)", "N1b", "M1", "VALUE:IVC" ], [ "T2(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T2(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T2(s)", "NX", "M0", "VALUE:UNK" ], [ "T2(s)", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M0", "VALUE:II" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1a", "M0", "VALUE:III" ], [ "T3", "N1a", "M1", "VALUE:IVC" ], [ "T3", "N1b", "M0", "VALUE:IVA" ], [ "T3", "N1b", "M1", "VALUE:IVC" ], [ "T3", "N1NOS", "M0", "VALUE:UNK" ], [ "T3", "N1NOS", "M1", "VALUE:IVC" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T3(m)", "N0", "M0", "VALUE:II" ], [ "T3(m)", "N0", "M1", "VALUE:IVC" ], [ "T3(m)", "N1a", "M0", "VALUE:III" ], [ "T3(m)", "N1a", "M1", "VALUE:IVC" ], [ "T3(m)", "N1b", "M0", "VALUE:IVA" ], [ "T3(m)", "N1b", "M1", "VALUE:IVC" ], [ "T3(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T3(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T3(m)", "NX", "M0", "VALUE:UNK" ], [ "T3(m)", "NX", "M1", "VALUE:IVC" ], [ "T3(s)", "N0", "M0", "VALUE:II" ], [ "T3(s)", "N0", "M1", "VALUE:IVC" ], [ "T3(s)", "N1a", "M0", "VALUE:III" ], [ "T3(s)", "N1a", "M1", "VALUE:IVC" ], [ "T3(s)", "N1b", "M0", "VALUE:IVA" ], [ "T3(s)", "N1b", "M1", "VALUE:IVC" ], [ "T3(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T3(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T3(s)", "NX", "M0", "VALUE:UNK" ], [ "T3(s)", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1a", "M0", "VALUE:IVA" ], [ "T4a", "N1a", "M1", "VALUE:IVC" ], [ "T4a", "N1b", "M0", "VALUE:IVA" ], [ "T4a", "N1b", "M1", "VALUE:IVC" ], [ "T4a", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M0", "VALUE:IVA" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4a(m)", "N0", "M0", "VALUE:IVA" ], [ "T4a(m)", "N0", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1a", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1b", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a(m)", "NX", "M0", "VALUE:IVA" ], [ "T4a(m)", "NX", "M1", "VALUE:IVC" ], [ "T4a(s)", "N0", "M0", "VALUE:IVA" ], [ "T4a(s)", "N0", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1a", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1b", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a(s)", "NX", "M0", "VALUE:IVA" ], [ "T4a(s)", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1a", "M0", "VALUE:IVB" ], [ "T4b", "N1a", "M1", "VALUE:IVC" ], [ "T4b", "N1b", "M0", "VALUE:IVB" ], [ "T4b", "N1b", "M1", "VALUE:IVC" ], [ "T4b", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4b(m)", "N0", "M0", "VALUE:IVB" ], [ "T4b(m)", "N0", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1a", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1b", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b(m)", "NX", "M0", "VALUE:IVB" ], [ "T4b(m)", "NX", "M1", "VALUE:IVC" ], [ "T4b(s)", "N0", "M0", "VALUE:IVB" ], [ "T4b(s)", "N0", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1a", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1b", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b(s)", "NX", "M0", "VALUE:IVB" ], [ "T4b(s)", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N0", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "NX", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N0", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1a", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M1", "VALUE:IVC" ], [ "TX", "N1b", "M0", "VALUE:IVNOS" ], [ "TX", "N1b", "M1", "VALUE:IVC" ], [ "TX", "N1NOS", "M0", "VALUE:UNK" ], [ "TX", "N1NOS", "M1", "VALUE:IVC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "TX", "NX", "M1", "VALUE:IVC" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_papillaryand_follicular_age45and_older_xdx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_papillaryand_follicular_age45and_older_xdx.json
deleted file mode 100644
index ebdd16708..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ajcctnm7_stage_thyroid_papillaryand_follicular_age45and_older_xdx.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "ajcctnm7_stage_thyroid_papillaryand_follicular_age45and_older_xdx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "AJCC TNM7 Stage Thyroid Papillary and Follicular Age 45 and Older",
- "title" : "AJCC TNM 7 Stage-Thyroid: Papillary and Follicular Age 45 and Older",
- "last_modified" : "2015-05-27T16:19:01.805Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_stage",
- "name" : "Stage Table 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0", "N0", "M0", "ERROR:" ], [ "T0", "N0", "M1", "VALUE:IVC" ], [ "T0", "N1a", "M0", "VALUE:UNK" ], [ "T0", "N1a", "M1", "VALUE:IVC" ], [ "T0", "N1b", "M0", "VALUE:IVA" ], [ "T0", "N1b", "M1", "VALUE:IVC" ], [ "T0", "N1NOS", "M0", "VALUE:UNK" ], [ "T0", "N1NOS", "M1", "VALUE:IVC" ], [ "T0", "NX", "M0", "VALUE:UNK" ], [ "T0", "NX", "M1", "VALUE:IVC" ], [ "T1a", "N0", "M0", "VALUE:I" ], [ "T1a", "N0", "M1", "VALUE:IVC" ], [ "T1a", "N1a", "M0", "VALUE:III" ], [ "T1a", "N1a", "M1", "VALUE:IVC" ], [ "T1a", "N1b", "M0", "VALUE:IVA" ], [ "T1a", "N1b", "M1", "VALUE:IVC" ], [ "T1a", "N1NOS", "M0", "VALUE:UNK" ], [ "T1a", "N1NOS", "M1", "VALUE:IVC" ], [ "T1a", "NX", "M0", "VALUE:UNK" ], [ "T1a", "NX", "M1", "VALUE:IVC" ], [ "T1a(m)", "N0", "M0", "VALUE:I" ], [ "T1a(m)", "N0", "M1", "VALUE:IVC" ], [ "T1a(m)", "N1a", "M0", "VALUE:III" ], [ "T1a(m)", "N1a", "M1", "VALUE:IVC" ], [ "T1a(m)", "N1b", "M0", "VALUE:IVA" ], [ "T1a(m)", "N1b", "M1", "VALUE:IVC" ], [ "T1a(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1a(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1a(m)", "NX", "M0", "VALUE:UNK" ], [ "T1a(m)", "NX", "M1", "VALUE:IVC" ], [ "T1a(s)", "N0", "M0", "VALUE:I" ], [ "T1a(s)", "N0", "M1", "VALUE:IVC" ], [ "T1a(s)", "N1a", "M0", "VALUE:III" ], [ "T1a(s)", "N1a", "M1", "VALUE:IVC" ], [ "T1a(s)", "N1b", "M0", "VALUE:IVA" ], [ "T1a(s)", "N1b", "M1", "VALUE:IVC" ], [ "T1a(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1a(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1a(s)", "NX", "M0", "VALUE:UNK" ], [ "T1a(s)", "NX", "M1", "VALUE:IVC" ], [ "T1b", "N0", "M0", "VALUE:I" ], [ "T1b", "N0", "M1", "VALUE:IVC" ], [ "T1b", "N1a", "M0", "VALUE:III" ], [ "T1b", "N1a", "M1", "VALUE:IVC" ], [ "T1b", "N1b", "M0", "VALUE:IVA" ], [ "T1b", "N1b", "M1", "VALUE:IVC" ], [ "T1b", "N1NOS", "M0", "VALUE:UNK" ], [ "T1b", "N1NOS", "M1", "VALUE:IVC" ], [ "T1b", "NX", "M0", "VALUE:UNK" ], [ "T1b", "NX", "M1", "VALUE:IVC" ], [ "T1b(m)", "N0", "M0", "VALUE:I" ], [ "T1b(m)", "N0", "M1", "VALUE:IVC" ], [ "T1b(m)", "N1a", "M0", "VALUE:III" ], [ "T1b(m)", "N1a", "M1", "VALUE:IVC" ], [ "T1b(m)", "N1b", "M0", "VALUE:IVA" ], [ "T1b(m)", "N1b", "M1", "VALUE:IVC" ], [ "T1b(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1b(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1b(m)", "NX", "M0", "VALUE:UNK" ], [ "T1b(m)", "NX", "M1", "VALUE:IVC" ], [ "T1b(s)", "N0", "M0", "VALUE:I" ], [ "T1b(s)", "N0", "M1", "VALUE:IVC" ], [ "T1b(s)", "N1a", "M0", "VALUE:III" ], [ "T1b(s)", "N1a", "M1", "VALUE:IVC" ], [ "T1b(s)", "N1b", "M0", "VALUE:IVA" ], [ "T1b(s)", "N1b", "M1", "VALUE:IVC" ], [ "T1b(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1b(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1b(s)", "NX", "M0", "VALUE:UNK" ], [ "T1b(s)", "NX", "M1", "VALUE:IVC" ], [ "T1NOS", "N0", "M0", "VALUE:I" ], [ "T1NOS", "N0", "M1", "VALUE:IVC" ], [ "T1NOS", "N1a", "M0", "VALUE:III" ], [ "T1NOS", "N1a", "M1", "VALUE:IVC" ], [ "T1NOS", "N1b", "M0", "VALUE:IVA" ], [ "T1NOS", "N1b", "M1", "VALUE:IVC" ], [ "T1NOS", "N1NOS", "M0", "VALUE:UNK" ], [ "T1NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T1NOS", "NX", "M0", "VALUE:UNK" ], [ "T1NOS", "NX", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N0", "M0", "VALUE:I" ], [ "T1NOS(m)", "N0", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N1a", "M0", "VALUE:III" ], [ "T1NOS(m)", "N1a", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N1b", "M0", "VALUE:IVA" ], [ "T1NOS(m)", "N1b", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1NOS(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1NOS(m)", "NX", "M0", "VALUE:UNK" ], [ "T1NOS(m)", "NX", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N0", "M0", "VALUE:I" ], [ "T1NOS(s)", "N0", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N1a", "M0", "VALUE:III" ], [ "T1NOS(s)", "N1a", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N1b", "M0", "VALUE:IVA" ], [ "T1NOS(s)", "N1b", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T1NOS(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T1NOS(s)", "NX", "M0", "VALUE:UNK" ], [ "T1NOS(s)", "NX", "M1", "VALUE:IVC" ], [ "T2", "N0", "M0", "VALUE:II" ], [ "T2", "N0", "M1", "VALUE:IVC" ], [ "T2", "N1a", "M0", "VALUE:III" ], [ "T2", "N1a", "M1", "VALUE:IVC" ], [ "T2", "N1b", "M0", "VALUE:IVA" ], [ "T2", "N1b", "M1", "VALUE:IVC" ], [ "T2", "N1NOS", "M0", "VALUE:UNK" ], [ "T2", "N1NOS", "M1", "VALUE:IVC" ], [ "T2", "NX", "M0", "VALUE:UNK" ], [ "T2", "NX", "M1", "VALUE:IVC" ], [ "T2(m)", "N0", "M0", "VALUE:II" ], [ "T2(m)", "N0", "M1", "VALUE:IVC" ], [ "T2(m)", "N1a", "M0", "VALUE:III" ], [ "T2(m)", "N1a", "M1", "VALUE:IVC" ], [ "T2(m)", "N1b", "M0", "VALUE:IVA" ], [ "T2(m)", "N1b", "M1", "VALUE:IVC" ], [ "T2(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T2(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T2(m)", "NX", "M0", "VALUE:UNK" ], [ "T2(m)", "NX", "M1", "VALUE:IVC" ], [ "T2(s)", "N0", "M0", "VALUE:II" ], [ "T2(s)", "N0", "M1", "VALUE:IVC" ], [ "T2(s)", "N1a", "M0", "VALUE:III" ], [ "T2(s)", "N1a", "M1", "VALUE:IVC" ], [ "T2(s)", "N1b", "M0", "VALUE:IVA" ], [ "T2(s)", "N1b", "M1", "VALUE:IVC" ], [ "T2(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T2(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T2(s)", "NX", "M0", "VALUE:UNK" ], [ "T2(s)", "NX", "M1", "VALUE:IVC" ], [ "T3", "N0", "M0", "VALUE:III" ], [ "T3", "N0", "M1", "VALUE:IVC" ], [ "T3", "N1a", "M0", "VALUE:III" ], [ "T3", "N1a", "M1", "VALUE:IVC" ], [ "T3", "N1b", "M0", "VALUE:IVA" ], [ "T3", "N1b", "M1", "VALUE:IVC" ], [ "T3", "N1NOS", "M0", "VALUE:UNK" ], [ "T3", "N1NOS", "M1", "VALUE:IVC" ], [ "T3", "NX", "M0", "VALUE:UNK" ], [ "T3", "NX", "M1", "VALUE:IVC" ], [ "T3(m)", "N0", "M0", "VALUE:III" ], [ "T3(m)", "N0", "M1", "VALUE:IVC" ], [ "T3(m)", "N1a", "M0", "VALUE:III" ], [ "T3(m)", "N1a", "M1", "VALUE:IVC" ], [ "T3(m)", "N1b", "M0", "VALUE:IVA" ], [ "T3(m)", "N1b", "M1", "VALUE:IVC" ], [ "T3(m)", "N1NOS", "M0", "VALUE:UNK" ], [ "T3(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T3(m)", "NX", "M0", "VALUE:UNK" ], [ "T3(m)", "NX", "M1", "VALUE:IVC" ], [ "T3(s)", "N0", "M0", "VALUE:III" ], [ "T3(s)", "N0", "M1", "VALUE:IVC" ], [ "T3(s)", "N1a", "M0", "VALUE:III" ], [ "T3(s)", "N1a", "M1", "VALUE:IVC" ], [ "T3(s)", "N1b", "M0", "VALUE:IVA" ], [ "T3(s)", "N1b", "M1", "VALUE:IVC" ], [ "T3(s)", "N1NOS", "M0", "VALUE:UNK" ], [ "T3(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T3(s)", "NX", "M0", "VALUE:UNK" ], [ "T3(s)", "NX", "M1", "VALUE:IVC" ], [ "T4a", "N0", "M0", "VALUE:IVA" ], [ "T4a", "N0", "M1", "VALUE:IVC" ], [ "T4a", "N1a", "M0", "VALUE:IVA" ], [ "T4a", "N1a", "M1", "VALUE:IVC" ], [ "T4a", "N1b", "M0", "VALUE:IVA" ], [ "T4a", "N1b", "M1", "VALUE:IVC" ], [ "T4a", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a", "NX", "M0", "VALUE:IVA" ], [ "T4a", "NX", "M1", "VALUE:IVC" ], [ "T4a(m)", "N0", "M0", "VALUE:IVA" ], [ "T4a(m)", "N0", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1a", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1b", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4a(m)", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a(m)", "NX", "M0", "VALUE:IVA" ], [ "T4a(m)", "NX", "M1", "VALUE:IVC" ], [ "T4a(s)", "N0", "M0", "VALUE:IVA" ], [ "T4a(s)", "N0", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1a", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1b", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4a(s)", "N1NOS", "M0", "VALUE:IVA" ], [ "T4a(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4a(s)", "NX", "M0", "VALUE:IVA" ], [ "T4a(s)", "NX", "M1", "VALUE:IVC" ], [ "T4b", "N0", "M0", "VALUE:IVB" ], [ "T4b", "N0", "M1", "VALUE:IVC" ], [ "T4b", "N1a", "M0", "VALUE:IVB" ], [ "T4b", "N1a", "M1", "VALUE:IVC" ], [ "T4b", "N1b", "M0", "VALUE:IVB" ], [ "T4b", "N1b", "M1", "VALUE:IVC" ], [ "T4b", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b", "NX", "M0", "VALUE:IVB" ], [ "T4b", "NX", "M1", "VALUE:IVC" ], [ "T4b(m)", "N0", "M0", "VALUE:IVB" ], [ "T4b(m)", "N0", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1a", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1b", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4b(m)", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b(m)", "NX", "M0", "VALUE:IVB" ], [ "T4b(m)", "NX", "M1", "VALUE:IVC" ], [ "T4b(s)", "N0", "M0", "VALUE:IVB" ], [ "T4b(s)", "N0", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1a", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1b", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4b(s)", "N1NOS", "M0", "VALUE:IVB" ], [ "T4b(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4b(s)", "NX", "M0", "VALUE:IVB" ], [ "T4b(s)", "NX", "M1", "VALUE:IVC" ], [ "T4NOS", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N0", "M1", "VALUE:IVC" ], [ "T4NOS", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS", "NX", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N0", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS(m)", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS(m)", "NX", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N0", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N0", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1a", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1a", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1b", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1b", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "N1NOS", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "N1NOS", "M1", "VALUE:IVC" ], [ "T4NOS(s)", "NX", "M0", "VALUE:IVNOS" ], [ "T4NOS(s)", "NX", "M1", "VALUE:IVC" ], [ "TX", "N0", "M0", "VALUE:UNK" ], [ "TX", "N0", "M1", "VALUE:IVC" ], [ "TX", "N1a", "M0", "VALUE:UNK" ], [ "TX", "N1a", "M1", "VALUE:IVC" ], [ "TX", "N1b", "M0", "VALUE:IVNOS" ], [ "TX", "N1b", "M1", "VALUE:IVC" ], [ "TX", "N1NOS", "M0", "VALUE:UNK" ], [ "TX", "N1NOS", "M1", "VALUE:IVC" ], [ "TX", "NX", "M0", "VALUE:UNK" ], [ "TX", "NX", "M1", "VALUE:IVC" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/behavior.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/behavior.json
deleted file mode 100644
index 940086d2d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/behavior.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "behavior",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Behavior",
- "title" : "Behavior ICD-O-3",
- "last_modified" : "2015-05-27T16:19:02.151Z",
- "definition" : [ {
- "key" : "behavior",
- "name" : "Behavior",
- "type" : "INPUT"
- }, {
- "key" : "desc",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "0", "Benign" ], [ "1", "Uncertain Benign/Malig" ], [ "2", "In Situ" ], [ "3", "Malignant Primary" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/clinical_eval_extension_quadrants_ajcc7_xca.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/clinical_eval_extension_quadrants_ajcc7_xca.json
deleted file mode 100644
index e501d09ad..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/clinical_eval_extension_quadrants_ajcc7_xca.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "id" : "clinical_eval_extension_quadrants_ajcc7_xca",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Clinical Eval Extension Quadrants AJCC7",
- "title" : "Clinical Eval Extension Quadrants AJCC 7 Table",
- "notes" : "**Note 1**: When CS Tumor Size/Ext Eval is clinical (0, 1, 5, 9), for CS Extension codes 300-335, 445-450, and 470-500 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Site-Specific Factor 2 as shown in this table.\n\n**Note 2**: When CS Tumor Size/Ext Eval is blank and CS Site-Specific Factor 1 equals 998, the T category is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:02.202Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "CS TS/Ext Eval",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "000-980, 991-999", "300", "010,015", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "310", "010,015", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "315", "010,015", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "320", "010,015", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "325", "010,015", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "330", "010,015", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "335", "010,015", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "445", "010,015", "VALUE:T2a" ], [ "0,1,5,9", "000-980, 991-999", "450", "010,015", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "470", "010,015", "VALUE:T2a" ], [ "0,1,5,9", "000-980, 991-999", "475", "010,015", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "480", "010,015", "VALUE:T2a" ], [ "0,1,5,9", "000-980, 991-999", "485", "010,015", "VALUE:T2a" ], [ "0,1,5,9", "000-980, 991-999", "490", "010,015", "VALUE:T2c" ], [ "0,1,5,9", "000-980, 991-999", "495", "010,015", "VALUE:T2c" ], [ "0,1,5,9", "000-980, 991-999", "500", "010,015", "VALUE:T2NOS" ], [ "0,1,5,9", "981-990", "300-335, 445-450, 470-500", "010,015", "ERROR:" ], [ " ", "998", "300", "010,015", "VALUE:T1a" ], [ " ", "998", "310", "010,015", "VALUE:T1a" ], [ " ", "998", "315", "010,015", "VALUE:T1a" ], [ " ", "998", "320", "010,015", "VALUE:T1a" ], [ " ", "998", "325", "010,015", "VALUE:T1a" ], [ " ", "998", "330", "010,015", "VALUE:T1a" ], [ " ", "998", "335", "010,015", "VALUE:T1a" ], [ " ", "998", "445", "010,015", "VALUE:T2a" ], [ " ", "998", "450", "010,015", "VALUE:T2b" ], [ " ", "998", "470", "010,015", "VALUE:T2a" ], [ " ", "998", "475", "010,015", "VALUE:T2b" ], [ " ", "998", "480", "010,015", "VALUE:T2a" ], [ " ", "998", "485", "010,015", "VALUE:T2a" ], [ " ", "998", "490", "010,015", "VALUE:T2c" ], [ " ", "998", "495", "010,015", "VALUE:T2c" ], [ " ", "998", "500", "010,015", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "300", "020,025", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "310", "020,025", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "315", "020,025", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "320", "020,025", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "325", "020,025", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "330", "020,025", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "335", "020,025", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "445", "020,025", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "450", "020,025", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "470", "020,025", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "475", "020,025", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "480", "020,025", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "485", "020,025", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "490", "020,025", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "495", "020,025", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "500", "020,025", "VALUE:T2NOS" ], [ "0,1,5,9", "981-990", "300-335, 445-450, 470-500", "020,025", "ERROR:" ], [ " ", "998", "300", "020,025", "VALUE:T1b" ], [ " ", "998", "310", "020,025", "VALUE:T1b" ], [ " ", "998", "315", "020,025", "VALUE:T1b" ], [ " ", "998", "320", "020,025", "VALUE:T1b" ], [ " ", "998", "325", "020,025", "VALUE:T1b" ], [ " ", "998", "330", "020,025", "VALUE:T1b" ], [ " ", "998", "335", "020,025", "VALUE:T1b" ], [ " ", "998", "445", "020,025", "VALUE:T2b" ], [ " ", "998", "450", "020,025", "VALUE:T2d" ], [ " ", "998", "470", "020,025", "VALUE:T2b" ], [ " ", "998", "475", "020,025", "VALUE:T2d" ], [ " ", "998", "480", "020,025", "VALUE:T2b" ], [ " ", "998", "485", "020,025", "VALUE:T2b" ], [ " ", "998", "490", "020,025", "VALUE:T2d" ], [ " ", "998", "495", "020,025", "VALUE:T2d" ], [ " ", "998", "500", "020,025", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "300", "030,035", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "310", "030,035", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "315", "030,035", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "320", "030,035", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "325", "030,035", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "330", "030,035", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "335", "030,035", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "445", "030,035", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "450", "030,035", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "470", "030,035", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "475", "030,035", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "480", "030,035", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "485", "030,035", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "490", "030,035", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "495", "030,035", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "500", "030,035", "VALUE:T2NOS" ], [ "0,1,5,9", "981-990", "300-335, 445-450, 470-500", "030,035", "ERROR:" ], [ " ", "998", "300", "030,035", "VALUE:T1c" ], [ " ", "998", "310", "030,035", "VALUE:T1c" ], [ " ", "998", "315", "030,035", "VALUE:T1c" ], [ " ", "998", "320", "030,035", "VALUE:T1c" ], [ " ", "998", "325", "030,035", "VALUE:T1c" ], [ " ", "998", "330", "030,035", "VALUE:T1c" ], [ " ", "998", "335", "030,035", "VALUE:T1c" ], [ " ", "998", "445", "030,035", "VALUE:T2b" ], [ " ", "998", "450", "030,035", "VALUE:T2d" ], [ " ", "998", "470", "030,035", "VALUE:T2b" ], [ " ", "998", "475", "030,035", "VALUE:T2d" ], [ " ", "998", "480", "030,035", "VALUE:T2b" ], [ " ", "998", "485", "030,035", "VALUE:T2b" ], [ " ", "998", "490", "030,035", "VALUE:T2d" ], [ " ", "998", "495", "030,035", "VALUE:T2d" ], [ " ", "998", "500", "030,035", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "300", "040,045", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "310", "040,045", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "315", "040,045", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "320", "040,045", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "325", "040,045", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "330", "040,045", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "335", "040,045", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "445", "040,045", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "450", "040,045", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "470", "040,045", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "475", "040,045", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "480", "040,045", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "485", "040,045", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "490", "040,045", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "495", "040,045", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "500", "040,045", "VALUE:T2NOS" ], [ "0,1,5,9", "981-990", "300-335, 445-450, 470-500", "040,045", "ERROR:" ], [ " ", "998", "300", "040,045", "VALUE:T1d" ], [ " ", "998", "310", "040,045", "VALUE:T1d" ], [ " ", "998", "315", "040,045", "VALUE:T1d" ], [ " ", "998", "320", "040,045", "VALUE:T1d" ], [ " ", "998", "325", "040,045", "VALUE:T1d" ], [ " ", "998", "330", "040,045", "VALUE:T1d" ], [ " ", "998", "335", "040,045", "VALUE:T1d" ], [ " ", "998", "445", "040,045", "VALUE:T2b" ], [ " ", "998", "450", "040,045", "VALUE:T2d" ], [ " ", "998", "470", "040,045", "VALUE:T2b" ], [ " ", "998", "475", "040,045", "VALUE:T2d" ], [ " ", "998", "480", "040,045", "VALUE:T2b" ], [ " ", "998", "485", "040,045", "VALUE:T2b" ], [ " ", "998", "490", "040,045", "VALUE:T2d" ], [ " ", "998", "495", "040,045", "VALUE:T2d" ], [ " ", "998", "500", "040,045", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "300", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "310", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "315", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "320", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "325", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "330", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "335", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "445", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "450", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "470", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "475", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "480", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "485", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "490", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "495", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "500", "888", "ERROR:" ], [ "0,1,5,9", "981-990", "300-335, 445-450, 470-500", "888", "ERROR:" ], [ " ", "998", "300", "888", "ERROR:" ], [ " ", "998", "310", "888", "ERROR:" ], [ " ", "998", "315", "888", "ERROR:" ], [ " ", "998", "320", "888", "ERROR:" ], [ " ", "998", "325", "888", "ERROR:" ], [ " ", "998", "330", "888", "ERROR:" ], [ " ", "998", "335", "888", "ERROR:" ], [ " ", "998", "445", "888", "ERROR:" ], [ " ", "998", "450", "888", "ERROR:" ], [ " ", "998", "470", "888", "ERROR:" ], [ " ", "998", "475", "888", "ERROR:" ], [ " ", "998", "480", "888", "ERROR:" ], [ " ", "998", "485", "888", "ERROR:" ], [ " ", "998", "490", "888", "ERROR:" ], [ " ", "998", "495", "888", "ERROR:" ], [ " ", "998", "500", "888", "ERROR:" ], [ "0,1,5,9", "000-980, 991-999", "300", "988,999", "VALUE:T1NOS" ], [ "0,1,5,9", "000-980, 991-999", "310", "988,999", "VALUE:T1a" ], [ "0,1,5,9", "000-980, 991-999", "315", "988,999", "VALUE:T1b" ], [ "0,1,5,9", "000-980, 991-999", "320", "988,999", "VALUE:T1c" ], [ "0,1,5,9", "000-980, 991-999", "325", "988,999", "VALUE:T1d" ], [ "0,1,5,9", "000-980, 991-999", "330", "988,999", "VALUE:T1NOS" ], [ "0,1,5,9", "000-980, 991-999", "335", "988,999", "VALUE:T1NOS" ], [ "0,1,5,9", "000-980, 991-999", "445", "988,999", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "450", "988,999", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "470", "988,999", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "475", "988,999", "VALUE:T2NOS" ], [ "0,1,5,9", "000-980, 991-999", "480", "988,999", "VALUE:T2a" ], [ "0,1,5,9", "000-980, 991-999", "485", "988,999", "VALUE:T2b" ], [ "0,1,5,9", "000-980, 991-999", "490", "988,999", "VALUE:T2c" ], [ "0,1,5,9", "000-980, 991-999", "495", "988,999", "VALUE:T2d" ], [ "0,1,5,9", "000-980, 991-999", "500", "988,999", "VALUE:T2NOS" ], [ "0,1,5,9", "981-990", "300-335, 445-450, 470-500", "988,999", "ERROR:" ], [ " ", "998", "300", "988,999", "VALUE:T1NOS" ], [ " ", "998", "310", "988,999", "VALUE:T1a" ], [ " ", "998", "315", "988,999", "VALUE:T1b" ], [ " ", "998", "320", "988,999", "VALUE:T1c" ], [ " ", "998", "325", "988,999", "VALUE:T1d" ], [ " ", "998", "330", "988,999", "VALUE:T1NOS" ], [ " ", "998", "335", "988,999", "VALUE:T1NOS" ], [ " ", "998", "445", "988,999", "VALUE:T2NOS" ], [ " ", "998", "450", "988,999", "VALUE:T2NOS" ], [ " ", "998", "470", "988,999", "VALUE:T2NOS" ], [ " ", "998", "475", "988,999", "VALUE:T2NOS" ], [ " ", "998", "480", "988,999", "VALUE:T2a" ], [ " ", "998", "485", "988,999", "VALUE:T2b" ], [ " ", "998", "490", "988,999", "VALUE:T2c" ], [ " ", "998", "495", "988,999", "VALUE:T2d" ], [ " ", "998", "500", "988,999", "VALUE:T2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/clinical_eval_extension_thickness_ajcc6_xbw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/clinical_eval_extension_thickness_ajcc6_xbw.json
deleted file mode 100644
index a3c451f77..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/clinical_eval_extension_thickness_ajcc6_xbw.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "clinical_eval_extension_thickness_ajcc6_xbw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Clinical Eval Extension Thickness AJCC6",
- "title" : "Clinical Eval Extension Thickness AJCC 6 Table",
- "notes" : "**Note 1**: When CS Tumor Size/Ext Eval is clinical (0, 1, 5, 9), for CS Extension codes 005, 300-335, 415, and 425-435 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Extension as shown in this table.\n\n**Note 2**: When CS Tumor Size/Ext Eval is blank and CS Site-Specific Factor 1 equals 998, the T category is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:02.284Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "CS TS/Ext Eval",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "000-980, 991-999", "005", "VALUE:T2" ], [ "0,1,5,9", "000-980, 991-999", "300", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "310", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "315", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "320", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "325", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "330", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "335", "VALUE:T2" ], [ "0,1,5,9", "000-980, 991-999", "415", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "425", "VALUE:T2" ], [ "0,1,5,9", "000-980, 991-999", "430", "VALUE:T1" ], [ "0,1,5,9", "000-980, 991-999", "435", "VALUE:T2" ], [ "0,1,5,9", "981-990", "005, 300-335, 415, 425-435", "ERROR:" ], [ " ", "998", "005", "VALUE:T2" ], [ " ", "998", "300", "VALUE:T1" ], [ " ", "998", "310", "VALUE:T1" ], [ " ", "998", "315", "VALUE:T1" ], [ " ", "998", "320", "VALUE:T1" ], [ " ", "998", "325", "VALUE:T1" ], [ " ", "998", "330", "VALUE:T1" ], [ " ", "998", "335", "VALUE:T2" ], [ " ", "998", "415", "VALUE:T1" ], [ " ", "998", "425", "VALUE:T2" ], [ " ", "998", "430", "VALUE:T1" ], [ " ", "998", "435", "VALUE:T2" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy.json
deleted file mode 100644
index b03b4e162..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Combined Serum Tumor Marker S Value Table for Year of Diagnosis Greater Than 2009",
- "title" : "Combined Serum Tumor Marker S Value Table for Year of Diagnosis Greater Than 2009",
- "notes" : "**Note**: If the Year of Diagnosis is greater than 2009 or the case is coded under CSv2 (CS Version Input Original greater than 020000), then the S value will be based on CS Site-Specific Factors 13, 15, and 16.",
- "last_modified" : "2015-05-27T16:19:02.333Z",
- "definition" : [ {
- "key" : "s_123",
- "name" : "S value based on CS SSF 1-3",
- "type" : "INPUT"
- }, {
- "key" : "s_131516",
- "name" : "S value based on CS SSF 13, 15, 16",
- "type" : "INPUT"
- }, {
- "key" : "s",
- "name" : "S Value for Staging",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "S0", "S0", "VALUE:S0" ], [ "S1", "S0", "VALUE:S0" ], [ "S2", "S0", "VALUE:S0" ], [ "S3", "S0", "VALUE:S0" ], [ "SX", "S0", "VALUE:S0" ], [ "ERROR", "S0", "VALUE:S0" ], [ "S0", "S1", "VALUE:S1" ], [ "S1", "S1", "VALUE:S1" ], [ "S2", "S1", "VALUE:S1" ], [ "S3", "S1", "VALUE:S1" ], [ "SX", "S1", "VALUE:S1" ], [ "ERROR", "S1", "VALUE:S1" ], [ "S0", "S2", "VALUE:S2" ], [ "S1", "S2", "VALUE:S2" ], [ "S2", "S2", "VALUE:S2" ], [ "S3", "S2", "VALUE:S2" ], [ "SX", "S2", "VALUE:S2" ], [ "ERROR", "S2", "VALUE:S2" ], [ "S0", "S3", "VALUE:S3" ], [ "S1", "S3", "VALUE:S3" ], [ "S2", "S3", "VALUE:S3" ], [ "S3", "S3", "VALUE:S3" ], [ "SX", "S3", "VALUE:S3" ], [ "ERROR", "S3", "VALUE:S3" ], [ "S0", "SX", "VALUE:SX" ], [ "S1", "SX", "VALUE:SX" ], [ "S2", "SX", "VALUE:SX" ], [ "S3", "SX", "VALUE:SX" ], [ "SX", "SX", "VALUE:SX" ], [ "ERROR", "SX", "VALUE:SX" ], [ "S0", "ERROR", "ERROR:" ], [ "S1", "ERROR", "ERROR:" ], [ "S2", "ERROR", "ERROR:" ], [ "S3", "ERROR", "ERROR:" ], [ "SX", "ERROR", "ERROR:" ], [ "ERROR", "ERROR", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_less_than2010_xiz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_less_than2010_xiz.json
deleted file mode 100644
index 8d9387d80..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_less_than2010_xiz.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_less_than2010_xiz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Combined Serum Tumor Marker S Value Table for Year of Diagnosis Less Than 2010",
- "title" : "Combined Serum Tumor Marker S Value Table for Year of Diagnosis Less Than 2010",
- "notes" : "**Note**: If the Year of Diagnosis is less than 2010 and the case is coded under CSv1 (CS Version Input Original less than 020000), then known information in CS Site-Specific Factors 13, 15, and 16 will take precedence. If CS Site-Specific Factors 13, 15, or 16 yield an SX or ERROR from Post-orchiectomy Serum Tumor Marker S Value Table Based on CS SSF 13, 15, 16, then the S value will be based on CS Site-Specific Factors 1, 2, and 3.",
- "last_modified" : "2015-05-27T16:19:02.384Z",
- "definition" : [ {
- "key" : "s_123",
- "name" : "S value based on CS SSF 1-3",
- "type" : "INPUT"
- }, {
- "key" : "s_131516",
- "name" : "S value based on CS SSF 13, 15, 16",
- "type" : "INPUT"
- }, {
- "key" : "s",
- "name" : "S Value for Staging",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "S0", "S0", "VALUE:S0" ], [ "S1", "S0", "VALUE:S0" ], [ "S2", "S0", "VALUE:S0" ], [ "S3", "S0", "VALUE:S0" ], [ "SX", "S0", "VALUE:S0" ], [ "ERROR", "S0", "VALUE:S0" ], [ "S0", "S1", "VALUE:S1" ], [ "S1", "S1", "VALUE:S1" ], [ "S2", "S1", "VALUE:S1" ], [ "S3", "S1", "VALUE:S1" ], [ "SX", "S1", "VALUE:S1" ], [ "ERROR", "S1", "VALUE:S1" ], [ "S0", "S2", "VALUE:S2" ], [ "S1", "S2", "VALUE:S2" ], [ "S2", "S2", "VALUE:S2" ], [ "S3", "S2", "VALUE:S2" ], [ "SX", "S2", "VALUE:S2" ], [ "ERROR", "S2", "VALUE:S2" ], [ "S0", "S3", "VALUE:S3" ], [ "S1", "S3", "VALUE:S3" ], [ "S2", "S3", "VALUE:S3" ], [ "S3", "S3", "VALUE:S3" ], [ "SX", "S3", "VALUE:S3" ], [ "ERROR", "S3", "VALUE:S3" ], [ "S0", "SX", "VALUE:S0" ], [ "S1", "SX", "VALUE:S1" ], [ "S2", "SX", "VALUE:S2" ], [ "S3", "SX", "VALUE:S3" ], [ "SX", "SX", "VALUE:SX" ], [ "ERROR", "SX", "VALUE:SX" ], [ "S0", "ERROR", "VALUE:S0" ], [ "S1", "ERROR", "VALUE:S1" ], [ "S2", "ERROR", "VALUE:S2" ], [ "S3", "ERROR", "VALUE:S3" ], [ "SX", "ERROR", "VALUE:SX" ], [ "ERROR", "ERROR", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/cs_input_version_original.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/cs_input_version_original.json
deleted file mode 100644
index d9e63f954..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/cs_input_version_original.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "cs_input_version_original",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CS Version Original",
- "title" : "Valid CS Versions",
- "last_modified" : "2015-05-27T16:19:02.499Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "020500-999999" ], [ "020440" ], [ "020302" ], [ "020200" ], [ "020100" ], [ "020001" ], [ "010401,010400" ], [ "010300" ], [ "010200" ], [ "010100,010005,010004,010003,010002,010000" ], [ "000937" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/cs_year_validation.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/cs_year_validation.json
deleted file mode 100644
index 4396b7b9c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/cs_year_validation.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "cs_year_validation",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CS Year Validation",
- "title" : "CS Year Validation",
- "last_modified" : "2015-05-27T16:19:02.555Z",
- "definition" : [ {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "result",
- "name" : "Result",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "2004-{{ctx_year_current}}", "*", "MATCH" ], [ "", "020500-999999,020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "MATCH" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/csextension_size_tablefor_ajcc6th_xba.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/csextension_size_tablefor_ajcc6th_xba.json
deleted file mode 100644
index 49a274dee..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/csextension_size_tablefor_ajcc6th_xba.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "csextension_size_tablefor_ajcc6th_xba",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "CS Extension Size Table for AJCC 6th",
- "title" : "CS Extension Size Table for AJCC 6th",
- "notes" : "**Note**: For CS Extension codes 200-310, and 380-390 ONLY, the T category for AJCC 6 staging is assigned based on CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:02.437Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "220", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "380", "000", "ERROR:" ], [ "390", "000", "ERROR:" ], [ "200", "001-040", "VALUE:T1b1" ], [ "210", "001-040", "VALUE:T1b1" ], [ "220", "001-040", "VALUE:T1b1" ], [ "250", "001-040", "VALUE:T1b1" ], [ "300", "001-040", "VALUE:T1b1" ], [ "310", "001-040", "VALUE:T1b1" ], [ "380", "001-040", "VALUE:T1b1" ], [ "390", "001-040", "VALUE:T1b1" ], [ "200", "041-989", "VALUE:T1b2" ], [ "210", "041-989", "VALUE:T1b2" ], [ "220", "041-989", "VALUE:T1b2" ], [ "250", "041-989", "VALUE:T1b2" ], [ "300", "041-989", "VALUE:T1b2" ], [ "310", "041-989", "VALUE:T1b2" ], [ "380", "041-989", "VALUE:T1b2" ], [ "390", "041-989", "VALUE:T1b2" ], [ "200", "990-994", "VALUE:T1b1" ], [ "210", "990-994", "VALUE:T1b1" ], [ "220", "990-994", "VALUE:T1b1" ], [ "250", "990-994", "VALUE:T1b1" ], [ "300", "990-994", "VALUE:T1b1" ], [ "310", "990-994", "VALUE:T1b1" ], [ "380", "990-994", "VALUE:T1b1" ], [ "390", "990-994", "VALUE:T1b1" ], [ "200", "995", "VALUE:T1b2" ], [ "210", "995", "VALUE:T1b2" ], [ "220", "995", "VALUE:T1b2" ], [ "250", "995", "VALUE:T1b2" ], [ "300", "995", "VALUE:T1b2" ], [ "310", "995", "VALUE:T1b2" ], [ "380", "995", "VALUE:T1b2" ], [ "390", "995", "VALUE:T1b2" ], [ "200", "996-998", "ERROR:" ], [ "210", "996-998", "ERROR:" ], [ "220", "996-998", "ERROR:" ], [ "250", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "310", "996-998", "ERROR:" ], [ "380", "996-998", "ERROR:" ], [ "390", "996-998", "ERROR:" ], [ "200", "999", "VALUE:T1bNOS" ], [ "210", "999", "VALUE:T1b1" ], [ "220", "999", "VALUE:T1b2" ], [ "250", "999", "VALUE:T1bNOS" ], [ "300", "999", "VALUE:T1NOS" ], [ "310", "999", "VALUE:T1NOS" ], [ "380", "999", "VALUE:T1bNOS" ], [ "390", "999", "VALUE:T1bNOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_m_ns29.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_m_ns29.json
deleted file mode 100644
index ef0e37abb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_m_ns29.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_m_ns29",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 M",
- "title" : "Determining Which Mets Calculation Table Applies for AJCC 6 M",
- "last_modified" : "2015-05-27T16:19:02.661Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000,100,800,999", "JUMP:metsat_dxmets_eval_ajcc6_xck" ], [ "200,250", "JUMP:lymph_nodes_metsat_dxajcc6_xfh_m" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_m_ns4.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_m_ns4.json
deleted file mode 100644
index 0f7de8bad..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_m_ns4.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_m_ns4",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 M",
- "title" : "Determining Which Lymph Nodes/Mets Calculation Table Applies for AJCC 6 M",
- "last_modified" : "2015-05-27T16:19:02.721Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150,250,350,400,450,505", "00", "JUMP:lymph_nodes_size_mets00_ajcc6_xdo_m" ], [ "150,250,350,400,450,505", "10,50", "JUMP:lymph_nodes_size_mets10or50_ajcc6_xid_m" ], [ "150,250,350,400,450,505", "11,40,55,60", "JUMP:lymph_nodes_size_mets114055or60_ajcc6_xdv_m" ], [ "150,250,350,400,450,505", "99", "JUMP:lymph_nodes_size_mets99_ajcc6_xdp_m" ], [ "000,100,200,300,500,800,999", "*", "MATCH:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_meval_ns30.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_meval_ns30.json
deleted file mode 100644
index b2e96929a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_meval_ns30.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_meval_ns30",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 M EvaL",
- "title" : "Determining Whether M Eval has already been set for AJCC 6",
- "last_modified" : "2015-05-27T16:19:02.608Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "200, 250", "00,10,20,30,35,40,45,50,55,60,65,70,75,80,99", "MATCH:" ], [ "000,100,800,999", "*", "JUMP:mets_eval_ipa" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns1.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns1.json
deleted file mode 100644
index a0a49943a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns1.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns1",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:02.815Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation_ajcc6_xbk" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns10.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns10.json
deleted file mode 100644
index bf83b86e8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns10.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns10",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:02.859Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation_ajcc6_xbj" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns13.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns13.json
deleted file mode 100644
index a28db4595..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns13.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns13",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:02.905Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "JUMP:lymph_nodes_clinical_evaluation1or9_ajcc6_xbf" ], [ "0,5", "JUMP:lymph_nodes_clinical_evaluation0or5_ajcc6_xbg" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns22.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns22.json
deleted file mode 100644
index 6a10ceb62..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns22.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns22",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:02.954Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation6th_xqf" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns23.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns23.json
deleted file mode 100644
index 1e6b038ed..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns23.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns23",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:03.002Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation_ajcc6_xpo" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns24.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns24.json
deleted file mode 100644
index e3222d0c0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns24.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns24",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:03.053Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation_ajcc6_xbi" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns26.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns26.json
deleted file mode 100644
index a7ba0f352..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns26.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns26",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:03.109Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation_ajcc6_xbe" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns3.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns3.json
deleted file mode 100644
index 1b555b2e3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns3.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns3",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes/Mets Calculation Table Applies for AJCC 6 N",
- "last_modified" : "2015-05-27T16:19:03.157Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "JUMP:lymph_nodes_size_mets00_ajcc6_xdo_n" ], [ "10,50", "JUMP:lymph_nodes_size_mets10or50_ajcc6_xid_n" ], [ "11,40,55,60", "JUMP:lymph_nodes_size_mets114055or60_ajcc6_xdv_n" ], [ "99", "JUMP:lymph_nodes_size_mets99_ajcc6_xdp_n" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns41.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns41.json
deleted file mode 100644
index 6c6e8240e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns41.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns41",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:03.216Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodeand_nodal_status_clinical_eval_ajcc6_xlk" ], [ "2,3,6,8", "JUMP:lymph_nodeand_nodal_status_pathologic_eval_ajcc6_xll" ], [ "", "JUMP:lymph_nodeand_nodal_status_eval_blank_ajcc6_xlm" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns8.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns8.json
deleted file mode 100644
index 703787e41..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns8.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns8",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:03.275Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation_ajcc6_xpq" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ], [ "", "JUMP:lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns9.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns9.json
deleted file mode 100644
index e2350858b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_n_ns9.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_n_ns9",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC N",
- "last_modified" : "2016-07-05T18:05:17.696Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_evaluation_xcx" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_evaluation_xcw" ], [ "", "JUMP:lymph_nodes_positive_axillary_node_xcy" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_neval_ns31.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_neval_ns31.json
deleted file mode 100644
index 099f6ddd6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_neval_ns31.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_neval_ns31",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 N EvaL",
- "title" : "Determining Whether N Eval has already been set for AJCC 6",
- "last_modified" : "2015-05-27T16:19:02.770Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ndescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "200, 250", "00,10,20,30,35,40,45,50,55,60,65,70,75,80,99", "MATCH:" ], [ "000,100,800,999", "*", "JUMP:nodes_eval_epa" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_stg_ns15.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_stg_ns15.json
deleted file mode 100644
index 67936b020..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_stg_ns15.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_stg_ns15",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 Stage Group",
- "title" : "Determining Which AJCC 6 Stage Calculation Applies based on Extension",
- "last_modified" : "2015-05-27T16:19:03.387Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "105", "JUMP:ajcc6_stage_qdy" ], [ "110", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "115", "JUMP:ajcc6_stage_qdy" ], [ "120", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "125, 150", "JUMP:ajcc6_stage_qdy" ], [ "200, 210, 220, 230, 300", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "305", "JUMP:ajcc6_stage_qdy" ], [ "310", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "315", "JUMP:ajcc6_stage_qdy" ], [ "320", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "325", "JUMP:ajcc6_stage_qdy" ], [ "330", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "335, 350, 500, 700, 710, 720, 730, 750", "JUMP:ajcc6_stage_qdy" ], [ "800", "JUMP:ajcc_tnm6_stage_csv1_xie" ], [ "805, 950, 989", "JUMP:ajcc6_stage_qdy" ], [ "999", "JUMP:ajcc_tnm6_stage_csv1_xie" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_stg_ns37.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_stg_ns37.json
deleted file mode 100644
index 80396ada5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_stg_ns37.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_stg_ns37",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 Stage Group",
- "title" : "Determining Which Calculation Table Applies for AJCC 6 Stage Group",
- "last_modified" : "2015-05-27T16:19:03.443Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "JUMP:ajcctnm6_stage_csv1_xpz" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "JUMP:ajcc6_stage_qpq" ], [ "000937-999999", "2010-9999", "JUMP:ajcc6_stage_qpq" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns16.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns16.json
deleted file mode 100644
index a64559128..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns16.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_t_ns16",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 T",
- "title" : "Determining Which Extension Calculation Table Applies for AJCC 6 T",
- "last_modified" : "2015-05-27T16:19:03.606Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "Site Specific Factor 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "2,3,6,8", "*", "JUMP:pathologic_eval_extension_thickness_ajcc6_xbt" ], [ "", "000-996, 999", "JUMP:pathologic_eval_extension_thickness_ajcc6_xbt" ], [ "0,1,5,9", "000-996, 998, 999", "JUMP:clinical_eval_extension_thickness_ajcc6_xbw" ], [ "", "998", "JUMP:clinical_eval_extension_thickness_ajcc6_xbw" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns33.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns33.json
deleted file mode 100644
index 51063c584..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns33.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_t_ns33",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for T",
- "title" : "Determining Which Extension Calculation Table Applies for the AJCC 6 T",
- "last_modified" : "2015-05-27T16:19:03.662Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "8020,8021,8030-8032", ",1-9", "JUMP:histology_grade_extension_ajcc6_xkw" ], [ "8000-8019,8022,8033-9992", "4", "JUMP:histology_grade_extension_ajcc6_xkw" ], [ "8000-8019,8022,8033-9992", "1-3,5-9", "JUMP:extension_size_ajcc6_xbc" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns34.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns34.json
deleted file mode 100644
index ed75ff14b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns34.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_t_ns34",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 T",
- "title" : "Determining Which Extension Calculation Table Applies for AJCC 6 T",
- "last_modified" : "2015-05-27T16:19:03.714Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "JUMP:extension_orchiectomy_lviajcc6_table_csv1_xbv" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "JUMP:extension_orchiectomy_lviajcc6_table_csv2_xis" ], [ "000937-999999", "2010-9999", "JUMP:extension_orchiectomy_lviajcc6_table_csv2_xis" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns39.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns39.json
deleted file mode 100644
index 595fc7df8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns39.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_t_ns39",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for T",
- "title" : "Determining Which Extension Calculation Table Applies for AJCC 6 T",
- "last_modified" : "2015-05-27T16:19:03.770Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "ssf6",
- "name" : "CS SSF6 Perineural Invasion",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", ",988", "JUMP:extension_size_ajcc6_table_csv1_xjb" ], [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "000,997-999", "JUMP:extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "000,997-999", "JUMP:extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl" ], [ "000937-999999", "2010-9999", "000,997-999", "JUMP:extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl" ], [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "010", "JUMP:extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "010", "JUMP:extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm" ], [ "000937-999999", "2010-9999", "010", "JUMP:extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm" ], [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "888", "JUMP:extension_size_perineural_invasion888988_ajcc6_table_csv2_xij" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "888,988", "JUMP:extension_size_perineural_invasion888988_ajcc6_table_csv2_xij" ], [ "000937-999999", "2010-9999", "888,988", "JUMP:extension_size_perineural_invasion888988_ajcc6_table_csv2_xij" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns6.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns6.json
deleted file mode 100644
index d6825f8fb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns6.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_t_ns6",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 T",
- "title" : "Determining Which Extension Cytology Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:03.828Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "JUMP:extension_cytology_ajcc6_table_csv1_xkn" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "JUMP:extension_cytology_ajcc6_table_csv2_xkm" ], [ "000937-999999", "2010-9999", "JUMP:extension_cytology_ajcc6_table_csv2_xkm" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns7.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns7.json
deleted file mode 100644
index 16030708e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_t_ns7.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_t_ns7",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 T",
- "title" : "Determining Which Extension Cytology Calculation Table Applies for AJCC 6",
- "last_modified" : "2015-05-27T16:19:03.877Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "JUMP:extension_cytology_ajcc6_table_csv1_xko" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "JUMP:extension_cytology_ajcc6_table_csv2_xkq" ], [ "000937-999999", "2010-9999", "JUMP:extension_cytology_ajcc6_table_csv2_xkq" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_tm_ns44.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_tm_ns44.json
deleted file mode 100644
index b682114f0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_tm_ns44.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_tm_ns44",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 T,M - T value",
- "title" : "Determining Which Extension/Mets Calculation Table Applies for AJCC 6 T",
- "last_modified" : "2015-05-27T16:19:03.505Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "CS Site Specific Factor 1",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "888", "*", "JUMP:extension_mets_ssf1_ajcc6_xjo_t" ], [ "010,040", "*", "JUMP:size_extension_mets_ssf1_ajcc6_xjp_t" ], [ "030", "*", "JUMP:size_extension_mets_ssf1_ajcc6_xjq_t" ], [ "020", "*", "JUMP:size_extension_mets_ssf1_ajcc6_xjr_t" ], [ "000,988,999", "00", "JUMP:size_extension_mets_ssf1_ajcc6_xjs_t" ], [ "000,988,999", "15,18,20,24", "JUMP:size_extension_mets_ssf1_ajcc6_xjt_t" ], [ "000,988,999", "17,21,25,32,33,42,43,52,53", "JUMP:size_extension_mets_ssf1_ajcc6_xju_t" ], [ "000,988,999", "16,23,26,30,35-38,40,41,50,51,70,75", "JUMP:size_extension_mets_ssf1_ajcc6_xjv_t" ], [ "000,988,999", "99", "JUMP:size_extension_mets_ssf1_ajcc6_xjw_t" ], [ "000,988,999", "10,39", "JUMP:size_extension_mets_ssf1_ajcc6_xjx_t" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_tm_ns47.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_tm_ns47.json
deleted file mode 100644
index a684f8a6b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc6_tm_ns47.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc6_tm_ns47",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 6 T,M - M value",
- "title" : "Determining Which Extension/Mets Calculation Table Applies for AJCC 6 M",
- "last_modified" : "2015-05-27T16:19:03.556Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "CS Site Specific Factor 1",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "888", "*", "JUMP:extension_mets_ssf1_ajcc6_xjo_m" ], [ "010,040", "*", "JUMP:size_extension_mets_ssf1_ajcc6_xjp_m" ], [ "030", "*", "JUMP:size_extension_mets_ssf1_ajcc6_xjq_m" ], [ "020", "*", "JUMP:size_extension_mets_ssf1_ajcc6_xjr_m" ], [ "000,988,999", "00", "JUMP:size_extension_mets_ssf1_ajcc6_xjs_m" ], [ "000,988,999", "15,18,20,24", "JUMP:size_extension_mets_ssf1_ajcc6_xjt_m" ], [ "000,988,999", "17,21,25,32,33,42,43,52,53", "JUMP:size_extension_mets_ssf1_ajcc6_xju_m" ], [ "000,988,999", "16,23,26,30,35-38,40,41,50,51,70,75", "JUMP:size_extension_mets_ssf1_ajcc6_xjv_m" ], [ "000,988,999", "99", "JUMP:size_extension_mets_ssf1_ajcc6_xjw_m" ], [ "000,988,999", "10,39", "JUMP:size_extension_mets_ssf1_ajcc6_xjx_m" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns11.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns11.json
deleted file mode 100644
index 9229dad84..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns11.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns11",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:03.929Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "JUMP:lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh" ], [ "1,9", "020500-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xaj" ], [ "0,5", "*", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xaj" ], [ "2,3,6,8", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi" ], [ "", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns12.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns12.json
deleted file mode 100644
index d9c3b16f3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns12.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns12",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:03.985Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "JUMP:lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfq" ], [ "1,9", "020500-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xaw" ], [ "0,5", "*", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xaw" ], [ "2,3,6,8", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr" ], [ "", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns14.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns14.json
deleted file mode 100644
index fb877b83e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns14.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns14",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.032Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "JUMP:lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfs" ], [ "1,9", "020500-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xax" ], [ "0,5", "000937-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xax" ], [ "2,3,6,8", "*", "JUMP:lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft" ], [ "", "*", "JUMP:lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns18.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns18.json
deleted file mode 100644
index 58598d16a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns18.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns18",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.090Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0-3,5,6,8,9", "JUMP:lymph_nodeand_nodal_status_eval_ajcc7_xlg" ], [ "", "JUMP:lymph_nodeand_nodal_status_eval_blank_ajcc7_xln" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns19.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns19.json
deleted file mode 100644
index 9fb0fe117..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns19.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns19",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.152Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0-3,5,6,8,9", "JUMP:lymph_nodeand_nodal_status_eval_ajcc7_xlb" ], [ "", "JUMP:lymph_nodeand_nodal_status_eval_blank_ajcc7_xlo" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns2.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns2.json
deleted file mode 100644
index c27554e30..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns2.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns2",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.422Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "JUMP:lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xee" ], [ "1,9", "020500-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xcd" ], [ "0,5", "*", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xcd" ], [ "2,3,6,8", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg" ], [ "", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns20.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns20.json
deleted file mode 100644
index a15c84721..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns20.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns20",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.475Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0-3,5,6,8,9", "JUMP:lymph_nodeand_nodal_status_eval_ajcc7_xle" ], [ "", "JUMP:lymph_nodeand_nodal_status_eval_blank_ajcc7_xlp" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns21.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns21.json
deleted file mode 100644
index 7ff0a3253..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns21.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns21",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.523Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0-3,5,6,8,9", "JUMP:lymph_nodeand_nodal_status_eval_ajcc7_xld" ], [ "", "JUMP:lymph_nodeand_nodal_status_eval_blank_ajcc7_xlq" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns25.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns25.json
deleted file mode 100644
index ac2adc936..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns25.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns25",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.576Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "JUMP:lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh" ], [ "1,9", "020500-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xch" ], [ "0,5", "000937-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xch" ], [ "2,3,6,8", "000937-999999", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi" ], [ "", "000937-999999", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns27.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns27.json
deleted file mode 100644
index ff1600581..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns27.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns27",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.635Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "JUMP:lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdh" ], [ "1,9", "020500-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xam" ], [ "0,5", "*", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xam" ], [ "2,3,6,8", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi" ], [ "", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns40.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns40.json
deleted file mode 100644
index 28e4427dd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns40.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns40",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.684Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodeand_nodal_status_clinical_eval_ajcc7_xlh" ], [ "2,3,6,8", "JUMP:lymph_nodeand_nodal_status_pathologic_eval_ajcc7_xli" ], [ "", "JUMP:lymph_nodeand_nodal_status_eval_blank_ajcc7_xlj" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns5.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns5.json
deleted file mode 100644
index 81f9ad71e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_n_ns5.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_n_ns5",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies for AJCC 7",
- "last_modified" : "2015-05-27T16:19:04.730Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,9", "020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "JUMP:lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdf" ], [ "1,9", "020500-999999", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xao" ], [ "0,5", "*", "JUMP:lymph_nodes_clinical_eval_v0205_ajcc7_xao" ], [ "2,3,6,8", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xdg" ], [ "", "*", "JUMP:lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns17.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns17.json
deleted file mode 100644
index 4e4c6aa52..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns17.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_t_ns17",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 T",
- "title" : "Determining Which Extension Calculation Table Applies for AJCC 7 T",
- "last_modified" : "2015-05-27T16:19:04.778Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "CS Tumor Size/Ext Eval",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "Site Specific Factor 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "2,3,6,8", "000-996, 998, 999", "JUMP:pathologic_eval_extension_thickness_ajcc7_xcb" ], [ "", "000-996, 999", "JUMP:pathologic_eval_extension_thickness_ajcc7_xcb" ], [ "0,1,5,9", "000-996, 998, 999", "JUMP:clinical_eval_extension_quadrants_ajcc7_xca" ], [ "", "998", "JUMP:clinical_eval_extension_quadrants_ajcc7_xca" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns32.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns32.json
deleted file mode 100644
index 40af32b26..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns32.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_t_ns32",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for T",
- "title" : "Determining Which Extension Calculation Table Applies for the AJCC 7 T",
- "last_modified" : "2015-05-27T16:19:04.824Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "8020,8021,8030-8032", ",1-9", "JUMP:histology_grade_extension_ssf1_ajcc7_xkv" ], [ "8000-8019,8022,8033-9992", "4", "JUMP:histology_grade_extension_ssf1_ajcc7_xkv" ], [ "8000-8019,8022,8033-9992", "1-3,5-9", "JUMP:extension_size_ssf1_ajcc7_xgb" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns38.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns38.json
deleted file mode 100644
index b7a34286d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns38.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_t_ns38",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for T",
- "title" : "Determining Which Extension Calculation Table Applies for the AJCC 7 T",
- "last_modified" : "2015-05-27T16:19:04.873Z",
- "definition" : [ {
- "key" : "ssf6",
- "name" : "CS SSF6 Perineural Invasion",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000,997-999", "JUMP:extension_size_perineural_invasion_negativeor_unknown_ajcc7_xgj" ], [ "010", "JUMP:extension_size_perineural_invasion_positive_ajcc7_xgk" ], [ "888,988", "JUMP:extension_size_perineural_invasion888988_ajcc7_xic" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns43.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns43.json
deleted file mode 100644
index 6f9d94d55..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ajcc7_t_ns43.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_ajcc7_t_ns43",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for AJCC 7 T",
- "title" : "Determining Which Extension Calculation Table Applies for AJCC 7 T",
- "last_modified" : "2015-05-27T16:19:04.918Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "Site Specific Factor 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000, 999", "JUMP:size_extension_ssf1_ajcc7_t_xjz" ], [ "010,020,030,040", "JUMP:size_extension_ssf1_ajcc7_t_xka" ], [ "888, 988", "JUMP:extension_ssf1_ajcc7_t_xjy" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_m_ns48.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_m_ns48.json
deleted file mode 100644
index 9d93cd8e4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_m_ns48.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_m_ns48",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for M",
- "title" : "Determine Correct Table for M",
- "last_modified" : "2015-05-27T16:19:04.963Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00,10,15-18,20,21,23-26,30,32,33,35-43,50-53,70,75,99", "Valid Codes", "JUMP:mets_hab" ], [ "01-09,11-14,19,22,27-29,31,34,44-49,54-69,71-74,76-98", "Invalid Codes. Some combinations of Stage under AJCC 6.", "JUMP:invalid_lung_m_values_ns49" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_n_ns35.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_n_ns35.json
deleted file mode 100644
index 108cefca1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_n_ns35.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_n_ns35",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for N",
- "title" : "Determining Which Lymph Nodes Calculation Table Applies",
- "last_modified" : "2015-05-27T16:19:05.012Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "JUMP:lymph_nodes_clinical_eval_xgt" ], [ "2,3,6,8", "JUMP:lymph_nodes_pathologic_eval_xgu" ], [ "", "JUMP:lymph_nodes_positive_eval_blank_xgv" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_s_ns36.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_s_ns36.json
deleted file mode 100644
index d53aa61dc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_s_ns36.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_s_ns36",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for S",
- "title" : "Determining Which Calculation Table Applies for S Value",
- "last_modified" : "2015-05-27T16:19:05.173Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "s",
- "name" : "S Value",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "JUMP:combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_less_than2010_xiz" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "JUMP:combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy" ], [ "000937-999999", "2010-9999", "JUMP:combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ss00t_ns46.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ss00t_ns46.json
deleted file mode 100644
index c87506196..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ss00t_ns46.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ss00t_ns46",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for SS 2000 T",
- "title" : "Determining Which Calculation Table Applies for SS 2000 T",
- "last_modified" : "2015-05-27T16:19:05.062Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "JUMP:extension_ssf1_summary_stage2000_xkf" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "JUMP:extension_ssf1_summary_stage2000_xke" ], [ "020500-999999,020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "2010-9999", "JUMP:extension_ssf1_summary_stage2000_xke" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ss77t_ns45.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ss77t_ns45.json
deleted file mode 100644
index 1186b07a4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_ss77t_ns45.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "determine_correct_table_for_ss77t_ns45",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for SS 1977 T",
- "title" : "Determining Which Calculation Table Applies for SS 1977 T",
- "last_modified" : "2015-05-27T16:19:05.114Z",
- "definition" : [ {
- "key" : "cs_input_version_original",
- "name" : "CS Version Input Original",
- "type" : "INPUT"
- }, {
- "key" : "year_dx",
- "name" : "Year of Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", ",2004-2009", "JUMP:extension_ssf1_summary_stage77_xkd" ], [ "020500-999999,020440,020302,020200,020100,020001", ",2004-9999", "JUMP:extension_ssf1_summary_stage77_xkc" ], [ "020500-999999,020440,020302,020200,020100,020001,010401,010400,010300,010200,010100,010005,010004,010003,010002,010000,000937", "2010-9999", "JUMP:extension_ssf1_summary_stage77_xkc" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_t_ns28.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_t_ns28.json
deleted file mode 100644
index 6e154bec6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_correct_table_for_t_ns28.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "determine_correct_table_for_t_ns28",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Correct Table for T",
- "title" : "Determining Which Extension Calculation Table Applies for the T values",
- "last_modified" : "2015-05-27T16:19:05.226Z",
- "definition" : [ {
- "key" : "ssf3",
- "name" : "Site Specific Factor 3",
- "type" : "INPUT"
- }, {
- "key" : "temp_ajcc_t",
- "name" : "T Table",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "JUMP:special_calculation_non_invasive_pathologic_extension_xdr_xdt_xdq" ], [ "020-023,030-034,040-043,045,048,050,052,060,070,095-099,200,210,220,230,300,320,330,340,350,400,402,404,406,410,415,420,430,480,482,483,485,490,495,500,510,520,600,700,750,950,960,970,980,985,990", "JUMP:special_calculation_invasive_unknown_pathologic_extension_xds_xdu_xdq" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_validity_for_ajcc6_ns50.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_validity_for_ajcc6_ns50.json
deleted file mode 100644
index 531248c0b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_validity_for_ajcc6_ns50.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "determine_validity_for_ajcc6_ns50",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Validity of TNM for AJCC 6 Stage - Age at DX = 999",
- "title" : "Determine Validity of TNM for AJCC 6 Stage - Age at DX = 999",
- "last_modified" : "2015-05-27T16:19:05.277Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_stage",
- "name" : "Stage Table 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0,T1,T2,T3,T4a,T4b,T4NOS,TX", "N0,N1a,N1b,N1NOS,NX", "M0,M1,MX", "VALUE:UNK" ], [ "*", "*", "", "ERROR:" ], [ "*", "", "*", "ERROR:" ], [ "", "*", "*", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_validity_for_ajcc7_ns42.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_validity_for_ajcc7_ns42.json
deleted file mode 100644
index c9ee61f58..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/determine_validity_for_ajcc7_ns42.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "determine_validity_for_ajcc7_ns42",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Determine Validity of TNM for AJCC 7 Stage - Age at DX = 999",
- "title" : "Determine Validity of TNM for AJCC 7 Stage - Age at DX = 999",
- "last_modified" : "2015-05-27T16:19:05.329Z",
- "definition" : [ {
- "key" : "t",
- "name" : "T",
- "type" : "INPUT"
- }, {
- "key" : "n",
- "name" : "N",
- "type" : "INPUT"
- }, {
- "key" : "m",
- "name" : "M",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_stage",
- "name" : "Stage Table 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "T0,T1a,T1a(s),T1a(m),T1b,T1b(s),T1b(m),T1NOS,T1NOS(s),T1NOS(m),T2,T2(s),T2(m),T3,T3(s),T3(m),T4a,T4a(s),T4a(m),T4b,T4b(s),T4b(m),T4NOS,T4NOS(s),T4NOS(m),TX", "N0,N1a,N1b,N1NOS,NX", "M0,M1", "VALUE:UNK" ], [ "*", "*", "", "ERROR:" ], [ "*", "", "*", "ERROR:" ], [ "", "*", "*", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/eval_extension_t3_ajcc7_xgh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/eval_extension_t3_ajcc7_xgh.json
deleted file mode 100644
index 8c8fec736..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/eval_extension_t3_ajcc7_xgh.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "eval_extension_t3_ajcc7_xgh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Eval Extension T3 AJCC7",
- "title" : "Eval Extension T3 AJCC 7 Table",
- "notes" : "**Note 1**: For CS Extension codes 710-740 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS TS/Ext Eval and CS Extension as shown here.\n\n**Note 2**: Not all users of Collaborative Stagecollect the evaluation fields. For this schema, if CS TS/Ext Eval is empty or invalid, the T3 category will be calculated as if CS TS/Ext Eval were '9'.",
- "last_modified" : "2015-05-27T16:19:05.377Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "CS TS/Ext Eval",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "710", "VALUE:T3a" ], [ "1", "710", "VALUE:T3a" ], [ "2", "710", "VALUE:T3" ], [ "3", "710", "VALUE:T3" ], [ "5", "710", "VALUE:T3a" ], [ "6", "710", "VALUE:T3" ], [ "8", "710", "VALUE:T3" ], [ "9", "710", "VALUE:T3a" ], [ ",4,7", "710", "VALUE:T3a" ], [ "0", "720", "VALUE:T3b" ], [ "1", "720", "VALUE:T3b" ], [ "2", "720", "VALUE:T3" ], [ "3", "720", "VALUE:T3" ], [ "5", "720", "VALUE:T3b" ], [ "6", "720", "VALUE:T3" ], [ "8", "720", "VALUE:T3" ], [ "9", "720", "VALUE:T3b" ], [ ",4,7", "720", "VALUE:T3b" ], [ "0", "730", "VALUE:T3c" ], [ "1", "730", "VALUE:T3c" ], [ "2", "730", "VALUE:T3" ], [ "3", "730", "VALUE:T3" ], [ "5", "730", "VALUE:T3c" ], [ "6", "730", "VALUE:T3" ], [ "8", "730", "VALUE:T3" ], [ "9", "730", "VALUE:T3c" ], [ ",4,7", "730", "VALUE:T3c" ], [ "0", "740", "VALUE:T3d" ], [ "1", "740", "VALUE:T3d" ], [ "2", "740", "VALUE:T3" ], [ "3", "740", "VALUE:T3" ], [ "5", "740", "VALUE:T3d" ], [ "6", "740", "VALUE:T3" ], [ "8", "740", "VALUE:T3" ], [ "9", "740", "VALUE:T3d" ], [ ",4,7", "740", "VALUE:T3d" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baa.json
deleted file mode 100644
index 54f4ab56d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baa.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_baa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: High-grade squamous intraepithelial lesions (HSIL) and anal intraepithelial neoplasia (AIN) grade II III are not normally collected by cancer registries. AIN II III or AIN III is reportable to standard-setters (except the Commission on Cancer). If your registry collects any of these, use code 000.\n\n**Note 2**: The assignment of T1, T2 , and T3 categories for tumors of the anus is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use code 310, 320, 330, or 850 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: Code incidental finding of malignancy in hemorrhoid according to greatest extension of tumor into wall of anus. Code as Localized, NOS if extension not specified.\n\n**Note 4**: Codes 400-750 are used for contiguous extension from the site of origin. Discontinuous involvement is coded in CS Mets at DX.",
- "footnotes" : "- For CS Extension codes 100-400 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-400 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.449Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive\nAIN III\nBowen disease", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS (including intramucosal, NOS)", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "120", "Invades muscularis mucosae", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion)", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "200", "Invades muscularis propria (internal sphincter)", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "300", "Incidental finding of malignancy in hemorrhoid, NOS\nLocalized, NOS", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1 with no other information on extension", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T2 with no other information on extension", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "330", "Stated as T3 with no other information on extension", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:L", "VALUE:L" ], [ "400", "Ischiorectal fat/tissue\nPerianal skin\nPerirectal skin\nRectal mucosa or submucosa\nRectal wall\nSkeletal muscle(s):\n Anal sphincter (external)\n Levator ani\nSubcutaneous perianal tissue", "JUMP:extension_size_xaa", "JUMP:extension_size_xaa", "VALUE:RE", "VALUE:RE" ], [ "600", "Perineum\nVulva", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Bladder\nPelvic peritoneum\nUrethra\nVagina", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Broad ligament(s)\nCervix uteri\nCorpus uteri\nProstate", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bab.json
deleted file mode 100644
index 1dd079275..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bab.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Cortical bone is the dense compact outer layer of bone.Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns the T category based on size when bone involvement is limited to the cortex. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2, and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T catgegory may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 778, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100, 200, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100 through 535 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100 through 535 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.494Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Labial mucosa (inner lip)\n Lamina propria\n Multiple foci\n Submucosa (superficial invasion)\n Vermilion surface\nSuperficial extension to:\n Skin of lip\n Subcutaneous soft tissue of lip", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "200", "Musculature", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "500", "Buccal mucosa (inner cheek)\nCommissure (from lower lip only)\nOpposite lip (both lips)", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 510 defined as \"Gingiva\" in CSv1. Code 510 defined as \"Lower gingiva, Gingiva, NOS, Upper gingiva (from commissure only)\" in CSv2:V0201, V0202. All cases should be reviewed and recoded to 515, 780, or 785 as appropriate.\n\nLower gingiva\nGingiva, NOS\nUpper gingiva (from commissure only)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "515", "Lower gingiva\nGingiva, NOS\nUpper gingiva (from commissure only)", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of mandible\nMandible, NOS\nCortical bone of maxilla (from commissure only)\nMaxilla, NOS (from commissure only)\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 535 or 725 as appropriate.\n\nMandible", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Trabecular bone of mandible\nTrabecular bone of maxilla (from commissure only)", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "740", "Nose", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "750", "Tongue", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face/neck", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 535, 775, 785, or 788 as appropriate.\n\nCortical bone (other than code 700)\nFloor of mouth\nInferior alveolar nerve", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Floor of mouth\nInferior alveolar nerve", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "778", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "780", "Upper gingiva (from lower lip)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "785", "780 + (740, 750, 760, or 775)\n\nUpper gingiva plus any structure in code 740, 750, 760, or 775", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "788", "Bone of maxilla (from lower lip)\nMaxilla, NOS (from lower lip)\nSpecified bone \n(Other than mandible, maxilla from commissure, and bones in codes 790 and 800)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including: \n Skull base \n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bac.json
deleted file mode 100644
index 63fe4e658..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bac.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Cortical bone is the dense compact outer layer of the bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns the T category based on size when bone involvement is limited to the cortex . Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2 , and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 775, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100, 200, 400, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-545 ONLY, the T category for AJCC 7 staging is based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-545 ONLY, the T category for AJCC 6 staging is based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.560Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor on one side confined to:\n Lamina propria\n Submucosa", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:L", "VALUE:L" ], [ "200", "Musculature of tongue, intrinsic or NOS", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS\nMidline tumor", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:L", "VALUE:L" ], [ "400", "Tumor crosses midline", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:L", "VALUE:L" ], [ "500", "Base of tongue\nFloor of mouth\nGingiva, lower\nRetromolar trigone", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:RE", "VALUE:RE" ], [ "530", "Sublingual gland", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of mandible \nMandible, NOS\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:RE", "VALUE:D" ], [ "545", "Cortical bone of maxilla\nMaxilla, NOS", "JUMP:extension_size_xab", "JUMP:extension_size_xab", "VALUE:D", "VALUE:D" ], [ "600", "Lateral pharyngeal wall\nSoft palate, inferior surface\nTonsillar pillars and fossae\nTonsils", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:RE" ], [ "675", "600 + (535 or 545)\n\nAny structure in code 600 plus any structure in code 535 or 545", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 535, 675, 725 or 735 as appropriate.\n\nMandible ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "720", "OBSOLETE DATA RETAINED V0200\n\n(600) + (700)", "ERROR:", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "725", "Trabecular bone of mandible", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "735", "725 + (545 or 600)\n\nTrabecular bone of mandible plus any structure in code 545 or 600", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "740", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 545, 675, 735, or 745 as appropriate.\n\nMaxilla\nMaxillary sinus ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "745", "Trabecular bone of maxilla\nMaxillary sinus (antrum)", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "750", "Deep (extrinsic) muscle of tongue: \n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "788", "Specified bone \n(Other than maxilla, mandible, and bones in codes 790 and 800)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including: \n Skull base\n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bad.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bad.json
deleted file mode 100644
index 890de1857..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bad.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bad",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: When both the Federation Internationale de Gynecologie et d'Obstetrique (FIGO) stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage. FIGO Stage III is assigned based on tumor extension and/or regional lymph node involvement. Code CS Extension based on a physician's statement of FIGO Stage III only if it is known that the stage value is assigned because of tumor extension.\n\n**Note 2**: FIGO no longer includes Stage 0 (Tis) for this site.\n\n**Note 3**: According to AJCC, pelvic wall is defined as muscle, fascia, neurovascular structures, or skeletal portions of the bony pelvis.",
- "last_modified" : "2015-05-27T16:19:05.623Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 150, 250\n\nInvasive cancer confined to \n Submucosa (stroma) (vagina)\nFIGO Stage I", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Invasive cancer confined to: \n Submucosa (stroma) (vagina)", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Musculature involved", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "250", "FIGO Stage I", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\nCervix\nParavaginal soft tissue\nRectovaginal septum\nVesicovaginal septum\nVulva\nFIGO Stage II", "ERROR:", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "410", "Cervix", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "420", "Paravaginal soft tissue\nRectovaginal septum\nVesicovaginal septum\nVulva", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "500", "Cul de sac (rectouterine pouch)", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "510", "FIGO Stage II", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "520", "Extension to bladder wall or bladder, NOS excluding mucosa\nRectal wall or rectum, NOS excluding mucosa", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 620, 650\n\nExtension to pelvic wall\nDescribed clinically as \"frozen pelvis\", NOS\nFIGO Stage III", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "620", "Extension to pelvic wall\nDescribed clinically as \"frozen pelvis\", NOS", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "650", "FIGO Stage III based on tumor extension", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "700", "Extension to bladder mucosa (excluding bullous edema)\nor rectal mucosa", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Extension beyond true pelvis\nExtension to urethra", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "FIGO Stage IVA", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bae.json
deleted file mode 100644
index 69d83604c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bae.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Cortical bone is the dense compact outer layer of bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns the T category based on size when bone involvement is limited to the cortex. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2, and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the Tcategory may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 780, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extenison information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 100, 400, 405, 410, or 415.",
- "footnotes" : "- Note: For CS Extension codes 100 through 605 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- Note: For CS Extension codes 100 through 605 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.674Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor on one side confined to:\n Lamina propria\n Submucosa", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:L", "VALUE:L" ], [ "400", "Tumor crosses midline", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension.", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:L", "VALUE:L" ], [ "500", "Anterior 2/3 of tongue\nBase of tongue\nGingiva (alveolar ridge), lower\nPeriosteum of mandible", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:RE", "VALUE:RE" ], [ "530", "Sublingual gland, including ducts\nSubmandibular (submaxillary) glands, including ducts", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of mandible\nMandible, NOS\nCartilage, NOS\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:RE", "VALUE:RE" ], [ "545", "Cortical bone of maxilla\nMaxilla, NOS", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:D", "VALUE:D" ], [ "550", "Subcutaneous soft tissue of chin/neck", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:RE", "VALUE:RE" ], [ "600", "Epiglottis\nGlossoepiglottic fold\nGlossopharyngeal sulcus\nLateral pharyngeal wall\nPharyngeal (lingual) surface\nPharyngoepiglottic fold\nTonsillar pillars and fossae\nTonsils\nVallecula", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:RE", "VALUE:RE" ], [ "603", "600 +550", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:RE", "VALUE:RE" ], [ "605", "(550 or 600) + 545\n\nAny structure in code 550 or 600 plus any structure in code 545", "JUMP:extension_size_xac", "JUMP:extension_size_xac", "VALUE:D", "VALUE:D" ], [ "620", "Deep (extrinsic) muscle of tongue:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:L", "VALUE:L" ], [ "630", "OBSOLETE DATA RETAINED V0200\n\n(620) + any of (500, 530, or 600)", "ERROR:", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "635", "620 + (500, 530, 535, 550, or 600)\n\nAny structure in code 620 plus any structure in code 500, 530, 535, or 600", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "640", "OBSOLETE DATA CONVERTED V0200\nAssign to T1-3 category per site curator, see code 550 \n\nSubcutaneous soft tissue of chin/neck", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "645", "620 + 545\n\nAny structure in code 620 plus any structure in code 545", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203 \nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 535, 635, 725, or 765 as appropriate.\n\nMandible ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Trabecular bone of mandible", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "760", "Skin of undersurface of chin/neck", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "765", "(725 or 760) + 545\n\nAny structure in code 725 or 760 plus any structure in code 545", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA REVIEWED AND CHANGED V0203 \nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 545, 605, 645, 765, or 775 as appropriate\n\nMaxillary sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Trabecular bone of maxilla\nMaxillary sinus (antrum)", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "780", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "788", "Specified bone \n(Other than mandible, maxilla, or bones in codes 790 and 805)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension:\n Base of skull \n Masticator space\n Pterygoid plates", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "805", "Further contiguous extension:\n Base of skull\n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baf.json
deleted file mode 100644
index 10f6a4417..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baf.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_baf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Cortical bone is the dense compact outer layer of the bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns the T category based on size when bone involvement is limited to the cortex. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2, and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 755, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 100, 200, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-605 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-605 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.744Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Lamina propria\n Submucosa", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:L", "VALUE:L" ], [ "200", "Musculature invaded", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:L", "VALUE:L" ], [ "500", "Adjacent oral cavity", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of mandible\nCortical bone of maxilla\nMandible, NOS\nMaxilla, NOS\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:D", "VALUE:D" ], [ "600", "Oropharynx\nInferior surface of soft palate\nLateral pharyngeal wall\nLingual surface of epiglottis\nVallecula", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:RE", "VALUE:RE" ], [ "605", "600 + 535\n\nAny structure in 600 plus any structure in 535", "JUMP:extension_size_xad", "JUMP:extension_size_xad", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 535, 605, or 725 as appropriate.\n\nExtension to adjacent structures:\nMandible\nMaxilla\nMaxillary antrum (sinus)\nNasal cavity\nSkin of face/neck\nTongue", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "705", "Tongue", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "710", "Deep (extrinsic) muscle of tongue: \n Genioglossus \n Hyoglossus \n Palatoglossus \n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA CONVERTED V0200\nSee code 800\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Trabecular bone:\n Mandible\n Maxilla\n Palatine bone", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "735", "Maxillary antrum (sinus)\nNasal cavity\nSkin of face/neck", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nBase of skull\nEncases internal carotid artery \nMasticator space\nPterygoid plates", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "788", "Specified bone \n(Other than maxilla, mandible, and bones in codes 790 and 800)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension: \n Skull base\n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bag.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bag.json
deleted file mode 100644
index 81aa1f269..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bag.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bag",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The orbital tissues are the support systems of the globe, confined to the space within the surrounding bony structure. The tissues include fat, striated and smooth muscle, and fibroconnective, vascular, lymphoid, peripheral nerve, and optic nerve tissue.\n\n**Note 2**: AJCC stages only sarcomas of the orbit. AJCC values are derived as NA for all non-sarcoma histologies coded to this site.\n\n**Note 3**: Code 000 may be used only for non-sarcoma histologies coded to this site. Sarcomas do not present as in situ or noninvasive tumors.",
- "footnotes" : "- For CS Extension codes 100, 200, and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema. A CS Tumor Size code takes precedence over a CS Extension \"stated as T\" code; however, if CS Tumor Size is coded as unknown, the T category may be assigned based on \"stated as T\" recorded in CS Extension.\n- For CS Extension codes 100, 200, and 300 ONLY, the T category for AJCC 6staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema. A CS Tumor Size code takes precedence over a CS Extension \"stated as T\" code; however, if CS Tumor Size is coded as unknown, the T category may be assigned based on \"stated as T\" recorded in CS Extension.",
- "last_modified" : "2015-05-27T16:19:05.810Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Tumor confined to orbit\nLocalized, NOS", "JUMP:extension_size_xaf", "JUMP:extension_size_xaf", "VALUE:L", "VALUE:L" ], [ "200", "Stated as T1 with no other information on extension", "JUMP:extension_size_xaf", "JUMP:extension_size_xaf", "VALUE:L", "VALUE:L" ], [ "300", "Stated as T2 with no other information on extension", "JUMP:extension_size_xaf", "JUMP:extension_size_xaf", "VALUE:L", "VALUE:L" ], [ "400", "Tumor of any size with invasion of orbital tissues and/or bony walls \n\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "500", "Invasion of globe", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "Extension to:\n Adjacent paranasal sinuses\n Cranium", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Extension to:\n Eyelids\n Temporal fossa\n Nasal cavity", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "700", "Central nervous system", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bah.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bah.json
deleted file mode 100644
index 932431f01..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bah.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bah",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Mucoperiosteum is a compound structure of mucous membrane and periosteum. Cortical bone is the dense compact outer layer of bone.Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns the T category based on size when bone involvement is limited to the cortex. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2 , and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 775, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 100, 400, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-535 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-535 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.866Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor on one side confined to mucoperiosteum (stroma)", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:L", "VALUE:L" ], [ "400", "Tumor crosses midline", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:L", "VALUE:L" ], [ "500", "Buccal mucosa (inner cheek)\nGingiva, upper\nGlossopalatine arch\nPharyngopalatine arch\nSoft palate including uvula", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of maxilla\nCortical palatine bone\nMaxilla, NOS\nPalatine bone, NOS\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xae", "JUMP:extension_size_xae", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 535 or 725 as appropriate.\n\nMaxillary bone\nPalatine bone ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Trabecular bone:\n Maxilla\n Palatine bone", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "740", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nRecode involved structures to code 745, 750, 765, or 800 as appropriate.\n\nDeep muscle of tongue\nFloor of nose\nMaxillary sinus (antrum)\nNasal cavity\nNasopharynx\nSkin of face\nSphenoid bone", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "745", "Floor of nose\nMaxillary sinus (antrum)\nNasal cavity\nNasopharynx", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "750", "Deep (extrinsic) muscle of tongue:\n Genioglossus \n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "760", "OBSOLETE DATA CONVERTED V0200\nSee code 790\n\nPterygoid plates", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "765", "Skin of face", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "788", "Specified bone \n(Other than maxilla, palatine, and bones in codes 790 and 800)", "VALUE:T4b", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "790", "Masticator space\nPterygoid plates ", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension: \n Skull base including sphenoid bone other than pterygoid plates\n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bai.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bai.json
deleted file mode 100644
index ab4967534..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bai.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bai",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Cortical bone is the dense compact outer layer of the bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns the T category based on size when involvement is limited to cortical bone. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2 , and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 755, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 100, 200, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-620 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-620 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.916Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Lamina propria\n Submucosa", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:L", "VALUE:L" ], [ "200", "Musculature (buccinator)", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:RE", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:L", "VALUE:L" ], [ "500", "Lip(s) including commissure", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:RE", "VALUE:RE" ], [ "510", "Gingiva", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:RE", "VALUE:RE" ], [ "525", "Cortical bone of mandible\nCortical bone of maxilla\nMandible, NOS\nMaxilla, NOS\nCartilage, NOS\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:D", "VALUE:D" ], [ "550", "Subcutaneous soft tissue of cheek", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:RE", "VALUE:RE" ], [ "600", "Lateral pharyngeal wall\nTonsillar pillars and fossae\nTonsils", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:RE", "VALUE:RE" ], [ "603", "600 + 550", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:RE", "VALUE:RE" ], [ "605", "(550 or 600) + 525\n\nAny structure in code 550 or 600 plus any structure in code 525", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:D", "VALUE:D" ], [ "620", "Hard palate including cortical palatine bone\nSoft palate", "JUMP:extension_size_xag", "JUMP:extension_size_xag", "VALUE:D", "VALUE:D" ], [ "650", "OBSOLETE DATA CONVERTED V0200\nAssign to T1-3 category per curator, see code 550 \n\nSubcutaneous soft tissue of cheek", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "660", "Skin of cheek with or without ulceration", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "665", "660 + (525 or 620) \n\nSkin of cheek plus any structure in code 525 or 620", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "670", "OBSOLETE DATA CONVERTED V0200\nSee code 740\n\nMaxillary sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 525, 605, 665, 725, or 753 as appropriate.\n\nBone (cortical):\n Mandible \n Maxilla", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Trabecular bone:\n Mandible\n Maxilla \n Palatine bone", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "730", "OBSOLETE DATA CONVERTED V0200\nSee code 805\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "740", "Maxillary sinus (antrum) Nasal cavity", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "750", "Tongue\nDeep (extrinsic) muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "753", "(725, 740, or 750) + 620", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "755", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "788", "Specified bone \n(Other than maxilla, mandible, palatine, or bones in codes 795 and 805)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA RETAINED V0200\n\nOther contiguous extension:\n Base of skull\n Encases internal carotid artery\n Masticator space\n Pterygoid plates", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "795", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nExtension to hard palate and soft palate assigned to T1-T3 categories in CSv2 based on curator response. All CSv1 cases should be reviewed and recoded to 620, 665, 753, or 808 as appropriate. \n\nFurther contiguous extension:\n Hard palate\n Soft palate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "805", "Further contiguous extension including:\n Internal carotid artery (encased)\n Base of skull\n Skull ", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "808", "(788, 795, or 805) + 620", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baj.json
deleted file mode 100644
index c5b2d3111..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baj.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_baj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Direct extension to or other involvement of structures considered M1 in AJCC staging is coded in the data item CS Mets at DX. This includes: sternum; skeletal muscle; skin of chest; contralateral lung or mainstem bronchus; separate tumor nodule(s) in contralateral lung.\n\n**Note 2**: Distance from Carina: Assume tumor is greater than or equal to 2 centimeters (cm) from carina if lobectomy, segmental resection, or wedge resection is done.\n\n**Note 3**: Opposite Lung: If no mention is made of the opposite lung on a chest x-ray, assume it is not involved. \n\n**Note 4**: Bronchopneumonia: Bronchopneumonia is not the same thing as obstructive pneumonitis and should not be coded as such. Bronchopneumonia is an acute inflammation of the walls of the bronchioles, usually a result of spread of infection from the upper to the lower respiratory tract. Obstructive pneumonitis is a combination of atelectasis, bronchiectasis with mucous plugging, and parenchymal inflammation that develops distal to an obstructing endobronchial lesion.\n\n**Note 5**: Pulmonary Artery/Vein: An involved pulmonary artery/vein in the mediastinum is coded to 700 (involvement of major blood vessel). However, if the involvement of the artery/vein appears to be only within lung tissue and not in the mediastinum, it is not coded to 700.\n\n**Note 6**: Vocal cord paralysis (resulting from involvement of recurrent branch of the vagus nerve), superior vena cava (SVC) obstruction, or compression of the trachea or the esophagus may be related to direct extension of the primary tumor or to lymph node involvement. The treatment options and prognosis associated with these manifestations of disease extent fall within the T4-Stage IIIB category; therefore, generally use code 700 for these manifestations. However, if the primary tumor is peripheral and clearly unrelated to vocal cord paralysis, SVC obstruction, or compression of the trachea or the esophagus, code these manifestations as mediastinal lymph node involvement (code 200) in CS Lymph Nodes, unless there is a statement of involvement by direct extension from the primary tumor.\n\n**Note 7**: Pleural effusion and pericardial effusion are coded in CS Mets at DX.\n\n**Note 8**: In some cases, the determination of the T category for TNM 6 or 7 staging is based on this field, CS Tumor Size, CS Mets at DX, and CS Site-Specific Factor 1.\n\n**Note 9**: Code to the highest applicable code for CS Extension and then code the absence or presence of separate ipsilateral tumor nodules in CS Site-Specific Factor 1, Separate Tumor Nodules/Ipsilateral lung. Code separate tumor nodules in contralateral lung in CS Mets at DX.\n\n**Note 10**: Specific information about visceral pleura invasion is captured in codes 410-430 and CS Site-Specific Factor 2, Visceral Pleural Invasion (VPI)/Elastic Layer. Elastic layer involvement has prognostic significance for lung cancer.",
- "footnotes" : "- For CS Extension codes 000-440, 455-520, 540-600, 730, and 950-999, the T category for AJCC 7 staging is assigned based on the values of CS Tumor Size, CS Extension, and CS Site Specific Factor 1, as shown in the Size Extension AJCC 7 Table for this schema.\n- For CS Extension codes 000-999, the T category for AJCC 6 staging is assigned based on the values of CS Tumor Size, CS Extension, CS Mets at Dx and CS Site Specific Factor 1 as shown in the Size Extension Mets AJCC 6 Table for this schema.\n- For CS Extension codes 000, 950, 980 and 999, Summary Stage 77 is assigned based on the values of CS Extension and Site Specific Factor 1 as shown in the Summary Stage 77 Table for this schema.\n- For CS Extension codes 000-700, 740, 950-999, Summary Stage 2000 is assigned based on the values of CS Extension and Site Specific Factor 1 as shown in the Summary Stage 2000 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:05.972Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "JUMP:determine_correct_table_for_ss77t_ns45", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "100", "Tumor confined to one lung\nWITHOUT extension or conditions described in codes 200-800 \nEXCLUDING primary in main stem bronchus\nEXCLUDING superficial tumor as described in code 110", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "110", "Superficial tumor of any size with invasive component limited to bronchial wall, with or without proximal extension to the main stem bronchus", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "115", "Stated as T1a with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "120", "Stated as T1b with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "125", "Stated as T1[NOS] with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "200", "Extension from other parts of lung to main stem bronchus, NOS \nEXCLUDING superficial tumor as described in code 110\nTumor involving main stem bronchus greater than or equal to 2.0 cm from carina (primary in lung or main stem bronchus)", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "210", "Tumor involving main stem bronchus, NOS\n(Distance from carina not stated and no surgery as described in Note 2)", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "220", "Direct tumor invasion into an adjacent ipsilateral lobe", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "230", "Tumor confined to hilus", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "250", "OBSOLETE DATA CONVERTED V0204\nSee code 680\n\nTumor confined to carina", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "ERROR:", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "300", "Localized, NOS", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "400", "Atelectasis/obstructive pneumonitis that extends to the hilar region but does not involve the entire lung \nOr atelectasis/obstructive pneumonitis, NOS", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "410", "Extension to but not into pleura, including invasion of elastic layer \nBUT not through the elastic layer.", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "420", "Invasion of pleura, including invasion through the elastic layer", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "430", "Invasion of pleura, NOS", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "440", "Pulmonary ligament", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "450", "OBSOLETE DATA RETAINED V0200\n\nExtension to:\n Pleura, visceral or NOS (WITHOUT pleural effusion)\n Pulmonary ligament ", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "455", "Stated as T2a with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "460", "Stated as T2b with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "465", "Stated as T2 [NOS] with no other information on size or extension ", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "500", "Tumor of/involving main stem bronchus less than 2.0 cm from carina", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "520", "500 + 400", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "530", "OBSOLETE DATA RETAINED V0200\n\n 450 + 500", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "540", "500 + any of (410-440)", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "550", "Atelectasis/obstructive pneumonitis involving entire lung", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "560", "Parietal pericardium or pericardium, NOS", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "570", "Stated as T3 with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "590", "Invasion of phrenic nerve", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "600", "Direct extension to:\n Brachial plexus, inferior branches or NOS, from superior sulcus\n Chest (thoracic) wall\n Diaphragm\n Pancoast tumor (superior sulcus syndrome), NOS\n Parietal pleura\nNote: For separate lesion in chest wall or diaphragm, see CS Mets at DX.", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "610", "Superior sulcus tumor WITH encasement of subclavian vessels\nOR WITH unequivocal involvement of superior branches of brachial plexus (C8 or above)", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "650", "OBSOLETE DATA RETAINED V0200\nSeparate tumor nodules reclassified in AJCC 7th Edition, coded in CS Site-Specific Factor 1 \n\nMultiple masses/separate tumor nodule(s) in the SAME lobe\n\"Satellite nodules\" in SAME lobe", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "680", "Tumor confined to carina", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:L", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "700", "Blood vessel(s), major (EXCEPT aorta and inferior vena cava, see codes 740 and 770)\n Azygos vein\n Pulmonary artery or vein\n Superior vena cava (SVC syndrome)\nCarina from lung/mainstem bronchus\nCompression of esophagus or trachea not specified as direct extension\nEsophagus\nMediastinum, extrapulmonary or NOS\nNerve(s):\n Cervical sympathetic (Horner syndrome)\n Recurrent laryngeal (vocal cord paralysis)\n Vagus\nTrachea", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:RE", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "705", "700 + (600 or 610)", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "710", "Heart\nVisceral pericardium", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA RETAINED V0200\nPleural effusion reclassified as distant metastasis in AJCC 7th Edition, see CS Mets at DX code 15\n \nMalignant pleural effusion\nPleural effusion, NOS", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "730", "Adjacent rib\nSee also code 785", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "740", "Aorta", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "745", "740 + 710", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "748", "740 + 730", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "750", "Vertebra(e)\nNeural foramina", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "760", "OBSOLETE DATA RETAINED V0200\nSeparate pleural tumor foci reclassified as distant metastasis in AJCC 7th Edition, see CS Mets at DX code 24\n\nPleural tumor foci separate from direct pleural invasion", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "770", "Inferior vena cava", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "780", "OBSOLETE DATA RETAINED V0200\n\n730 plus any of (610-720) or (740-770)", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "785", "730 + (700 or 710)", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA RETAINED V0200\nPericardial effusion reclassified as distant metastasis, see CS Mets at DX code 20\n\nPericardial effusion, NOS; malignant pericardial effusion", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "795", "OBSOLETE DATA CONVERTED V0204\nSee code 810\n\nStated as T4 with no other information on extension", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension \n(Except to structures specified in CS Mets at DX codes 23 and 37)", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "JUMP:determine_correct_table_for_ss77t_ns45", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "980", "Tumor proven by presence of malignant cells in sputum or bronchial washings but not visualized by imaging or bronchoscopy; \"occult\" carcinoma", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "JUMP:determine_correct_table_for_ss77t_ns45", "JUMP:determine_correct_table_for_ss00t_ns46" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "JUMP:determine_correct_table_for_ajcc7_t_ns43", "JUMP:determine_correct_table_for_ajcc6_tm_ns44", "JUMP:determine_correct_table_for_ss77t_ns45", "JUMP:determine_correct_table_for_ss00t_ns46" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bak.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bak.json
deleted file mode 100644
index 765709476..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bak.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bak",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Changes such as dimpling of the skin, tethering, and nipple retraction are caused by tension on Cooper's ligament(s), not by actual skin involvement. They do not alter the classification.\n\n**Note 2**: Consider adherence, attachment, fixation, induration, and thickening as clinical evidence of extension to skin or subcutaneous tissue, code 200.\n\n**Note 3**: Consider fixation, NOS as involvement of pectoralis muscle, code 300.\n\n**Note 4**: If CS Extension code is 000, then Behavior code must be 2; if CS Extension code is 050 or 070, then Behavior code may be 2 or 3; and if CS Extension code is 100, then Behavior code must be 3.\n\n**Note 5**: Inflammatory Carcinoma: AJCC includes the following text in the Cancer Staging Manual 7th Edition: \"Inflammatory carcinoma is a clinicopathologic entity characterized by diffuse erythema and edema (peau d'orange) of the breast, often without an underlying palpable mass. These clinical findings should involve the majority of the skin of the breast. Classically, the skin changes arise quickly in the affected breast. Thus the term of inflammatory carcinoma should not be applied to a patient with neglected locally advanced cancer of the breast presenting late in the course of her disease. On imaging, there may be a detectable mass and characteristic thickening of the skin over the breast. This clinical presentation is due to tumor emboli within dermal lymphatics, which may or may not be apparent on skin biopsy. The tumor of inflammatory carcinoma is classified T4d. It is important to remember that inflammatory carcinoma is primarily a clinical diagnosis. Involvement of the dermal lymphatics alone does not indicate inflammatory carcinoma in the absence of clinical findings. In addition to the clinical picture, however, a biopsy is still necessary to demonstrate cancer either within the dermal lymphatics or in the breast parenchyma itself.\"\n\n**Note 6**: For CS coding, the abstractor should record a stated diagnosis of inflammatory carcinoma, and also record any clinical statement of the character and extent of skin involvement in the text area. Code 600 should be used if there is a stated diagnosis of inflammatory carcinoma and a clinical description of the skin involvement is less than one-third (33%) of the skin of the breast. Code 725 should be used if there is a stated diagnosis of inflammatory carcinoma and a clinical description of the skin involvement is greater than or equal to one-third (33%) and less than or equal to one-half (50%) of the skin of the breast. Code 730 should be used if there is a stated diagnosis of inflammatory carcinoma and a clinical description of the skin involvement in more than one-half (50%) (majority or diffuse) of the skin of the breast. Cases with a stated diagnosis of inflammatory carcinoma but no such clinical description should be coded 750. A clinical description of inflammation, erythema, edema, peau d'orange, or other terms describing skin changes without a stated diagnosis of inflammatory carcinoma should be coded 512-585 depending on described extent of the condition.",
- "footnotes" : "- For CS Extension codes 100-140, 200, and 300 ONLY, the T category is assigned based on value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-140, 200, and 300 ONLY, the T category is assigned based on value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 050 and 070 ONLY, Summary Stage 1977 and Summary Stage 2000 are assigned based on the value of Behavior Code ICD-O-3 as shown in the Extension Behavior Table for this schema.",
- "last_modified" : "2015-05-27T16:19:06.034Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ: noninfiltrating; intraepithelial\nIntraductal WITHOUT infiltration\nLobular neoplasia", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "Paget disease of nipple \nWITHOUT underlying tumor", "VALUE:Tis", "VALUE:Tis", "JUMP:extension_behavior_xci", "JUMP:extension_behavior_xci" ], [ "070", "Paget Disease disease of nipple \nWITHOUT underlying invasive carcinoma pathologically", "VALUE:Tis", "VALUE:Tis", "JUMP:extension_behavior_xci", "JUMP:extension_behavior_xci" ], [ "100", "Confined to breast tissue and fat including nipple and/or areola\nLocalized, NOS", "JUMP:extension_size_xar", "JUMP:extension_size_xar", "VALUE:L", "VALUE:L" ], [ "110", "Stated as T1mi with no other information on extension", "JUMP:extension_size_xar", "JUMP:extension_size_xar", "VALUE:L", "VALUE:L" ], [ "120", "Stated as T1a with no other information on extension", "JUMP:extension_size_xar", "JUMP:extension_size_xar", "VALUE:L", "VALUE:L" ], [ "130", "Stated as T1b with no other information on extension", "JUMP:extension_size_xar", "JUMP:extension_size_xar", "VALUE:L", "VALUE:L" ], [ "140", "Stated as T1c with no other information on extension", "JUMP:extension_size_xar", "JUMP:extension_size_xar", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 [NOS] with no other information on extension or size", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "180", "Stated as T2 with no other information on extension or size", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "190", "Stated as T3 with no other information on extension or size", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "200", "Invasion of subcutaneous tissue\nLocal infiltration of dermal lymphatics adjacent to primary tumor involving skin by direct extension\nSkin infiltration of primary breast including skin of nipple and/or areola", "JUMP:extension_size_xar", "JUMP:extension_size_xar", "VALUE:RE", "VALUE:RE" ], [ "300", "Attachment or fixation to pectoral muscle(s) or underlying tissue\nDeep fixation\nInvasion of (or fixation to) pectoral fascia or muscle", "JUMP:extension_size_xar", "JUMP:extension_size_xar", "VALUE:RE", "VALUE:RE" ], [ "380", "OBSOLETE DATA CONVERTED V0203\nSee code 790\n\nStated as T4 [NOS] with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "390", "OBSOLETE DATA CONVERTED V0203\nSee code 410\n\nStated as T4a with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "400", "Invasion of (or fixation to):\n Chest wall\n Intercostal or serratus anterior muscle(s)\n Rib(s)\n\nSee codes 610 (obsolete), 612-615, and 620 (obsolete) for combinations with this code", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "410", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA RETAINED V0200\n\nExtensive skin involvement, including:\nSatellite nodule(s) in skin of primary breast\nUlceration of skin of breast\nAny of the following conditions described as involving not more than 50% of the breast, or amount or percent of involvement not stated:\n Edema of skin\n En cuirasse\n Erythema\n Inflammation of skin\n Peau d'orange (\"pigskin\")", "ERROR:", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "512", "Extensive skin involvement, including:\nSatellite nodule(s) in skin of primary breast\nUlceration of skin of breast", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "514", "Any of the following conditions described as involving less than one-third (33%) of the breast \nWITHOUT a stated diagnosis of inflammatory carcinoma \nWITH or WITHOUT dermal lymphatic infiltration:\n Edema of skin\n En cuirasse\n Erythema\n Inflammation of skin\n Peau d'orange (\"pigskin\")", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "516", "514 + 512", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "518", "Any of the following conditions described as involving one third (33%) or more but less than or equal to half (50%) of the breast\nWITHOUT a stated diagnosis of inflammatory carcinoma \nWITH or WITHOUT dermal lymphatic infiltration:\n Edema of skin\n En cuirasse\n Erythema\n Inflammation of skin\n Peau d'orange (\"pigskin\")", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "519", "518 + 512", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "520", "Any of the following conditions described as involving more than 50% of the breast\nWITHOUT a stated diagnosis of inflammatory carcinoma \nWITH or WITHOUT dermal lymphatic infiltration:\n Edema of skin\n En cuirasse\n Erythema\n Inflammation of skin\n Peau d'orange (\"pigskin\")", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "575", "520 + 512", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "580", "Any of the following conditions with amount or percent of breast involvement not stated and \nWITHOUT a stated diagnosis of inflammatory carcinoma \nWITH or WITHOUT dermal lymphatic infiltration:\n Edema of skin\n En cuirasse\n Erythema\n Inflammation of skin\n Peau d'orange (\"pigskin\")", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "585", "580 + 512", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "590", "OBSOLETE DATA CONVERTED V0203\nSee code 605\n\nStated as T4b with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "600", "Diagnosis of inflammatory carcinoma\nWITH a clinical description of inflammation, erythema, edema, peau d'orange, etc., involving less than one-third (33%) of the skin of the breast,\nWITH or WITHOUT dermal lymphatic infiltration", "VALUE:T4b", "VALUE:T4d", "VALUE:RE", "VALUE:RE" ], [ "605", "Stated as T4b with no other information on extension ", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED V0200\n\n(400) + (510)", "ERROR:", "VALUE:T4c", "VALUE:RE", "VALUE:RE" ], [ "612", "Any of (512-516) + 400", "VALUE:T4c", "VALUE:T4c", "VALUE:RE", "VALUE:RE" ], [ "613", "Any of (518-519) + 400", "VALUE:T4c", "VALUE:T4c", "VALUE:RE", "VALUE:RE" ], [ "615", "Any of (520-585) + 400", "VALUE:T4c", "VALUE:T4c", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA RETAINED V0200\n\n(400) + (520)", "ERROR:", "VALUE:T4c", "VALUE:RE", "VALUE:RE" ], [ "680", "Stated as T4c with no other information on extension", "VALUE:T4c", "VALUE:T4c", "VALUE:RE", "VALUE:RE" ], [ "710", "OBSOLETE DATA RETAINED V0200 \n\nDiagnosis of inflammatory carcinoma\nWITH a clinical description of inflammation, erythema, edema, peau d'orange, etc., involving not more than 50% of the skin of the breast, \nWITH or WITHOUT dermal lymphatic infiltration\nInflammatory carcinoma, NOS\n\nPrevious wording (V0100):\nDiagnosis of inflammatory carcinoma\nWITHOUT a clinical description of inflammation, erythema, edema, peau d'orange, etc., of more than 50% of the breast,\nWITH or WITHOUT dermal lymphatic infiltration\nInflammatory carcinoma, NOS", "ERROR:", "VALUE:T4d", "VALUE:RE", "VALUE:RE" ], [ "715", "OBSOLETE DATA RETAINED V0202\n\nDiagnosis of inflammatory carcinoma\nWITH a clinical description of inflammation, erythema, edema, peau d'orange, etc., involving not more than one-third (33%) of the skin of the breast,\nWITH or WITHOUT dermal lymphatic infiltration", "VALUE:T4b", "VALUE:T4d", "VALUE:RE", "VALUE:RE" ], [ "720", "OBSOLETE DATA CONVERTED V0102 \n\nDescription: Diagnosis of inflammatory carcinoma\nWITH a clinical diagnosis of inflammation, erythema, edema, peau d'orange, etc., of not more than 50% of the breast, \nWITH or WITHOUT dermal lymphatic infiltration\nInflammatory carcinoma, NOS\nNOTE: Code 720 has been combined with code 710.\nAny cases coded to 720 should be re-coded to code 710.\n\nPrevious wording (V0100):\nDiagnosis of inflammatory carcinoma\nWITH a clinical description of inflammation, erythema, edema, peau d'orange, etc. of LESS THAN OR EQUAL TO 50% of the breast, WITH or WITHOUT dermal lymphatic infiltration", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Diagnosis of inflammatory carcinoma\nWITH a clinical description of inflammation, erythema, edema, peau d'orange, etc., involving one-third (33%) or more but less than or equal to one-half (50%) of the skin of the breast,\nWITH or WITHOUT dermal lymphatic infiltration", "VALUE:T4d", "VALUE:T4d", "VALUE:RE", "VALUE:RE" ], [ "730", "Diagnosis of inflammatory carcinoma\nWITH a clinical description of inflammation, erythema, edema, peau d'orange, etc., involving more than one-half (50%) of the skin of the breast,\nWITH or WITHOUT dermal lymphatic infiltration", "VALUE:T4d", "VALUE:T4d", "VALUE:RE", "VALUE:RE" ], [ "750", "Diagnosis of inflammatory carcinoma\nWITH a clinical description of inflammation, erythema, edema, peau d'orange, etc., but percent of involvement not stated, \nWITH or WITHOUT dermal lymphatic infiltration. \n\nNote: If percentage is known, code to 600, 725, or 730.\n\nDiagnosis of inflammatory carcinoma\nWITHOUT a clinical description of inflammation, erythema, edema, peau d'orange, etc., \nWITH or WITHOUT dermal lymphatic infiltration\n\nInflammatory carcinoma, NOS", "VALUE:T4d", "VALUE:T4d", "VALUE:RE", "VALUE:RE" ], [ "780", "Stated as T4d with no other information on extension", "VALUE:T4d", "VALUE:T4d", "VALUE:RE", "VALUE:RE" ], [ "790", "Stated as T4 [NOS] with no other information on extension ", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bal.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bal.json
deleted file mode 100644
index 86c7451f4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bal.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bal",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Intraluminal or intramural extension to esophagus and duodenum is classified by the depth of greatest invasion in any of these sites, including stomach. (For extension to esophagus or duodenum via serosa, see code 610).\n\n**Note 2**: If the diagnosis states linitis plastica and no other information regarding extension is available, use code 350. Linitis plastica is defined as diffuse involvement of the entire thickness of the stomach wall.\n\n**Note 3**: Codes 610, 650, and 700 are for contiguous extension from the site of origin. Discontinuous involvement is coded in CS Mets at DX, except for implants within the stomach (code 300). Malignant (positive) peritoneal cytology is coded in CS Mets at DX.",
- "last_modified" : "2015-05-27T16:19:06.091Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "(Adeno)carcinoma, noninvasive, in a polyp", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS, including intramucosal, NOS", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Invades muscularis mucosae", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "122", "Mucosal tumor with intraluminal extension to esophagus or duodenum", "VALUE:T1a", "VALUE:T1", "VALUE:RE", "VALUE:L" ], [ "125", "Stated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "130", "Confined to head of polyp\nExtension to stalk of polyp", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "Confined to stalk of polyp", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Tumor in polyp, NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion)", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "165", "Submucosal tumor with intraluminal extension to esophagus or duodenum", "VALUE:T1b", "VALUE:T1", "VALUE:RE", "VALUE:L" ], [ "170", "Stated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "180", "Stated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Invades into but not through muscularis propria", "VALUE:T2", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "300", "Implants inside stomach\nLocalized, NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "340", "OBSOLETE DATA CONVERTED V0203\nSee code 180\n\nStated as T1, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "350", "Linitis plastica and no other information regarding extension available \n(See Note 2)", "VALUE:T2", "VALUE:T2a", "VALUE:RE", "VALUE:L" ], [ "360", "Invasion of muscularis propria with intraluminal extension to esophagus or duodenum", "VALUE:T2", "VALUE:T2a", "VALUE:RE", "VALUE:L" ], [ "390", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded", "VALUE:T3", "VALUE:T2b", "VALUE:L", "VALUE:L" ], [ "415", "Invasion through muscularis propria with intraluminal extension to esophagus or duodenum", "VALUE:T3", "VALUE:T2b", "VALUE:RE", "VALUE:L" ], [ "450", "Extension to adjacent (connective) tissue \nWITHOUT perforation of visceral peritoneum covering these structures:\n Gastric artery\n Ligaments: \n Gastrocolic\n Gastrohepatic\n Gastrosplenic\n Omentum, NOS :\n Greater\n Lesser\n Perigastric fat", "VALUE:T3", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "480", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T2b", "VALUE:L", "VALUE:L" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 505, 555\n\nInvasion of/through serosa (mesothelium) (tunica serosa) (visceral peritoneum), including perforation of visceral peritoneum covering the gastric ligaments or the omentum \nWITHOUT invasion of adjacent structures\nStated as T4a, NOS", "VALUE:T4a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "505", "Invasion of/through serosa (mesothelium) (tunica serosa) (visceral peritoneum), including perforation of visceral peritoneum covering the gastric ligaments or the omentum \nWITHOUT invasion of adjacent structures listed in codes 610, 650, and 700", "VALUE:T4a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "OBSOLETE DATA CONVERTED V0203\nSee code 551\n\n(450) + (500)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "551", "505 + 450", "VALUE:T4a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "555", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 610, 650\n\nDiaphragm\nDuodenum via serosa or NOS \nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon/mesocolon \n(including flexures)\nCeliac axis\nAorta", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "Diaphragm\nDuodenum via serosa\nDuodenum, NOS\nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon/mesocolon (including flexures)", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Aorta\nCeliac axis", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "690", "OBSOLETE DATA CONVERTED V0203\nSee code 805\n\nStated as T4b, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "Abdominal wall\nAdrenal (suprarenal) gland\nKidney\n\n Retroperitoneum", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "805", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bam.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bam.json
deleted file mode 100644
index 8da30ba79..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bam.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bam",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The intrinsic muscles of tongue are four paired muscles within the tongue which control its shape. The extrinsic muscles originate from structures outside the tongue and control its positioning.\n\n**Note 2**: The assignment of T1 and T2 categories for tumors of the oropharynx is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 650, 775, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: Use code 300 for localized tumor only if no information is available to assign codes 100, 200, 400, 405, or 410.",
- "footnotes" : "- For CS Extension codes 100-620 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.\n- For CS Extension codes 100-650 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:06.145Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor on one side confined to posterior one-third of tongue:\n Lamina propria\n Submucosa", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:L", "VALUE:L" ], [ "200", "Musculature, intrinsic or NOS", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS\nMidline tumor", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:L", "VALUE:L" ], [ "400", "Base of tongue tumor crosses midline\nTumor of lingual tonsil on both sides", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:L", "VALUE:L" ], [ "500", "Anterior two-thirds of tongue for base of tongue\nLingual tonsil for base of tongue\nBase of tongue for lingual tonsil\nFloor of mouth\nLower gingiva", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:RE", "VALUE:RE" ], [ "530", "Sublingual gland", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nEpiglottis, lingual surface assigned to T3 in AJCC 7, see code 640\n\nEpiglottis, lingual (pharyngeal) surface\nGlossoepiglottic fold\nGlossopharyngeal fold\nLateral pharyngeal wall\nPharyngoepiglottic fold\nTonsillar pillars and fossae\nTonsils\nVallecula", "ERROR:", "JUMP:extension_size_ajcc6_xai", "VALUE:RE", "VALUE:RE" ], [ "610", "Glossoepiglottic fold\nGlossopharyngeal fold\nLateral pharyngeal wall\nPharyngoepiglottic fold\nTonsillar pillars and fossae\nTonsils\nVallecula", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:RE", "VALUE:RE" ], [ "620", "Soft palate, inferior surface or NOS including uvula", "JUMP:extension_size_ajcc7_xeu", "JUMP:extension_size_ajcc6_xai", "VALUE:D", "VALUE:RE" ], [ "640", "Epiglottis, lingual surface", "VALUE:T3", "JUMP:extension_size_ajcc6_xai", "VALUE:RE", "VALUE:RE" ], [ "645", "640 + 620 \n\nEpiglottis, lingual surface plus soft palate", "VALUE:T3", "JUMP:extension_size_ajcc6_xai", "VALUE:D", "VALUE:RE" ], [ "650", "Stated as T3 with no other information on extension", "VALUE:T3", "JUMP:extension_size_ajcc6_xai", "VALUE:RE", "VALUE:RE" ], [ "710", "Mandible for lingual tonsil", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "715", "710 + 620 \n\nMandible plus soft palate", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "720", "Mandible for base of tongue", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "740", "Medial pterygoid muscle\nHard palate", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "750", "Musculature of tongue, extrinsic:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "760", "Hypopharynx", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "Larynx", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "780", "Skin", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Lateral nasopharynx\nLateral pterygoid muscle\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "795", "(770, 780, or 790) + 760", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nRecode involved structures to 620, 645, 715, 760, 790, or 795 as appropriate.\n\nContiguous extension to:\n Base of skull\n Carotid artery\n Hypopharynx\n Lateral nasopharynx\n Lateral pterygoid muscle\n Pterygoid plates\n Uvula", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "805", "Further contiguous extension including:\n Skull base\n Carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "820", "OBSOLETE DATA CONVERTED V0200\nSee code 805\n\nFurther contiguous extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ban.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ban.json
deleted file mode 100644
index 748736b6a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ban.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_ban",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: If there is a discrepancy between the Clark level and the pathologic description of extent (invasion into the layers of the dermis), use the higher (more extensive) code.\n\n**Note 2**: Code the greatest extent of invasion from any procedure performed on the lesion, whether it is described as a biopsy or an excision. For example, if a punch biopsy with involvement of Clark level IV is followed by a re-excision with residual tumor involving Clark level II, use code 300 (Clark level IV).\n\n**Note 3**: Satellite lesions/nodules or in-transit metastases are coded in CS Lymph Nodes.\n\n**Note 4**: Ulceration of the melanoma is coded in CS Site-Specific Factor 2.",
- "footnotes" : "- For CS Extension codes 100-300, 400-800, and 999 ONLY, the T category for AJCC 7staging is assigned based on the values of CS Site-Specific Factor 1, Measured Thickness, CS Site-Specific Factor 2, Ulceration, and for certain cases CS Site-Specific Factor 7, Primary Tumor Mitotic Count/Rate, as shown in the Thickness, Ulceration AJCC 7 Table.\n- For CS Extension codes 310-380 ONLY, the T category for AJCC 7 staging is assigned based on the values of CS Extension, CS Site-Specific Factor 1, Measured Thickness, CS Site-Specific Factor 2, Ulceration, and for certain cases CS Site-Specific Factor 7, Primary Tumor Mitotic Count/Rate, as shown in the ExtensionThickness Ulceration T Category AJCC 7 table.\n- For CS Extension codes 100-300, 400-800, and 999 ONLY, the T category for AJCC 6 staging is assigned based on the values of CS Site-Specific Factor 1, Measured Thickness, and CS Site-Specific Factor 2, Ulceration, as shown in the Thickness Ulceration AJCC 6 Table.\n- For CS Extension codes 310-380 ONLY, the T category for AJCC 6 staging is assigned based on the values of CS Extension, CS Site-Specific Factor 1, Measured Thickness, and CS Site-Specific Factor 2, Ulceration, as shown in the Extension, Thickness, Ulceration, T Category AJCC 6 Table.",
- "last_modified" : "2015-05-27T16:19:06.192Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive \n(Basement membrane of the epidermis is intact)\nClark level I", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Papillary dermis invaded\nClark level II", "JUMP:thickness_ulceration_ajcc7_xhu", "JUMP:thickness_ulceration_ajcc6_xbn", "VALUE:L", "VALUE:L" ], [ "200", "Papillary-reticular dermal interface invaded\nClark level III", "JUMP:thickness_ulceration_ajcc7_xhu", "JUMP:thickness_ulceration_ajcc6_xbn", "VALUE:L", "VALUE:L" ], [ "300", "Reticular dermis invaded\nClark level IV", "JUMP:thickness_ulceration_ajcc7_xhu", "JUMP:thickness_ulceration_ajcc6_xbn", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1a with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "315", "Stated as T1b with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T1 [NOS] with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "330", "Stated as T2a with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "335", "Stated as T2b with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "340", "Stated as T2 [NOS] with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T3a with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "355", "Stated as T3b with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "360", "Stated as T3 [NOS] with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "370", "Stated as T4a with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "375", "Stated as T4b with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "380", "Stated as T4 [NOS] with no other information on extension", "JUMP:extension_thickness_ulceration_tcategory_ajcc7_xkk", "JUMP:extension_thickness_ulceration_tcategory_ajcc6_xkj", "VALUE:L", "VALUE:L" ], [ "400", "Skin/dermis, NOS\nLocalized, NOS", "JUMP:thickness_ulceration_ajcc7_xhu", "JUMP:thickness_ulceration_ajcc6_xbn", "VALUE:L", "VALUE:L" ], [ "500", "Subcutaneous tissue invaded (through entire dermis)\nClark's level V", "JUMP:thickness_ulceration_ajcc7_xhu", "JUMP:thickness_ulceration_ajcc6_xbn", "VALUE:L", "VALUE:RE" ], [ "800", "Further contiguous extension:\nUnderlying cartilage, bone, skeletal muscle", "JUMP:thickness_ulceration_ajcc7_xhu", "JUMP:thickness_ulceration_ajcc6_xbn", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "JUMP:thickness_ulceration_ajcc7_xhu", "JUMP:thickness_ulceration_ajcc6_xbn", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bao.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bao.json
deleted file mode 100644
index b7adaabe1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bao.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bao",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Ignore intraluminal extension to adjacent segment(s) of colon/rectum or to the ileum from the cecum; code depth of invasion or extracolonic spread as indicated.\n\n**Note 2**: Codes 600-800 are used for contiguous extension from the site of origin. Discontinuous involvement is coded in CS Mets at DX.\n\n**Note 3**: Tumor that is adherent to other organs or structures, macroscopically, is classified cT4b. If tumor is present in adhesion(s) upon microscopic examination, the tumor is classified as pT4b. Use code 565 for macroscopic adhesions if no pathologic confirmation, and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesion(s) upon microscopic examination, the classification is based upon extent of tumor invasion into or through the wall; use codes 000-160, 200, 400, 450, 458, 500, and 550 as appropriate to describe the microscopically confirmed depth of tumor invasion for these cases. Use codes 600, 655-800 to code invasion of underlying structures from the adherent tumor. \n\n**Note 4**: High grade dysplasia and severe dysplasia are generally not reportable in cancer registries, but if a registry does collect these, codes 000 or 050 should be used.",
- "last_modified" : "2015-05-27T16:19:06.256Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "(Adeno)carcinoma, noninvasive, in a polyp or adenoma", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS, including intramucosal, NOS", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria, including lamina propria in the stalk of a polyp", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "120", "Confined to and not through the muscularis mucosae, including muscularis mucosae in the stalk of a polyp.", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "130", "Confined to head of polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "Confined to stalk of polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor in polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion), including submucosa in the head or stalk of a polyp", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded\n\nStated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS \nConfined to colon, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS\nWall, NOS", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 470\n\nStated as T3 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Extension to:\n All colon sites:\n Adjacent tissue(s), NOS\n Connective tissue\n Mesenteric fat\n Mesentery \n Mesocolon\n Pericolic fat\n Ascending and descending colon\n Retroperitoneal fat \n Transverse colon and flexures\n Gastrocolic ligament\n Greater omentum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 3, codes 565 and 570\n\nAdherent to other organs or structures, but no microscopic tumor found in adhesion(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)\nTumor penetrates to surface of visceral peritoneum", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "550", "500 + (450 or 458)", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "560", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "565", "Adherent to other organs or structures clinically with no microscopic examination\nTumor found in adhesion(s) if microscopic examination performed", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to other organs or structures, NOS", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "All colon sites:\n Small intestine\nCecum:\n Greater omentum\nAscending colon:\n Greater omentum\n Liver, right lobe\nTransverse colon and flexures:\n Gallbladder/bile ducts\n Kidney\n Liver\n Pancreas\n Spleen\n Stomach\nDescending colon:\n Greater omentum\n Pelvic wall\n Spleen\nSigmoid colon:\n Greater omentum\n Pelvic wall", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 655 and 675\n\nAll colon sites:\n Abdominal wall \n Retroperitoneum (excluding fat) ", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "655", "All colon sites:\n Abdominal wall\nAll colon sites excluding sigmoid:\n Retroperitoneum (excluding fat)", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "Ascending colon:\n Right kidney\n Right ureter\nDescending colon:\n Left kidney\n Left ureter", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "675", "Sigmoid colon:\n Retroperitoneum (excluding fat)", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "700", "Cecum, ascending, descending and sigmoid colon:\n Fallopian tube\n Ovary\n Uterus", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "All colon sites unless otherwise stated above:\n Adrenal (suprarenal) gland\n Bladder\n Diaphragm\n Fistula to skin\n Gallbladder\n Other segment(s) of colon via serosa", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension:\n Cecum:\n Kidney\n Liver\n Ureter\n Transverse colon and flexures:\n Ovary\n Fallopian tube\n Uterus\n Ureter\n Sigmoid colon:\n Cul de sac (rectouterine pouch)\n Ureter", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "900", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bap.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bap.json
deleted file mode 100644
index 0bc1cee23..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bap.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bap",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The assignment of T1 and T2 categories for tumors of the oropharynx is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 305, 310, 540, 705, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 2**: Use code 300 for localized tumor only if no information is available to assign code 150, 200, 305, 310, or 530.",
- "footnotes" : "- For CS Extension codes 150-520 ONLY, the T category for AJCC 7staging is assigned based on the value of CS Tumor Size as shown in the Extension Size AJCC 7 Table for this schema.\n- For CS Extension codes 100-550 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:06.311Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\nEpiglottis mapped to T3 in CSv2, see code 530\n\nInvasive tumor confined to one of the following subsites:\n Anterior wall (including vallecula and lingual (anterior) surface of epiglottis)\n One lateral wall\n Posterior wall", "ERROR:", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor confined to one of the following subsites: \n Anterior wall including vallecula \n One lateral wall (including tonsillar pillar/fossa, palatine tonsil, tonsil, NOS)\n Posterior wall ", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "200", "Involvement of two or more subsites listed in code 100:\n Posterior, anterior, lateral wall(s)", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "305", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "400", "Soft palate, inferior surface including uvula \nSoft palate, NOS", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "410", "OBSOLETE DATA CONVERTED V0200\nT4a involvement per curator, see code 630\n\nHypopharynx NOS\nPyriform sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "Soft palate, superior (nasopharyngeal) surface", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "500", "Base of tongue (including lingual tonsil)\nBuccal mucosa (inner cheek)\nFloor of mouth\nGum (gingiva)", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "510", "Any site in codes 150-500 WITH fixation", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "520", "Involvement of both lateral walls through soft palate or base of tongue", "JUMP:extension_size_ajcc7_xdw", "JUMP:extension_size_ajcc6_xaz", "VALUE:D", "VALUE:RE" ], [ "530", "Epiglottis, lingual surface", "VALUE:T3", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "531", "530 + 200", "VALUE:T3", "JUMP:extension_size_ajcc6_xaz", "VALUE:L", "VALUE:L" ], [ "533", "530 + (400, 420, 500, 510)\n\nEpiglottis, lingual surface plus any structure in codes 400, 420, 500, and 510 ", "VALUE:T3", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "535", "530 WITH fixation\nWITH or WITHOUT involvement of any site in codes 400, 420, 500, and 510", "VALUE:T3", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "538", "530 +520\n\nEpiglottis, lingual surface, plus both lateral walls through soft palate or base of tongue", "VALUE:T3", "JUMP:extension_size_ajcc6_xaz", "VALUE:D", "VALUE:RE" ], [ "540", "Stated as T3 with no other information on extension", "VALUE:T3", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED V0200 \nExtension to lingual surface of epiglottis assigned to T3 in AJCC 7\nSee codes 510, 535 \n\nAny extension coded in 100-500 WITH fixation ", "ERROR:", "JUMP:extension_size_ajcc6_xaz", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nT4 involvement per curator , see codes 610, 635, 675, 708, 715, 718\n\nPrevertebral fascia or muscle\nSoft tissue of neck", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "610", "Soft tissue of neck", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA CONVERTED V0200\nSee code 710 \n\nNasopharynx, lateral, or NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "630", "Hypopharynx NOS\nPyriform sinus", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "635", "630 + (420, 500, 510, 535, or 610)", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "650", "Larynx, NOS\nMedial pterygoid muscle, or pterygoid muscle, NOS\nPosterior surface of epiglottis", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "675", "(610, 630, 650) + 520 \n\nInvolvement of any structure in codes 610, 630, and 650 plus involvement of both lateral walls through soft palate or base of tongue ", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:RE" ], [ "700", "Deep extrinsic muscles of tongue: \n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus\nHard palate\nMandible", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "705", "Stated as T4a with no other information on exension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "708", "Prevertebral fascia/muscle", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "710", "Nasopharynx, lateral or NOS", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "715", "(708 or 710) + 520 \n\nPrevertebral fascia/muscle or nasopharynx plus involvement of both lateral walls through soft palate or base of tongue", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "718", "(708 and/or 710) + 700 \n\nPrevertebral fascia/muscle or nasopharynx plus any structure in code 700", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "720", "Lateral pterygoid muscle\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "750", "Base of skull\nBone of skull\nBone, NOS (excluding bones in codes 700, 720)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "760", "OBSOLETE DATA CONVERTED V0200 \nSee code 750 \n\nBone ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "770", "Carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension:\n Anterior 2/3 of tongue\n Parotid gland", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baq.json
deleted file mode 100644
index 63da64506..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baq.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_baq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The assignment of T1 and T2 categories for tumors of the oropharynx is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 645, 735, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 2**: Use code 300 for localized tumor ONLY if no information is available to assign code 100, 200, 400, 405, or 410.",
- "footnotes" : "- For CSExtension codes 100-600 ONLY, the T category for AJCC staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.\n- For CS Extension codes 100-645 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:06.382Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor on one side confined to:\n Lamina propria\n Submucosa", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:L", "VALUE:L" ], [ "200", "Musculature invaded", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:L", "VALUE:L" ], [ "400", "Tumor crosses midline", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:L", "VALUE:L" ], [ "500", "Buccal mucosa (inner cheek)\nGum (gingiva), upper", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:RE", "VALUE:RE" ], [ "600", "Lateral pharyngeal wall\nTonsillar pillars and fossae\nTonsils", "JUMP:extension_size_ajcc7_xfc", "JUMP:extension_size_ajcc6_xav", "VALUE:RE", "VALUE:RE" ], [ "640", "Epiglottis, lingual surface", "VALUE:T3", "JUMP:extension_size_ajcc6_xav", "VALUE:D", "VALUE:D" ], [ "645", "Stated as T3 with no other information on extension", "VALUE:T3", "JUMP:extension_size_ajcc6_xav", "VALUE:RE", "VALUE:RE" ], [ "650", "Hard palate", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "670", "Nasal cavity", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "675", "(650 or 670) + 640\n\nHard palate or nasal cavity plus epiglottis, lingual surface", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "700", "Mandible\nMaxilla \nPalatine bone (bone of hard palate)", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "710", "Pterygoid muscle, medial or NOS", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "720", "Tongue\nDeep (extrinsic) muscle of tongue:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "730", "Larynx\nHypopharynx", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "733", "(700, 710, 720, or 730) + 670", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "735", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "740", "Maxillary sinus (antrum) \nNasopharynx, lateral or NOS", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "745", "740 + 670", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA CONVERTED V0200\nSee code 670\n\nNasal cavity", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "780", "Pterygoid muscle, lateral\nPterygoid plates\n\nNote: For medial pterygoid muscle or pterygoid muscle, NOS, see code 710", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "790", "780 + (640, 700 - 730, or 740) \n\nAny structure in 780 plus any structure in 640, 700 - 730, or 740", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including:\n Carotid artery (encased)\n Skull base", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bar.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bar.json
deleted file mode 100644
index 7b3bf9a0d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bar.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bar",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: If there is fixation of hemilarynx or larynx, code to 550, not 420 or 450.\n\n**Note 2**: Use code 300 for localized tumor only if no information is available to assign code 100, 200, or 305.\n\n**Note 3**: Use code 305, 455, 565, 638, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "footnotes" : "- For CSExtension codes 100, 200, 300, 305, 400, 420, 450, and 500 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100, 200, 300, 305, 400, 420, 450, and 500 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:06.431Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to one of the following subsites:\n Laryngopharynx\n Postcricoid area\n Posterior pharyngeal wall\n Pyriform sinus", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA CONVERTED V0200\nSee code 420\n\nCode 100 with tumor fixation", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "200", "Tumor invades more than one subsite of hypopharynx (listed in code 100)\nWITHOUT fixation of hemilarynx", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:L", "VALUE:L" ], [ "305", "Stated as T1 with no other information on extension", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:L", "VALUE:L" ], [ "400", "Oropharynx", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:RE", "VALUE:RE" ], [ "420", "Code 100 with tumor fixation\nWITHOUT fixation of hemilarynx", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:RE", "VALUE:RE" ], [ "450", "Code 200, 300, or 400 with tumor fixation\nWITHOUT fixation of hemilarynx", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:RE", "VALUE:RE" ], [ "455", "Stated as T2 with no other information on extension", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:L", "VALUE:L" ], [ "500", "Larynx WITHOUT fixation", "JUMP:extension_size_xbq", "JUMP:extension_size_xbq", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA CONVERTED V0104\nSee code 450\n\nAny of codes 100-400 WITH fixation of tumor or fixation, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "550", "Fixation of hemilarynx or larynx", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "560", "Esophagus", "VALUE:T3", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "565", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "Central compartment soft tissues of neck including:\n Prelaryngeal strap muscles\n Subcutaneous fat", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA CONVERTED V0200\nAssigned to T3 in AJCC7, see code 560\n\nEsophagus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "620", "Thyroid gland", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:RE" ], [ "630", "Cricoid cartilage\nThyroid cartilage", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:RE" ], [ "635", "Hyoid bone", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "638", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "640", "Prevertebral fascia/muscle(s)", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "645", "640 + 635\n\nPrevertebral fascia/muscles plus hyoid bone", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "650", "Carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "655", "650 + 635\n\nCarotid aratery plus hyoid bone", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "660", "OBSOLETE DATA CONVERTED V0200\nSee code 635\n\nHyoid bone", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "Mediastinal structures", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "760", "Base of tongue\nFloor of mouth\nNasopharynx", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bas.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bas.json
deleted file mode 100644
index 13cd94435..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bas.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bas",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Parapharyngeal involvement denotes postero-lateral infiltration of tumor beyond the pharyngobasilar fascia. The pharyngobasilar fascia is the fibrous layer of the pharyngeal wall between the mucosa and the muscular layer, attached superiorly to the basilar part of the occipital bone and diminishing in thickness as it descends.\n\n**Note 2**: The masticator space primarily consists of the muscles of mastication, the medial and lateral pterygoid, masseter, and temporalis muscles. The space also includes the ramus of the mandible and the third division of cranial nerve V as it passes through the foramen ovale into the suprahyoid neck.\n\n**Note 3**: Use code 300 for localized tumor ONLY if no information is available to assign codes 105 or 205. \n\n**Note 4**: Use code 510, 585, 645, or 810 if the physician's assignment of T category is the ONLY information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:06.483Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to one of the following subsites:\n Inferior wall (superior surface of soft palate)\n One lateral wall\n Posterior superior wall (vault)", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "105", "Invasive tumor confined to one of the following subsites:\n Inferior wall (superior surface of soft palate)\n One lateral wall\n Posterior superior wall (vault)", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nInvolvement of two or more subsites:\n Lateral wall extending into eustachian tube/middle ear\n Posterior, inferior, or lateral wall(s)", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "205", "Involvement of two or more subsites:\n Lateral wall extending into eustachian \n tube/middle ear\n Posterior, inferior, or lateral wall(s)", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nConfined to nasopharynx\nLocalized, NOS", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "305", "Confined to nasopharynx\nLocalized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Oropharynx\nSoft palate, inferior surface including uvula\nWITHOUT parapharyngeal extension", "VALUE:T1", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "500", "Nasal cavity \nWITHOUT parapharyngeal extension", "VALUE:T1", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "505", "Extension to soft tissue, NOS (excluding soft tissue of neck)", "VALUE:T1", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "510", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "520", "OBSOLETE DATA CONVERTED V0203\nSee code 505\n\nExtends to soft tissue NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "550", "OBSOLETE DATA RETAINED V0200\n\nAny extension coded in 100-500 WITH fixation or tumor \nDescribed only as FIXED", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "555", "Any extension coded in 105, 205, 305, 400, 500, or 505\nWITH fixation or tumor described only as FIXED", "VALUE:T2", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "560", "OBSOLETE DATA RETAINED V0200\n\nAny extension coded in 100-500 WITH parapharyngeal extension", "ERROR:", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "565", "Any extension coded in 105, 205, 305, 400, 500, 505, or 555\nWITH parapharyngeal extension", "VALUE:T2", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "570", "OBSOLETE DATA CONVERTED V0200\nSee code 610\n\nHard palate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "580", "OBSOLETE DATA RETAINED V0200\n\nPterygopalatine fossa ", "ERROR:", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "585", "Pterygopalatine fossa \nWITHOUT bone invasion", "VALUE:T2", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "590", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nBone, including skull", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "605", "Bony structures of skull base\nFloor of orbit\nCartilage, NOS\nBone, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Hard Palate", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "620", "Paranasal sinus", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "645", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nIn CSv1, extension to the orbit was included in both codes 650 and 700. In addition, the instructions for coding invasion of orbital bone were not clear. Codes 650 and 700 should be reviewed for orbital involvement. Involvement of bone of floor of orbit should be coded 605, and other orbit involvement should be coded 710.\n\nOrbit", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nSee note in code 650\n\nBrain\nCranial nerves\nHypopharynx\nInfratemporal fossa\nOrbit\nIntracranial extension, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "Brain\nCranial nerve involvement\nIntracranial extension, NOS\nHypopharynx\nInfratemporal fossa/masticator space\nOrbit except bone of floor of orbit (see code 605) ", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA CONVERTED V0200\nSee code 710\n\nMasticator space", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension including:\n Soft tissues of neck", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bat.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bat.json
deleted file mode 100644
index b178db3ed..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bat.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bat",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Impaired vocal cord mobility, also described as vocal cord paresis, may suggest invasion of intrinsic laryngeal muscle. Fixation of the vocal cord may be described as immobility of the arytenoids noted on endoscopy, vocal cord paralysis, or deviation of larynx to fixed side.\n\n**Note 2**: Use code 450 for localized tumor only if no information is available to assign codes 100 through 400.\n\n**Note 3**: Use code 130, 375, 530, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:06.541Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA CONVERTED V0200\nSee code 130\n\nInvasive tumor with normal vocal cord mobility: \nConfined to glottis, NOS; Intrinsic larynx; laryngeal commissure(s) anterior, posterior; vocal cord(s), NOS, true vocal cord(s), true cord(s)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "110", "One vocal cord with normal vocal cord mobility\n\nStated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "120", "Both vocal cords with normal vocal cord mobility\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "130", "Invasive tumor with normal vocal cord mobility: \n Confined to glottis, NOS:\n Intrinsic larynx\n Laryngeal commissure(s):\n Anterior\n Posterior; \n Vocal cord(s), NOS:\n True vocal cord(s)\n True cord(s)\n\nStated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "300", "Tumor involves adjacent regions(s) of larynx:\n Subglottis\n Supraglottis:\n Aryepiglottic fold\n Arytenoid cartilage:\n Corniculate tubercle\n Cuneiform tubercle\n Ventricular bands (false vocal cord(s))", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "350", "Impaired vocal cord mobility", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "375", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "400", "Tumor limited to larynx \nWITH vocal cord fixation\nInvolvement of intrinsic muscle(s) of larynx:\n Aryepiglottic\n Arytenoid \n Cricoarytenoid\n Cricothyroid\n Thyroarytenoid \n Thyroepiglottic\n Vocalis", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "450", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "510", "Paraglottic space", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "520", "Inner cortex of thyroid cartilage (minor thyroid cartilage erosion)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "530", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "600", "Base of tongue\nHypopharynx, NOS\nPre-epiglottic tissues\nPostcricoid area\nPyriform sinus\nVallecula", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "610", "600 + 520\n\nAny structure in code 600 plus inner cortex of thyroid cartilage", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "680", "Extension to/through:\n Cricoid cartilage\n Outer cortex of thyroid cartilage\n(See code 520)", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "700", "Extension to/through tissues beyond larynx:\n Strap muscles:\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Oropharynx\n Skin\n Soft tissue of neck\n Thyroid gland\n Trachea", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "710", "Cervical esophagus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "730", "Deep extrinsic muscle(s) of tongue", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension, including:\n Mediastinal structures\n Prevertebral space\n Carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bau.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bau.json
deleted file mode 100644
index 1fd971697..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bau.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bau",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Impaired vocal cord mobility may be described as vocal cord paresis, and may suggest invasion of intrinsic laryngeal muscle. Fixation of the vocal cord may be described as immobility of the arytenoids noted on endoscopy, paralysis of the vocal cords, or deviation of larynx to the fixed side.\n\n**Note 2**: Use code 450 for localized tumor only if no information is available to assign codes 100 through 400.\n\n**Note 3**: Use code 685, 735, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:06.605Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Supraglottis (one subsite):\n Aryepiglottic fold\n Arytenoid cartilage\n Corniculate cartilage\n Cuneiform cartilage\n Epilarynx, NOS\n False cords:\n Ventricular bands\n Ventricular cavity\n Ventricular fold\n Infrahyoid epiglottis\n Laryngeal cartilage, NOS\n Laryngeal (posterior) surface of epiglottis\n Suprahyoid epiglottis (including tip, lingual (anterior) and laryngeal surfaces)\nWITH normal vocal cord mobility\n\nStated as T1 with no further information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Tumor involves mucosa of more than one subsite of supraglottis listed in code 100\nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "230", "Tumor involves mucosa of glottis \nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "240", "Tumor involved adjacent subsites in supraglottis or glottis, NOS, mucosal involvement not specified,\nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "250", "Involvement of any structures in supraglottic larynx listed in code 100\nand/or glottis\nWITH impaired vocal cord mobility", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\nSee code 240\n\nTumor involves adjacent region(s) of larynx", "ERROR:", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "320", "Tumor involves mucosa of regions outside supraglottis, including:\n Base of tongue\n Vallecula\n Medial wall of pyriform sinus\nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "350", "OBSOLETE DATA RETAINED V0200 \nSee codes 250 and 360 \n\nImpaired vocal cord mobility", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "360", "Involvement of any structures in code 320\nWITH impaired vocal cord mobility", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "365", "Tumor involves adjacent regions of supraglottis or glottis or region outside supraglottis, NOS, mucosal involvement not specified, \nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "375", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "390", "Involvement of subglottis \nWITHOUT vocal cord fixation", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "395", "390 + 320\n\nSubglottis plus any structure in code 320 WITHOUT vocal cord fixation", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "400", "Involvement of any structures in supraglottis (code 100), glottis, and subglottis WITH vocal cord fixation", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "450", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "520", "Paraglottic space \nWITHOUT vocal cord fixation", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "530", "520 + 320", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSee code 320\n\nTumor involves region outside the supraglottis\nWITHOUT fixation, including:\n Medial wall pyriform sinus\n Mucosa of base of tongue\n Vallecula", "ERROR:", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA RETAINED V0200\n\nCode 600 WITH fixation", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "625", "Involvement of any structures in code 320 and/or 520 \nWITH vocal cord fixation", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "Hypopharynx, NOS\nPostcricoid area\nPre-epiglottic tissues", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "660", "Deep base of tongue", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "670", "OBSOLETE DATA CONVERTED V0200\nSee code 690\n\nCricoid cartilage", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "680", "Inner cortex of thyroid cartilage (minor erosion)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "685", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "690", "Cricoid cartilage", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "695", "690 + 680\n\nCricoid cartilage plus inner cortex of thyroid cartilage ", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "700", "Extension to/through:\n Esophagus\n Oropharynx\n Soft tissues of neck\n Outer cortex of thyroid cartilage\n Thyroid gland", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "720", "Extension to/through:\n Strap muscle(s)\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Skin", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "730", "Extension to/through:\n Deep extrinsic muscle(s) of tongue \n Trachea", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "735", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension, including:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bav.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bav.json
deleted file mode 100644
index e3f357797..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bav.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bav",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Impaired vocal cord mobility may be described as vocal cord paresis, and may suggest invasion of intrinsic laryngeal muscle. Fixation of the vocal cord maybe described as immobility of the arytenoids noted on endoscopy, paralysis of the vocal cords, or deviation of larynx to the fixed side.\n\n**Note 2**: Use code 450 for localized tumor ONLY if no information is available to assign codes 100 through 400.\n\n**Note 3**: Use code 775, 810, or 815 if the physician's assignment of T category is the ONLY information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:06.664Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor with normal vocal cord mobility confined to subglottis\n\nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Tumor involves adjacent regions(s) of larynx:\n Supraglottis\n Glottis\nWITH normal or impaired mobility\n\nStated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "400", "Tumor limited to larynx \nWITH vocal cord fixation\n \nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "450", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "600", "Base of tongue\nHypopharynx, NOS\nPostcricoid area\nPre-epiglottic tissues\nPyriform sinus (pyriform fossa)\nVallecula", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "680", "Extension to/through cricoid cartilage or thyroid cartilage", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "700", "Extension to/through:\n Cervical esophagus\n Deep extrinsic muscles of tongue\n Strap muscles:\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Oropharynx\n Skin\n Soft tissues of neck\n Thyroid gland\n Trachea", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "730", "OBSOLETE DATA CONVERTED V0200\nSee code 800\n\nContiguous extension to other tissues beyond larynx not specified in codes 700 or 800", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension including:\n Mediastinal structures\n Prevertebral space\n Carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baw.json
deleted file mode 100644
index bd51ff5ff..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baw.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_baw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Impaired vocal cord mobility may be described as vocal cord paresis, and may suggest invasion of intrinsic laryngeal muscle. Fixation of the vocal cord maybe described as immobility of the arytenoids noted on endoscopy, paralysis of the vocal cords, or deviation of larynx to the fixed side.\n\n**Note 2**: Use code 450 for localized tumor only if no information is available to assign codes 100 through 400.\n\n**Note 3**: Use code 375, 630, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:06.728Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to site of origin\n\nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Tumor involves more than one subsite of supraglottis or glottis \nWITHOUT fixation or NOS", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Tumor involves adjacent regions(s) of larynx", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "350", "Impaired vocal cord mobility", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "375", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 410, 630\n\nTumor limited to larynx WITH vocal cord fixation\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "Tumor limited to larynx WITH vocal cord fixation", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "450", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "500", "Invasion of inner cortex of thyroid cartilage", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "Base of tongue\nHypopharynx, NOS\nPostcricoid area\nPre-epiglottic tissues\nPyriform sinus (pyriform fossa)\nVallecula", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "630", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "680", "Extension to/through cricoid cartilage and thyroid cartilage\n(See code 500)", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "700", "Extension to/through:\n Cervical esophagus\n Deep extrinsic muscle(s) of tongue\n Strap muscle(s):\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Oropharynx\n Skin\n Soft tissues of neck\n Thyroid gland\n Trachea", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension, including:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bax.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bax.json
deleted file mode 100644
index f09f9a1a1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bax.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bax",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Involvement of or extension to bone ncludes any type of tumor extension to the bone, such as erosion, invasion, extension, penetration, or destruction.\n\n**Note 2**: Use code 300 for localized tumor only if no information is available to assign code 100.\n\n**Note 3**: Code Base of skull, NOS only if no information available to code to more specific bony structures in skull.\n\n**Note 4**: Use code 665, 685, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:06.798Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa of maxillary sinus (antrum) \nWITHOUT erosion or destruction of bone\n\nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Tumor causing bone erosion or destruction \nEXCLUDING extension to:\n Posterior wall of maxillary sinus (see code 600)\n Pterygoid plates (see code 680)\nINCLUDING:\n Palatine bone, hard palate \n Middle nasal meatus \n Nasal cavity (floor, lateral wall, septum, turbinates)\n\nStated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "600", "Ethmoid sinus, anterior\nFloor or medial wall of orbit\nFloor or posterior wall of maxillary sinus\nMaxilla, NOS\nSubcutaneous tissues", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA CONVERTED V0200\nSee code 600\n\nBone of the posterior wall of maxillary sinus\nInvasion of maxilla, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "660", "Ethmoid sinus, posterior\nEthmoid sinus, NOS\nPterygoid fossa", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "665", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "675", "Base of skull, NOS", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "680", "Anterior orbital contents\nSkin of cheek\nPterygoid plates\nInfratemporal fossa\nCribriform plate\nSphenoid sinus\nFrontal sinus", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "685", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nRecode involved structures to code 675, 680, or 710 as appropriate\n\nBase of skull\nOrbital contents including eye\nPterygomaxillary or temporal fossa\nSoft palate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "Pterygomaxillary fossa\nTemporal fossa\nSoft palate", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "750", "Further contiguous extension including:\n Brain\n Clivus\n Cranial nerves (other than V2, maxillary division of trigeminal nerve)\n Dura\n Middle cranial fossa\n Nasopharynx\n Orbital apex", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bay.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bay.json
deleted file mode 100644
index 5fc1fa372..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bay.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bay",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Involvement of or extension to bone includes any type of tumor extension to the bone, such as erosion, invasion, extension, penetration, or destruction.\n\n**Note 2**: Extension to structures in codes 400 and higher may be from one or both ethmoid sinuses.\n\n**Note 3**: In code 700, \"minimal extension to anterior cranial fossa\" implies tumor pushing through cribriform plate, but without invasion of the dura or brain.\n\n**Note 4**: Code Base of skull NOS only if no information available to code to more specific bony structures in skull.\n\n**Note 5**: Use code 300 for localized tumor only if no information is available to assign codes 100, 120, 160, or 315.\n\n**Note 6**: Use code 315 410, 680, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:06.855Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "120", "Invasive tumor confined to left or right ethmoid sinus\nWITHOUT bony involvement", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA CONVERTED V0200\nSee code 320\n\nConfined to both ethmoid sinuses without bone involvement", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "160", "Confined to ethmoid sinus, NOS\n WITHOUT bony involvement", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "220", "Invasive tumor confined to either left or right ethmoid\nWITH bony invasion (involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "240", "OBSOLETE DATA CONVERTED V0200\nSee code 340\n\nConfined to both ethmoid sinuses\nWITH bony invasion (involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "260", "Confined to ethmoid sinus, NOS\nWITH bony invasion (involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "315", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "320", "Confined to both ethmoid sinuses \nWITHOUT bony involvement", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "340", "Confined to both ethmoid sinuses\n WITH bony invasion (involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "400", "Extension to nasal cavity with or without bony invasion (Involvement of perpendicular plate of ethmoid bone or ethmoid air cells):\n Floor\n Lateral wall\n Nasal vestibule\n Nasal cavity, NOS\n Septum\n Turbinates", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "410", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "620", "Base of skull, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "630", "Cribriform plate", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "640", "Medial wall or floor of orbit\nOrbital plate", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "Maxillary sinus", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "660", "Hard palate", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "680", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "700", "Anterior orbital contents\nSkin of nose\nSkin of cheek\nAnterior cranial fossa (minimal extension) (see Note 3)\nPterygoid plates\nSphenoid sinus\nFrontal sinus", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "720", "700 + 660 \n\nAny structure in code 700 plus hard palate", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "760", "Orbital apex\nDura\nBrain\nMiddle cranial fossa\nCranial nerves (other than V2, maxillary division of trigeminal nerve) \nNasopharynx\nClivus", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "780", "760 + 660 \n\nAny structure in code 760 plus palate", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baz.json
deleted file mode 100644
index 030c58148..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_baz.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_baz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC considers \"in situ carcinoma of salivary gland\" an impossible diagnosis. Any case so coded will be mapped to an unknown AJCC stage, in situ Summary Stage.\n\n**Note 2**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Mucoperiosteum is a compound structure of mucous membrane and periosteum. Cortical bone is the dense compact outer layer of bone.\n\n**Note 3**: The assignment of T1 and T2 categories for tumors of major salivary glands without exparenchymal extension is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 305, 310, 408, 625, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100, 305, or 310.",
- "footnotes" : "- For CS Extension codes 100-350 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-350 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:06.922Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to gland/duct of origin", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "305", "Stated as T1 with no other information on extension ", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "350", "Microscopic extraparenchymal extension ONLY to periglandular soft/connective tissue", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:RE", "VALUE:RE" ], [ "400", "Macroscopic extraparenchymal extension to:\n Periglandular soft/connective tissue\n Another major salivary gland (parotid, sublingual)\nSkeletal muscle:\n Digastric \n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid \n Pterygoid\n Styloglossus\n Stylohyoid", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "402", "Maxillary artery\nFacial artery or vein", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "405", "Spinal accessory nerve", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "408", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "450", "Periosteum of mandible", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "500", "Mandible\nNerves: \n Facial (7th) nerve\n Lingual nerve", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "503", "500 + 402", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "505", "(450 or 500) + 405 \n\nAny structure in 450 or 500 plus spinal accessory nerve", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "510", "External auditory meatus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "515", "510 + 402", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "520", "OBSOLETE DATA RETAINED V0200\nSee codes 402 and 650\n\nMajor blood vessels:\n Carotid artery \n Facial artery or vein\n Maxillary artery", "ERROR:", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "600", "Skin overlying gland", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "625", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "650", "Blood vessels:\n Carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "660", "650 + (405, 510, or 600) \n\nCarotid artery plus any structures in codes 405, 510, and 600", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "710", "Base of skull\nSkull, NOS", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "715", "(510 or 710) + 405", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA CONVERTED V0200\nSee code 405 \n\nSpinal accessory nerve", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "770", "Pterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bba.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bba.json
deleted file mode 100644
index 4f2246ad3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bba.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bba",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC considers \"in situ carcinoma of salivary gland\" an impossible diagnosis. Any case so coded will be mapped to an unknown AJCC stage, in situ Summary Stage.\n\n**Note 2**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Mucoperiosteum is a compound structure of mucous membrane and periosteum. Cortical bone is the dense compact outer layer of bone.\n\n**Note 3**: The assignment of T1 and T2 categories for tumors of major salivary glands without exparenchymal extension is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 305, 310, 408, 625, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100 or 305.",
- "footnotes" : "- For CS Extension codes 100-350 ONLY, the T category for AJCC 7 staging is assigned based on value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-350 ONLY, the T category for AJCC 6 staging is assigned based on value of CS Tumor Size as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:06.994Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to gland/duct of origin", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "305", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "350", "Microscopic extraparenchymal extension ONLY to periglandular soft/connective tissue", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:RE", "VALUE:RE" ], [ "400", "Macroscopic extraparenchymal extension to: \n Periglandular soft/connective tissue\n Another major salivary gland (parotid, submandibular)\n Skeletal muscle:\n Digastric\n Pterygoid\n Stylohyoid", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "402", "Maxillary artery\nFacial artery or vein", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "405", "Spinal accessory nerve", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "408", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "450", "Periosteum of mandible", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "505", "OBSOLETE DATA CONVERTED V0203\nSee code 515\n\n(450 or 510) + 405\n\n (Any structure in code 450 or 510 + Spinal accessory nerve)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "510", "Mandible \nNerves:\n Facial (7th)\n Lingual", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "515", "(450 or 510) + 402", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "518", "(450 or 510) + 405", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "600", "Skin", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "620", "External auditory meatus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "623", "(600 or 620) + 402", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "625", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nRecode involved structures to code 402, 515, 623, 655, or 660 as appropriate\n\n Blood vessel(s):\n Carotid artery\n Facial artery or vein\n Maxillary artery", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "655", "Carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "660", "655 + (405, 600, or 620) \n\nCarotid artery plus any structures in code 405, 600, or 620", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "710", "Base of skull\nSkull, NOS", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA CONVERTED V0200\nSee code 405 \n\nSpinal accessory nerve", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "790", "Pterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbb.json
deleted file mode 100644
index f102a4927..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbb.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Ignore intraluminal extension to adjacent segment(s) of esophagus or to cardia of stomach and code depth of invasion or extra-esophageal spread as indicated.\n\n**Note 2**: The three layers of the mucosa (epithelium, lamina propria, and muscularis mucosae) may be called the m1, m2, and m3 layers. The submucosa may be described as having inner, middle, and outer thirds called sm1, sm2, and sm3.\n\n**Note 3**: For this schema, AJCC defines Tis as high-grade dysplasia, in which they include \"all non-invasive neoplastic epithelium that was formerly called carcinoma in situ\". Cancers stated to be noninvasive or in situ are classified as Tis. High grade dysplasia is generally not reportable in cancer registries; but if a registry does collect high grade dysplasia, code 000 should be used.\n\n**Note 4**: If the tumor's extension is only described by a phrase like \"through the muscularis propria\", this could mean that the cancer has penetrated the outermost muscle cells but not beyond (T2); but usually \"through the muscularis\" is used to indicate that the cancer extends beyond the muscle and into adjacent tissue, consistent with a T3 tumor. When the most specific description is a phrase like \"through the muscularis\" or \"through the esophageal wall\", then use code 400 unless a T3 is contraindicated by other information.",
- "last_modified" : "2015-05-27T16:19:07.061Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive; high grade dysplasia", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS (including intramucosal, NOS)", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Invades muscularis mucosae", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "130", "Stated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "165", "Stated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Invades lamina propria, muscularis mucosae, or submucosa, with the exact layer not specified\n\nStated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Adventitia and/or soft tissue invaded\nEsophagus is described as \"FIXED\"", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "450", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nT4 subclassified in AJCC 7th Edition;\nSee Codes 610-730\n \nTumor invades adjacent structures\nCervical esophagus:\n Blood vessel(s): \n Carotid artery \n Jugular vein \n Subclavian artery \n Thyroid gland \nIntrathoracic, upper or mid-portion, esophagus:\n Blood vessel(s), major:\n Aorta \n Azygos vein \n Pulmonary artery/vein \n Vena cava \n Carina \n Diaphragm \n Main stem bronchus \n Trachea \nIntrathoracic, lower portion (abdominal), esophagus:\n Blood vessel(s): \n Aorta \n Gastric artery/vein \n Vena cava \n Diaphragm, not fixed, or NOS \n Stomach, cardia (via serosa)", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 615, 720, 725\n\nTumor invades adjacent structures\nCervical esophagus:\n Hypopharynx\n Jugular vein\n Larynx\n Thyroid gland \n \nIntrathoracic, upper or mid-portion, esophagus:\n Blood vessel(s), major:\n Azygos vein\n Diaphragm \n\nIntrathoracic, lower portion (abdominal), esophagus:\n Blood vessel(s):\n Gastric artery/vein\n Diaphragm, not fixed, or NOS\n Stomach, cardia (via serosa)\n Intrathoracic esophagus:\n Pleura", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "615", "Tumor invades adjacent structures:\n For cervical esophagus:\n Hypopharynx\n Jugular vein\n Larynx\n Thyroid gland \n For intrathoracic esophagus, upper or middle portion:\n Diaphragm \n For intrathoracic esophagus, lower portion (abdominal):\n Blood vessel(s), major:\n Gastric artery/vein\n Diaphragm, not fixed; diaphragm, NOS\n Stomach, cardia (via serosa)\n For intrathoracic esophagus:\n Pleura", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\nT4 subclassified in AJCC 7th Edition;\nSee Codes 610-730\n \nCervical esophagus:\n Carina \n Cervical vertebra(e) \n Hypopharynx \n Larynx \n Trachea \nIntrathoracic esophagus:\n Lung via bronchus \n Mediastinal structure(s), NOS\n Pleura\n Rib(s) \n Thoracic vertebra(e)", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "Thoracic/middle esophagus:\n Pericardium", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "680", "Cervical/upper esophagus:\n Pleura \nAbdominal/lower esophagus:\n Diaphragm fixed", "VALUE:T4a", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA CONVERTED V0203\nSee code 815\n\nStated as T4 [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "720", "Tumor invades adjacent structures:\n For intrathoracic esophagus, upper or middle:\n Azygos vein", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "725", "720 + 615", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "728", "720 + 660", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "730", "Tumor invades adjacent structures\n Cervical esophagus:\n Blood vessel(s): \n Carotid artery \n Subclavian artery\n Carina \n Cervical vertebra(e) \n Trachea \n Intrathoracic, upper or mid-portion, esophagus:\n Blood vessel(s), major:\n Aorta \n Pulmonary artery/vein \n Vena cava \n Carina \n Trachea \n Intrathoracic, lower portion (abdominal), esophagus:\n Blood vessel(s): \n Aorta \n Vena cava \n Intrathoracic esophagus (all portions):\n Adjacent Rib(s) \n Lung via bronchus\n Mediastinal structure(s), NOS \n Thoracic vertebra(e)", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "740", "730 + 660\n\nAny structure in code 730 involving thoracic/middle esophagus plus pericardium", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "745", "730 + 680\n\nAny structure in code 730 involving cervical/upper esophagus plus pleura\nOR\nAny structure in code 730 involving abdominal/lower esophagus plus fixation of diaphragm ", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Cervical/upper esophagus:\n Lung\n Main stem bronchus", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "780", "OBSOLETE DATA RETAINED V0200\nT4 subclassified in AJCC 7th Edition;\nSee Code 660\n\nThoracic/middle esophagus:\n Pericardium ", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\nT4 subclassified in AJCC 7th Edition;\nSee Codes 730 and 750\n\nFurther contiguous extension:\nCervical/upper esophagus:\n Lung\n Main stem bronchus\n Pleura\nAbdominal/lower esophagus:\n Diaphragm fixed", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Further contiguous extension\n\nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "815", "Invades adjacent structures, NOS\n\nStated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "820", "Tumor invades adjacent structures listed in codes 615, 660, 680, or 720, stated as unresectable", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbc.json
deleted file mode 100644
index 418bdd027..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbc.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In codes 390, 400, and 440, \"multiple (satellite) nodules/tumors\" includes satellitosis, multifocal tumors, and intrahepatic metastases.\n\n**Note 2**: Major vascular invasion (code 630) is defined as invasion of the branches of the main portal vein (right or left portal vein, not including sectoral or segmental branches) or as invasion of one or more of the three hepatic veins (right, middle, or left). Invasion of hepatic artery or vena cava is coded to 660.",
- "footnotes" : "- For CS Extension codes 390, 400, 420, and 440 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.\n- For CS Extension codes 390, 400, 420, and 440 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:07.139Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Single lesion (one lobe)\nWITHOUT intrahepatic vascular invasion, including vascular invasion not stated", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "More than one lobe involved by contiguous growth (single lesion)\nWITHOUT intrahepatic vascular invasion, including vascular invasion not stated", "VALUE:T1", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "170", "Confined to liver, NOS\nLocalized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 350\n\nSingle lesion (one lobe) WITH intrahepatic vascular invasion", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "250", "Single lesion \nWITH involvement of one or more lobes of liver or extension within liver not stated, \nWITH extension to gallbladder\nWITHOUT vascular invasion, including vascular invasion not stated", "VALUE:T1", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "270", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA CONVERTED V0200\nSee code 390\n\nMultiple (satellite) nodules/tumors (one lobe)\nWITHOUT\nintrahepatic vascular invasion, including vascular invasion not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "350", "Single lesion (one lobe ) \nWITH intrahepatic vascular invasion", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "370", "More than one lobe involved by contiguous growth (single lesion)\nWITH vascular invasion", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "380", "Single lesion \nWITH involvement of one or more lobes of liver or extension within liver not stated\nWITH extension to gallbladder\nWITH intrahepatic vascular invasion", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "390", "Multiple (satellite) nodules/tumors (one lobe)\nWITHOUT intrahepatic vascular invasion, including vascular invasion not stated", "JUMP:extension_size_ajcc7_xev", "JUMP:extension_size_ajcc6_xak", "VALUE:L", "VALUE:L" ], [ "400", "Multiple (satellite) nodules/tumors (one lobe)\nWITH intrahepatic vascular invasion", "JUMP:extension_size_ajcc7_xev", "JUMP:extension_size_ajcc6_xak", "VALUE:L", "VALUE:L" ], [ "420", "Multiple (satellite) nodules/tumors (one lobe) \nWITH extension to gallbladder\nWITH or WITHOUT intrahepatic vascular invasion", "JUMP:extension_size_ajcc7_xev", "JUMP:extension_size_ajcc6_xak", "VALUE:RE", "VALUE:RE" ], [ "440", "Multiple (satellite) nodules/tumors in more than one lobe of liver or on surface of parenchyma\nSatellite nodules, NOS", "JUMP:extension_size_ajcc7_xev", "JUMP:extension_size_ajcc6_xak", "VALUE:D", "VALUE:RE" ], [ "460", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA CONVERTED V0200\nSee code 170\n\nConfined to liver, NOS\nLocalized, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "510", "OBSOLETE DATA CONVERTED V0200\nSee code 150\n\nMore than one lobe involved by contiguous growth (single lesion)\nWITHOUT vascular invasion, including vascular invasion not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "520", "OBSOLETE DATA CONVERTED V0200\nSee code 370\n\nMore than one lobe involved by contiguous growth (single lesion)\nWITH vascular invasion", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "530", "OBSOLETE DATA CONVERTED V0200\nSee code 250\n\nExtension to gallbladder, extent within liver not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "540", "OBSOLETE DATA CONVERTED V0200\nSee code 250\n\nExtension to gallbladder 530 + (100 or 510)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "550", "OBSOLETE DATA CONVERTED V0200\nSee code 380\n\nExtension to gallbladder 530 + (200 or 520)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "560", "OBSOLETE DATA CONVERTED V0200\nSee code 420\n\nExtension to gallbladder 530 + (300 or 400)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "580", "OBSOLETE DATA CONVERTED V0200\nSee code 645\n\nExtrahepatic bile ducts", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "600", "Stated as T3a with no other information regarding extension", "VALUE:T3a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "630", "Single tumor (confined to one lobe) or multiple tumor(s) (confined to one lobe and not on surface of liver) \nWITH major vascular invasion: major branch(es) of portal or hepatic vein(s)\n(See Note 2)", "VALUE:T3b", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "635", "630 + 440\n\nSingle or multiple tumor(s) with major vascular invasion: major branch(es) of portal or hepatic vein(s) plus multiple nodules/tumors in more than one lobe of liver or on surface of parenchyma", "VALUE:T3b", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "638", "Stated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "639", "Stated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "640", "Direct extension/perforation of visceral peritoneum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "645", "Extrahepatic bile ducts", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA CONVERTED V0200\nSee code 440\n\nMultiple (satellite) nodules/tumors in more than one lobe of liver or on surface of parenchyma\nSatellite nodules, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "660", "Extension to hepatic artery or vena cava", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "OBSOLETE DATA CONVERTED V0200\nSee code 635\n\n630+650", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "Diaphragm", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "750", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nPerforation of visceral peritoneum included in 2 codes in CSv2: V0201, V0202. Any case coded 750 for perforation of visceral peritoneum should be recoded to 640. See codes 640, 755\n\nLesser omentum\nLigament(s):\n Coronary\n Falciform\n Hepatoduodenal\n Hepatogastric\n Round (of liver)\n Triangular\nPerforation of visceral peritoneum\nParietal peritoneum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "755", "Lesser omentum\nLigament(s):\n Coronary\n Falciform\n Hepatoduodenal\n Hepatogastric\n Round (of liver)\n Triangular\nParietal peritoneum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "760", "OBSOLETE DATA CONVERTED V0200\nSee code 770\n\n(650 or 670) + any of (640 or 660 or 700 or 750)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "770", "(640, 645, 660, 700, or 755) + (440 or 635)\n\nAny extension coded in (640, 645, 660, 700, or 755) plus multiple tumors/nodules in more than one lobe of liver or on surface of parenchyma", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "800", "Further contiguous extension:\n Pancreas\n Pleura\n Stomach\nOther contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "805", "OBSOLETE DATA CONVERTED V0203\nSee code 950\n\nNo evidence of primary tumor", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown, extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbd.json
deleted file mode 100644
index b1475bb55..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbd.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note**: Ignore extension from gallbladder to cystic duct. Ignore extension to extrahepatic bile ducts or ampulla of Vater (code 618) when other structures are involved with a code higher than 618.",
- "last_modified" : "2015-05-27T16:19:07.222Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Lamina propria\n Mucosa, NOS\n Submucosa (superficial invasion)", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "110", "Stated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria", "VALUE:T1b", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "400", "Perimuscular connective tissue", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:RE" ], [ "410", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "500", "Invasion of/through serosa (visceral peritoneum)", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:RE" ], [ "550", "500 + 400", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:RE" ], [ "600", "Extension into liver, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Extension into liver less than or equal to 2 cm", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "615", "Extension to branch(es) of portal vein (right or left)\nExtension to branch(es) of hepatic artery (right or left) but not into main portal vein or hepatic artery", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "618", "Extension to:\n Ampulla of Vater\n Extrahepatic bile duct(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA RETAINED V0200\n(See codes 618 and 621)\n\nExtension to ONE of the following:\n Ampulla of Vater\n Duodenum\n Extrahepatic bile duct(s)\n Omentum, NOS\n Greater\n Lesser\n Pancreas\n Small intestine, NOS", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "621", "Extension to ONE of the following:\n Duodenum\n Omentum, NOS:\n Greater\n Lesser\n Pancreas\n Small intestine, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "630", "Extension to cystic artery/vein\nWITHOUT extension to any structure in code 621 ", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "650", "Extension to ONE of the following\nWITHOUT extension to any structure in codes 621-630:\n Colon\n Stomach", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "655", "Extension to abdominal wall \nWITHOUT extension to any structures in codes 621-650", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "657", "Extension to diaphragm \nWITHOUT extension to any structures in codes 621-650", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "660", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 630 and 730\n\nExtension to cystic artery/vein\nWITHOUT extension to any structure in 621 to 650", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "670", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 673, 685\n\nExtension to ONE structure in codes\n621 to 650 PLUS extension into liver (600 or 610)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "673", "Extension to one structure in code 621 \nPLUS extension into liver 2 cm or less or NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "680", "Extension to cystic artery/vein, code 630 PLUS extension into liver 2 cm or less or NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "685", "Extension to ONE structure in code 650-657 PLUS extension into liver 2 cm or less or NOS", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "710", "Extension into liver greater than 2 cm\nWITHOUT extension to any structure in codes 621-657", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "720", "Extension to ONE structure in codes 621-657 PLUS extension into liver greater than 2 cm", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "725", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "730", "Extension to two or more structures in codes 621-657\nwith or without extension into liver of any depth", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Extension to:\n Common hepatic artery\n Main portal vein\n Hepatic artery, NOS\n Portal vein, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "780", "750 + any of (600 to 730)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\nSee codes 655 and 805\n\nFurther contiguous extension, including:\n Abdominal wall\n Diaphragm", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "805", "OBSOLETE DATA REVIEWED V0203\nSee codes 657, 685, 720, 730, 808\n\nFurther contiguous extension, including: \n Diaphragm", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "808", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbe.json
deleted file mode 100644
index 794301821..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbe.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The nonperitonealized perimuscular tissue is, for jejunum and ileum, part of the mesentery and, for duodenum in areas where serosa is lacking, part of the interface with the pancreas.\n\n**Note 2**: Codes 100-200 take priority over code 300. Code depth of invasion in preference to intraluminal spread or lateral extension to adjacent segment(s) of small intestine or cecum.\n\n**Note 3**: High-grade dysplasia is not always collected by cancer registries but, if collected, it should be coded 000.",
- "last_modified" : "2015-05-27T16:19:07.293Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "(Adeno)carcinoma, noninvasive, in a polyp", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "095", "OBSOLETE DATA CONVERTED V0203\nSee Code 155\n\nStated as T1a with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "100", "Invasive tumor confined to mucosa, NOS, including intramucosal, NOS", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "110", "Invasion of lamina propria", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Invasion of muscularis mucosae", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "125", "OBSOLETE DATA CONVERTED V0203\nSee code 165\n\nStated as T1b with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "130", "Invasive tumor confined to head of polyp", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "Invasive tumor onfined to stalk of polyp", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Invasion of polyp, NOS", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "155", "Stated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invasion of submucosa (superficial invasion)", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "165", "Stated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded \n\nStated as T2, NOS with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Intraluminal spread to other segments of small intestine or cecum\nLocalized, NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Invasion through muscularis propria or muscularis, NOS\nExtension through wall, NOS\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS \nWall, NOS\n\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Adjacent connective tissue\nAdjacent tissue(s), NOS\nMesentery, including mesenteric fat, invaded 2 centimeters (cm) or less in depth, or invaded, NOS (depth of invasion not specified)\nNonperitonealized perimuscular tissue invaded 2 cm or less in depth, or invaded, NOS (depth of invasion not specified)\nRetroperitoneum invaded 2 cm or less in depth, or invaded, NOS (depth of invasion not specified", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "500", "Invasion of/through serosa (mesothelium) (tunica serosa) (visceral peritoneum)", "VALUE:T4", "VALUE:T4", "VALUE:L", "VALUE:RE" ], [ "550", "500 + (450 or 458)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "For duodenum primary only:\n Ampulla of Vater\n Diaphragm\n Extrahepatic bile duct(s)\n Gallbladder\n Pancreas\n Pancreatic duct", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "For duodenum primary only:\n Blood vessel(s), major:\n Aorta\n Gastroduodenal artery\n Portal vein\n Renal vein\n Superior mesenteric artery or vein\n Vena cava\n Greater omentum\n Hepatic flexure\n Kidney, NOS\n Kidney, right\n Liver, NOS\n Liver, quadrate lobe\n Liver, right lobe\n Omentum, NOS\n Transverse colon\n Ureter, right\nFor jejunum or ileum primary only:\n Colon, including appendix", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "For duodenum primary only:\n Stomach", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "For all small intestine sites:\n Abdominal wall via serosa\n Mesentery invaded greater than 2 cm in depth\n Nonperitonealized perimuscular tissue invaded \n greater than 2 cm in depth\n Retroperitoneum invaded greater than 2 cm in depth", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "680", "For all small intestine sites:\n Other segments of the small intestine via serosa", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "690", "OBSOLETE DATA CONVERTED V0203\nSee code 805\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "For jejunum or ileum primary only:\n Bladder\n Fallopian tube(s)\n Ovary(ies)\n Uterus", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "805", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbf.json
deleted file mode 100644
index d26c8c0ef..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbf.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For rectosigmoid, ignore intraluminal extension to adjacent segment(s) of colon and rectum; code depth of invasion or extra-rectosigmoidal spread as indicated.\n\n**Note 2**: Codes 600 - 750 are used for contiguous extension from the site of origin. Discontinuous involvement is coded in CS Mets at DX.\n\n**Note 3**: Tumor that is adherent to other organs or structures, macroscopically, is classified cT4b; If tumor is present in adhesion(s) upon microscopic examination, the tumor is classified as pT4b. Use code 565 for macroscopic adhesions if no pathologic confirmation, and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesion(s) upon microscopic examination, the classification is based upon extent of tumor invasion into or through the wall; use codes 000 - 163, 200, 210, 400, 415, 455, 458, 500, and 555 as appropriate to describe the microscopically confirmed depth of tumor invasion for these cases. Use codes 610-800 to code invasion of underlying structures from the adherent tumor. \n\n**Note 4**: High grade dysplasia and severe dysplasia are generally not reportable in cancer registries but, if a registry does collect these, codes 000 or 050 should be used.",
- "last_modified" : "2015-05-27T16:19:07.373Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "(Adeno)carcinoma, noninvasive, in a polyp or adenoma", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS including intramucosal, NOS", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria, including lamina propria in the stalk of a polyp", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "120", "Confined to and not through the muscularis mucosae, including muscularis mucosae in the stalk of a polyp.", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "130", "Confined to head of polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "Confined to stalk of polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor in polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Submucosa (superficial invasion), including submucosa in the head or stalk of a polyp", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "165", "For rectum:\n Tumor invading submucosa with intraluminal extension to colon and/or anal canal/anus", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "210", "For rectum:\n Tumor invading muscularis propria with intraluminal extension to colon and/or anal canal/anus", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:L" ], [ "250", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Confined to rectosigmoid junction, NOS\nConfined to rectum, NOS\nLocalized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized perirectal tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 470\n\nStated as T3 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "415", "For rectum:\n Tumor invading through muscularis propria with intraluminal extension to colon and/or anal canal/anus", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:L" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nExtension to anus from rectum recoded based on intraluminal versus extraluminal extension\nSee codes 165, 210, 415, 455, and 610\n\nAdjacent (connective) tissue:\n For all sites:\n Perirectal fat\n For rectosigmoid:\n Mesentery (including mesenteric fat, mesocolon)\n Pericolic fat\n For rectum: \n Extension to anus\n Rectovaginal septum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "455", "Adjacent (connective) tissue:\n For all sites:\n Perirectal fat\n For rectosigmoid:\n Mesentery (including mesenteric fat, mesocolon)\n Pericolic fat\n For rectum:\n Rectovaginal septum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 3, codes 565, 570\n\nAdherent to other organs or structures but no tumor found in adhesion(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 900\n\nStated as T4[NOS] with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)\nTumor penetrates visceral peritoneum", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 555, 610\n\n(500) with [(420) or (450)]", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "555", "500 + (165, 210, 415, 455 or 458)", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "560", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "565", "Adherent to other organs or structures clinically with no microscopic examination\nTumor found in adhesion(s) if microscopic examination performed", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to other organs or structures, NOS", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA CONVERTED V0203\nSee code 610\n\nRectosigmoid:\n Cul de sac (rectouterine pouch)\n Pelvic wall\n Small intestine\nRectum:\n Bladder for males only\n Cul de sac (rectouterine pouch)\n Ductus deferens\n Pelvic wall\n Prostate\n Rectovesical fascia for male only\n Seminal vesicle(s)\n Skeletal muscle of pelvic floor\n Vagina", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "610", "For rectosigmoid:\n Cul de sac (rectouterine pouch)\n Pelvic wall/pelvic plexuses\n Small intestine\nFor rectum:\n Anal canal/anus extraluminally\n Bladder for males only\n Cul de sac (rectouterine pouch)\n Ductus deferens\n Pelvic wall\n Prostate\n Rectovesical fascia for males only\n Seminal vesicle(s)\n Skeletal muscle of pelvic floor\n Vagina", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "For all sites:\n Ovary(ies)\n Uterus\nFor rectosigmoid:\n Bladder\n Colon via serosa\n Fallopian tube(s)\n Prostate\n Skeletal muscles of pelvic floor\n Ureter(s)\n Vagina\nFor rectum:\n Bladder for females only\n Bone(s) of pelvis\n Cervix\n Perineum, perianal skin\n Sacrum\n Sacral plexus\n Urethra", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "900", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbg.json
deleted file mode 100644
index 49f8f7d0a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbg.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC considers \"in situ carcinoma of ovary\" an impossible diagnosis. Any case so coded will be mapped to an unknown AJCC stage and an in situ Summary Stage.\n\n**Note 2**: AJCC TNM values correspond to the stages accepted by the Federation Internationale de Gynecologie et d'Obstetrique (FIGO), and FIGO stages are included for coding where no more specific information is available in the record. When both FIGO stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage. Note that FIGO uses a single stage value which corresponds to different groupings of T, N, and M values. FIGO Stage IIIC is assigned based on tumor extension and/or regional lymph node involvement. Code CS Extension based on a physician's statement of FIGO Stage IIIC only if it is known that the stage value is assigned because of tumor extension. If FIGO Stage IIIC is specified but it is unknown whether it is based on extension or lymph nodes, code to CS Lymoh Nodes\n\n**Note 3**: T1 and T2 tumors with malignant ascites are categorized as T1c and T2c (FIGO Stages IC and IIC), respectively. Ascites, NOS is considered negative. \n\n**Note 4**: Both extension to and discontinuous metastasis to any of the following pelvic organs are included in the T2 category (FIGO Stage II) and coded in the range 500-650: adnexa, NOS; bladder and bladder serosa; broad ligament (mesovarium); cul de sac; fallopian tubes; parametrium; pelvic peritoneum; pelvic wall; rectosigmoid; rectum; sigmoid colon; sigmoid mesentery; pelvic ureter; uterus and uterine serosa. \n\n**Note 5**: Peritoneal implants outside the pelvis (codes 700-730) must be microscopically confirmed. Peritoneal implants may also be called seeding, salting, talcum powder appearance, or studding. \n\n**Note 6**: If implants are mentioned, determine whether they are in the pelvis or in the abdomen and code appropriately (600-650) or (700-730). If the location is not specified, use code 750. \n\n**Note 7**: Both extension to and discontinuous metastasis to any of the following abdominal organs by way of peritoneal seeding or implants are included in the T3 category (FIGO Stage III) and coded in the range 700-750: abdominal mesentery; diaphragm; gallbladder; infracolic omentum; kidneys; large intestine except rectum, rectosigmoid, and sigmoid colon; liver (peritoneal surface); omentum; pancreas; pericolic gutter; peritoneum, NOS; small intestine; spleen; stomach; and ureters outside pelvis. Residual tumor in any of these organs would be considered FIGO III and coded in the 700-750 range below and in CS Site-Specific Factors 3 and 4. (Hematogenous metastases are included in M1 (FIGO Stage IV) disease.)\n\n**Note 8**: Parenchymal liver nodules are coded in CS Mets at DX. \n\n**Note 9**: Since \"cancer cells in ascites or in peritoneal washings\" was not specifically categorized in the 1977 Summary Staging Guide, it is unclear to which stage previous cases may have been coded. \n\n**Note 10**: In some registries benign/borderline ovarian tumors are reportable by agreement. If the tumor being reported is benign or borderline, code CS Extension to 999.",
- "last_modified" : "2015-05-27T16:19:07.437Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive, preinvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Tumor limited to one ovary, capsule intact,\nno tumor on ovarian surface, no malignant cells in ascites or\nperitoneal washings", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "150", "FIGO Stage IA", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "200", "Tumor limited to both ovaries, capsule(s) intact,\nno tumor on ovarian surface, no malignant\ncells in ascites or peritoneal washings", "VALUE:T1b", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "250", "FIGO Stage IB", "VALUE:T1b", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0204\nSee codes 310 and 460\n\nTumor limited to ovaries, unknown if capsule(s)\nruptured or if one or both ovaries involved\nLocalized, NOS\nFIGO Stage I, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "310", "Tumor limited to ovaries, unknown if capsule(s) ruptured or if one or both ovaries involved\nLocalized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "350", "Tumor limited to ovary(ies), capsule(s) ruptured", "VALUE:T1c", "VALUE:T1c", "VALUE:L", "VALUE:RE" ], [ "360", "Tumor on ovarian surface", "VALUE:T1c", "VALUE:T1c", "VALUE:D", "VALUE:RE" ], [ "410", "Tumor limited to ovary(ies) \nWITH malignant cells in ascites or peritoneal washings", "VALUE:T1c", "VALUE:T1c", "VALUE:RE", "VALUE:RE" ], [ "430", "410 + 350\n\nTumor limited to ovary(ies) \nWITH malignant cells in ascites or peritoneal washings plus capsule(s) ruptured", "VALUE:T1c", "VALUE:T1c", "VALUE:RE", "VALUE:RE" ], [ "440", "(360) + any of (350 or 410)\nTumor on ovarian surface plus capsul(es) ruptured or WITH malignant cells in ascites or peritoneal washings ", "VALUE:T1c", "VALUE:T1c", "VALUE:D", "VALUE:RE" ], [ "450", "FIGO Stage IC", "VALUE:T1c", "VALUE:T1c", "VALUE:RE", "VALUE:RE" ], [ "460", "FIGO Stage I, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "500", "Extension to or implants on (but no malignant \ncells in ascites or peritoneal washings):\n Adnexa, ipsilateral or NOS\n Fallopian tube(s), ipsilateral or NOS", "VALUE:T2a", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "510", "500 + 360\n\nExtension to structures in 500 (but no malignant cells in ascites or peritoneal washings) plus tumor on ovarian surface", "VALUE:T2a", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "520", "Extension to or implants on (but no malignant\ncells in ascites or peritoneal washings):\n Adnexa, contralateral\n Fallopian tube(s), contralateral\n Uterus", "VALUE:T2a", "VALUE:T2a", "VALUE:D", "VALUE:RE" ], [ "550", "FIGO Stage IIA", "VALUE:T2a", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "600", "Extension to or implants on other pelvic\nstructures (but no malignant cells in ascites or\nperitoneal washings):\n Pelvic tissue:\n Adjacent peritoneum\n Ligament(s):\n Broad, ipsilateral, NOS\n Ovarian\n Round\n Suspensory\n Mesovarium, ipsilateral, NOS\n Pelvic wall", "VALUE:T2b", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "605", "600 + 360\n\nExtension to structures in 600 (but no malignant cells in ascites or peritoneal washings) plus tumor on ovarian surface", "VALUE:T2b", "VALUE:T2b", "VALUE:D", "VALUE:RE" ], [ "610", "Extension to or implants on other pelvic \nstructures (but no malignant cells in ascites or\nperitoneal washings):\n Broad ligament(s), contralateral\n Mesovarium, contralateral\n Bladder , \n Bladder serosa\n Cul de sac\n Parametrium\n Rectosigmoid, \n Rectum\n Sigmoid colon\n Sigmoid mesentery\n Ureter (pelvic portion)", "VALUE:T2b", "VALUE:T2b", "VALUE:D", "VALUE:RE" ], [ "615", "FIGO Stage IIB", "VALUE:T2b", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "620", "Any structure in 500 and /or 600\nWITH malignant cells in ascites or peritoneal washings", "VALUE:T2c", "VALUE:T2c", "VALUE:RE", "VALUE:RE" ], [ "625", "620 + 360\n\nAny structure in 500 and/or 600\nWITH malignant cells in ascites or peritoneal washings plus tumor on ovarian surface", "VALUE:T2c", "VALUE:T2c", "VALUE:D", "VALUE:RE" ], [ "630", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 620, 625, 635\n\n(520 and/or 600) WITH malignant\ncells in ascites or peritoneal washings", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "635", "Any structure in 520 \nWITH malignant cells in ascites or peritoneal washings", "VALUE:T2c", "VALUE:T2c", "VALUE:D", "VALUE:RE" ], [ "640", "Any structure in 610\nWITH malignant cells in ascites or peritoneal washings", "VALUE:T2c", "VALUE:T2c", "VALUE:D", "VALUE:RE" ], [ "645", "FIGO Stage IIC", "VALUE:T2c", "VALUE:T2c", "VALUE:D", "VALUE:RE" ], [ "650", "Tumor involves one\nor both ovaries with pelvic extension, NOS", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "660", "FIGO Stage II [NOS]", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "700", "Microscopic peritoneal\nimplants beyond pelvis, including peritoneal\nsurface/capsule of liver\nFIGO Stage IIIA\n(See Note 7)", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:D" ], [ "710", "Macroscopic peritoneal\nimplants beyond pelvis, less than or equal to 2 cm in diameter,\nincluding peritoneal surface of liver\nFIGO Stage IIIB\n(See Note 7)", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "720", "Peritoneal implants beyond \npelvis, greater than 2 cm in diameter, including peritoneal\nsurface of liver (liver capsule)\nFIGO Stage IIIC (based on tumor extension)\n(See Notes 2, 7)", "VALUE:T3c", "VALUE:T3c", "VALUE:D", "VALUE:D" ], [ "730", "Tumor involves one or both\novaries with microscopically confirmed peritoneal metastasis\noutside the pelvis, NOS\n(See Note 7)", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "750", "Peritoneal implants, NOS\n(See Note 7)", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "780", "FIGO Stage III [NOS]", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbh.json
deleted file mode 100644
index 4304697b7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbh.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: When both Federation Internationale de Gynecologie et d'Obstetrique (FIGO) stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage. FIGO Stage IIIC is assigned based on tumor extension and/or regional lymph node involvement. Code CS Extension based on a physician's statement of FIGO Stage IIIC only if it is known that the stage value is assigned because of tumor extension.\n\n**Note 2**: FIGO no longer includes a Stage 0 (Tis) for this schema.\n\n**Note 3**: Liver capsule metastases are coded in CS Extension; liver parenchymal metastases are coded in CS Mets at DX.\n\n**Note 4**: Both extension to and discontinuous metastasis to any of the following pelvic organs are considered FIGO Stage II and coded in the range 400-660: adnexa, NOS; bladder, bladder serosa; broad ligament (mesovarium); cul de sac; contralateral fallopian tube; parametrium; pelvic peritoneum; pelvic wall; rectum; sigmoid colon; sigmoid mesentery; ureter; uterus; uterine serosa.\n\n**Note 5**: Both extension to and discontinuous metastasis to any of the following abdominal organs are considered FIGO Stage III and coded in the range 685-795: abdominal mesentery; diaphragm; gallbladder; infracolic omentum; kidneys; large intestine except rectum and sigmoid colon; liver (peritoneal surface); omentum; pancreas; pericolic gutter; peritoneum, NOS; small intestine; spleen; stomach; ureters.\n\n**Note 6**: From the AJCC Manual 7th Edition (page 430): \"It may be preferable to classify a patient as TX (primary tumor cannot be assessed) if inadequate staging biopsies and/or a lack of peritoneal cytology make it inaccurate to classify the patient with confidence as early stage (Stage T3a/IIIA has not been excluded by adequate staging biopsies).\"\n\n**Note 7**: Since \"malignant ascites or malignant peritoneal washings\" was not specifically categorized in the 1977 Summary Staging Guide, it is unclear to which stage pre-2001 cases may have been coded.",
- "last_modified" : "2015-05-27T16:19:07.515Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive\nLimited to tubal mucosa", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 200, 320\n\nConfined to fallopian tube, NOS\nFIGO Stage I", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "110", "Confined to one fallopian tube \nWITHOUT penetrating serosal surface\nWITHOUT ascites\n\nFIGO Stage IA", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "120", "Confined to both fallopian tubes \nWITHOUT penetrating serosal surface\nWITHOUT ascites\n\nFIGO Stage IB", "VALUE:T1b", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "130", "Extension onto or through tubal serosa\nMalignant ascites\nMalignant peritoneal washings\n\nFIGO Stage IC", "VALUE:T1c", "VALUE:T1c", "VALUE:L", "VALUE:L" ], [ "200", "Confined to fallopian tube, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 310, 320\n\nLocalized, NOS\nFIGO Stage I", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "310", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "320", "FIGO Stage I [NOS]", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "350", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 655, 670\n\nPelvic extension, NOS with no malignant cells in ascites or peritoneal washings\nFIGO Stage II", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "400", "Extension or metastasis to:\n Corpus uteri\n Ovary, ipsilateral\n Uterus, NOS\nWITHOUT malignant cells in ascites or peritoneal washings", "VALUE:T2a", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "450", "Extension or metastasis to:\n Ovary, contralateral \nWITHOUT malignant cells in ascites or peritoneal washings", "VALUE:T2a", "VALUE:T2a", "VALUE:D", "VALUE:RE" ], [ "460", "FIGO Stage IIA", "VALUE:T2a", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 510, 620, and 658\n\nExtension or metastasis to (but no malignant cells in ascites or peritoneal washings):\n Broad ligament, ipsilateral\n Mesosalpinx, ipsilateral\n Adjacent peritoneum\nFIGO Stage IIB", "VALUE:T2b", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "510", "Extension or metastasis to:\n Broad ligament, ipsilateral\n Mesosalpinx, ipsilateral\n Adjacent peritoneum\nWITHOUT malignant cells in ascites or peritoneal washings", "VALUE:T2b", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSee codes 450, 460\n\nOvary, contralateral (but no malignant cells in ascites or peritoneal washings)\nFIGO Stage IIA", "ERROR:", "VALUE:T2a", "VALUE:D", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED V0200 (600) + (500)", "ERROR:", "VALUE:T2b", "VALUE:D", "VALUE:RE" ], [ "620", "51 0 + 450\n\nExtension to any site in 510 plus extension to contralateral ovary\n WITHOUT malignant cells in ascites or peritoneal washings", "VALUE:T2b", "VALUE:T2b", "VALUE:D", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 652, 658\n\nExtension or metastasis to (but no malignant cells in ascites or peritoneal washings):\n Broad ligament, contralateral\n Cul de sac (rectouterine pouch)\n Mesosalpinx, contralateral\n Rectosigmoid\n Sigmoid\nFIGO IIB", "VALUE:T2b", "VALUE:T2b", "VALUE:D", "VALUE:RE" ], [ "652", "Extension or metastasis to (but no malignant cells in ascites or peritoneal washings): \n Broad ligament, contralateral\n Cul de sac (rectouterine pouch)\n Mesosalpinx, contralateral\n Rectosigmoid\n Sigmoid", "VALUE:T2b", "VALUE:T2b", "VALUE:D", "VALUE:RE" ], [ "655", "Pelvic extension, NOS with no malignant cells in ascites or peritoneal washings", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "658", "FIGO Stage IIB", "VALUE:T2b", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "660", "Pelvic extension (codes 400-655)\nWITH malignant cells in ascites or peritoneal washings\n\nFIGO Stage IIC", "VALUE:T2c", "VALUE:T2c", "VALUE:D", "VALUE:D" ], [ "670", "FIGO Stage II [NOS]", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "680", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 790, 820\n\nPeritoneal implants or metastasis (size of metastases not stated; unknown if microscopic or macroscopic)\n Omentum \n Small intestine\nFIGO Stage III", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "685", "Microscopic peritoneal implants or metastasis:\n Omentum\n Small intestine", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:RE" ], [ "688", "685 + 660", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:D" ], [ "690", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 685, 698\n\nMicroscopic peritoneal implants or metastasis:\n Omentum\n Small intestine\nFIGO Stage IIIA", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:D" ], [ "695", "Microscopic peritoneal metastasis outside the pelvis, excluding organs in code 685 \n(See Note 5)", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:D" ], [ "698", "FIGO Stage IIIA", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA CONVERTED V0102\nSee code 680\n\nExtension or metastasis to:\n Omentum\nFIGO Stage IIB", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "OBSOLETE DATA CONVERTED V0102\nSee code 660\n\nPelvic extension (codes 350-700) with malignant cells in ascites or peritoneal washings\nFIGO Stage IIC", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "720", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 722, 723, and 728\n\nMacroscopic peritoneal implants or metastasis less than or equal to 2cm:\n Omentum\n Small intestine\nFIGO Stage IIIB", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "722", "Macroscopic peritoneal implants or metastasis less than or equal to 2cm:\n Omentum\n Small intestine", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "723", "722 + 695", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "725", "Macroscopic peritoneal metastasis less than or equal to 2 cm outside the pelvis, excluding organs in code 722 \n(See Note 5)", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "728", "FIGO Stage IIIB based on extension", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "730", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 732, 733, and 740\n\nMacroscopic peritoneal implants or metastasis greater than 2cm:\n Omentum\n Small intestine\nFIGO Stage IIIC", "VALUE:T3c", "VALUE:T3c", "VALUE:D", "VALUE:RE" ], [ "732", "Macroscopic peritoneal implants or metastasis greater than 2cm:\n Omentum\n Small intestine", "VALUE:T3c", "VALUE:T3c", "VALUE:D", "VALUE:RE" ], [ "733", "732 + 725", "VALUE:T3c", "VALUE:T3c", "VALUE:D", "VALUE:D" ], [ "735", "Macroscopic peritoneal implants or metastases greater than 2 cm outside the pelvis, excluding organs in code 732 \n(See Note 5)", "VALUE:T3c", "VALUE:T3c", "VALUE:D", "VALUE:D" ], [ "740", "FIGO Stage IIIC based on extension", "VALUE:T3c", "VALUE:T3c", "VALUE:D", "VALUE:RE" ], [ "750", "OBSOLETE DATA CONVERTED V0203\nSee code 795\n\nPeritoneal implants outside the pelvis, NOS (size of metastases not stated; unknown if microscopic or macroscopic), except code 680 (See Note 5)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "760", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 695 and 698\n\nMicroscopic peritoneal metastasis outside the pelvis, except code 690 (See Note 5)\nFIGO Stage IIIA", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 725 and 728\n\nMacroscopic peritoneal metastasis less\n than or equal to 2 cm outside the pelvis, except code 720 (See Note 5)\nFIGO Stage IIIB", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "780", "OBSOLETE DATA RETAINED AND REVIEWED V0200\nSee codes 735 and 740\n\nPeritoneal metastases greater than 2 cm, except code 730 (See Note 5)\nFIGO Stage IIIC", "VALUE:T3c", "VALUE:T3c", "VALUE:D", "VALUE:D" ], [ "790", "Peritoneal implants or metastasis outside the pelvis, size of metastasis not stated, unknown if microscopic or macroscopic:\n Omentum\n Small intestine", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:RE" ], [ "795", "Peritoneal implants or metastases outside the pelvis, size of metastasis not stated, unknown if microscopic or macroscopic, excluding organs in code 790 \n(See Note 5)", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 810, 820\n\nFurther contiguous extension\nFIGO Stage III [NOS]", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "810", "Further contiguous extension", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "820", "FIGO Stage III [NOS] based on extension", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\n (See Note 6) \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbi.json
deleted file mode 100644
index bddeda494..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbi.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: When both the Federation Internationale de Gynecologie et d'Obstetrique (FIGO) stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage. FIGO Stage IVA is assigned based on tumor extension and/or regional lymph node involvement. Code CS Extension based on a physician's statement of FIGO Stage IVA if it is based on tumor extension or the basis is unknown.\n\n**Note 2**: FIGO no longer includes Stage 0 (Tis) for this site.\n\n**Note 3**: FIGO Stage I, IA and IB are defined by size of tumor, involvement of vulva OR vulva and perineum, and depth of stromal invasion.\n\n**Note 4**: The depth of invasion is defined as the measurement of the tumor from the epithelial-stromal junction of the adjacent most superficial dermal papilla to the deepest point of invasion.\n\n**Note 5**: Use codes 110, and 120 in preference to 125 and 125 in preference to code 200.",
- "footnotes" : "- For CS Extension codes 110, 125-410, 425-450, and 470 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension, as shown in the Extension Size AJCC 7 Table for this schema.\n- For CS Extension codes 110-470 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:07.577Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, preinvasive, noninvasive\nBowen disease", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA CONVERTED V0203\nSee code 200\n\nInvasive cancer (no stromal invasion) confined to:\n Musculature\n Submucosa\n Vulva including skin", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "105", "OBSOLETE DATA CONVERTED V0203\nSee code 125\n\nVulva only: Stromal invasion but level of invasion in mm not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "110", "Vulva only: Stromal invasion less than or equal to 1 mm", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "120", "Vulva only: Stromal invasion greater than 1 mm", "VALUE:T1b", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "125", "Vulva only: Stromal invasion but depth of invasion in mm not stated", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "200", "Invasive carcinoma confined to:\n Musculature\n Submucosa\n Vulva including skin", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "320", "OBSOLETE DATA CONVERTED V0203\nSee code 470\n\nFIGO Stage I [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "330", "OBSOLETE DATA CONVERTED V0203\nSee code 450\n\nFIGO Stage IA", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "340", "OBSOLETE DATA CONVERTED V0203\nSee code 460\n\nFIGO Stage IB", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "400", "OBSOLETE DATA CONVERTED V0203\nSee code 425\n\nVulva and perineum, level of invasion in mm not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "410", "Vulva and perineum: Stromal invasion less than or\n equal to 1 mm", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:RE", "VALUE:RE" ], [ "420", "Vulva and perineum: Stromal invasion greater than 1 mm", "VALUE:T1b", "JUMP:extension_size_ajcc6_xqc", "VALUE:RE", "VALUE:RE" ], [ "425", "Vulva and perineum: Stromal invasion but depth of invasion in millimeters not stated", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:RE", "VALUE:RE" ], [ "450", "FIGO Stage IA", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "460", "FIGO Stage IB", "VALUE:T1b", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "470", "FIGO Stage I [NOS]", "JUMP:extension_size_ajcc7_xbl", "JUMP:extension_size_ajcc6_xqc", "VALUE:L", "VALUE:L" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nAnus\nPerianal skin\nUrethra (See code 750 for upper urethral mucosa)\nVagina\nFIGO Stage III", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "605", "Anus\nPerianal skin\nUrethra:\n Lower/distal one-third \n Urethra, NOS \n(See code 750 for upper urethra)", "VALUE:T2", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Vagina (lower/distal 1/3 vagina)", "VALUE:T2", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "612", "Vagina NOS", "VALUE:T2", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "615", "FIGO Stage II", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "618", "Vagina:\n Upper/proximal two-thirds", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "Bladder wall or bladder, NOS excluding mucosa\nRectal wall or rectum, NOS excluding mucosa", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "700", "Perineal body\nRectal mucosa", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nBladder mucosa\nFixed to pubic bone\nUpper urethral mucosa \nFIGO Stage IVA", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "760", "Bladder mucosa\nFixed to pubic bone\nUrethra\n Upper/proximal two-thirds", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "FIGO Stage IVA based on extension or unknown whether based on extension or nodes", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbj.json
deleted file mode 100644
index 91abbf623..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbj.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Palpebral and tarsal conjunctiva line the eyelid, bulbar conjunctiva covers the eyeball, forniceal conjunctiva covers the space between the eyelid and the globe. According to the AJCC, tumors are most likely to arise at the exposed site where the conjunctival epithelium merges with the corneal epithelium, particularly at the temporal limbus.\n\n**Note 2**: Use code 140 or 150 if the physician's assignment of T category is the only information available about the extent of the tumor.\n\n**Note 3**: The CS Tumor Size table for this schema is obsolete in CS Version 2, and the collection of tumor size value moved to CS Site-Specific Factor 1, Tumor Size.",
- "footnotes" : "- For CS Extension codes 110-150, and 350 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Site-Specific Factor 1, Tumor Size, as shown in the Extension Size Table CSv2.\n- For CS Extension codes 110-150, and 350 ONLY, the T category for AJCC 6 staging collected in CSv2 is assigned based on the value of CS Site-Specific Factor 1, Tumor Size, as shown in the Extension Size Table CSv2.\n- For CS Extension codes 100 and 300 ONLY, the T category for AJCC 6 staging collected in CSv1 is assigned based on the value of CS Tumor Size as shown in the Extension Size Table CSv1.",
- "last_modified" : "2015-05-27T16:19:07.634Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nTumor confined to conjunctiva", "ERROR:", "JUMP:extension_size_table_csv1_xas", "VALUE:L", "VALUE:L" ], [ "110", "Tumor confined to one subsite of conjunctiva:\n Bulbar conjunctiva\nTumor confined to one subsite of conjunctiva, NOS", "JUMP:extension_size_table_csv2_xez", "JUMP:extension_size_table_csv2_xez", "VALUE:L", "VALUE:L" ], [ "120", "Tumor confined to one subsite of conjunctiva:\n Forniceal conjunctiva\n Palpebral conjunctiva\n Tarsal conjunctiva", "JUMP:extension_size_table_csv2_xez", "JUMP:extension_size_table_csv2_xez", "VALUE:L", "VALUE:L" ], [ "140", "Stated as T1 with no other information on extension", "JUMP:extension_size_table_csv2_xez", "JUMP:extension_size_table_csv2_xez", "VALUE:L", "VALUE:L" ], [ "150", "Stated as T2 with no other information on extension", "JUMP:extension_size_table_csv2_xez", "JUMP:extension_size_table_csv2_xez", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS", "ERROR:", "JUMP:extension_size_table_csv1_xas", "VALUE:L", "VALUE:L" ], [ "350", "Localized, NOS", "JUMP:extension_size_table_csv2_xez", "JUMP:extension_size_table_csv2_xez", "VALUE:L", "VALUE:L" ], [ "400", "Intraocular extension\n Cornea \n Intraocular compartments", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nAdjacent extraocular extension, excluding orbit\n Eyelid", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "510", "Tumor involving more than one subsite of conjunctiva:\n Bulbar conjunctiva\n Forniceal conjunctiva\n Palpebral conjunctiva\n Tarsal conjunctiva \nTumor involving more than one subsite of conjunctiva NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "530", "Adjacent extraocular extension, excluding orbit:\n Anterior eyelid lamella \n Caruncle \n Eyelid margin\n Lacrimal punctum and canaliculi\n Plica\n Posterior eyelid lamella", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA CONVERTED V0200\nSee code 730\n\nOrbit, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "Orbital soft tissues without bone invasion\n\nStated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "720", "Bone of orbit\n\nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "730", "Orbit, NOS", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "780", "Adjacent paranasal sinuses\n\nStated as T4c with no other information on extension", "VALUE:T4c", "VALUE:T4c", "VALUE:RE", "VALUE:RE" ], [ "790", "Brain\n\nStated as T4d with no other information on extension", "VALUE:T4d", "VALUE:T4d", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4d", "VALUE:T4d", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbk.json
deleted file mode 100644
index 94f02e898..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbk.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: When both FIGO stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage.\n\n**Note 2**: FIGO Stage IIIB is assigned based on tumor extension and/or regional lymph node involvement; FIGO Stage IV, NOS is assigned based on tumor extension and/or metastasis. Code CS Extension based on a physician's statement of FIGO Stage IIIB or FIGO Stage IV [NOS] only if it is known that the stage value is assigned because of tumor extension. Code a statement of FIGO Stage IIIB in CS Lymph Nodes if unknown if based on extension. Code a stage of FIGO Stage IV [NOS] in CS Mets at DX if unknown if based on extension.\n\n**Note 3**: FIGO no longer includes Stage 0 (Tis) for this site.\n\n**Note 4**: All macroscopically visible lesions, even with superficial invasion, are assigned toT1b/FIGO Stage IB.\n\n**Note 5**: Involvement of the anterior and/or posterior septum, the tissue between the vagina and bladder and between the vagina and rectum, is coded as involvement of the vaginal wall.",
- "footnotes" : "- For CS Extension codes 200-310, 380-450, and 550 ONLY, the T category is assigned based on CS Tumor Size, as shown in the Extension Size AJCC 7 Table for for this schema.\n- For CS Extension codes 200-310, and 380-390 ONLY, the T category is assigned based on CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:07.705Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive, preinvasive; \nCancer in situ WITH endocervical gland involvement\n(See Note 3)", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "010", "Cervical intraepithelial neoplasia (CIN) Grade III", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "110", "Minimal microscopic stromal invasion less than or equal to 3 mm in depth (measured from the base of the epithelium) and less than or equal to 7 mm in horizontal spread\n\nFIGO Stage IA1", "VALUE:T1a1", "VALUE:T1a1", "VALUE:L", "VALUE:L" ], [ "120", "Microscopic stromal invasion greater than 3 mm and less than or equal to 5 mm in depth, (measured from the base of the epithelium) and less than or equal to 7 mm in horizontal spread\n\nFIGO Stage IA2", "VALUE:T1a2", "VALUE:T1a2", "VALUE:L", "VALUE:L" ], [ "135", "Invasive carcinoma confined to cervix, microscopic size of stromal invasion and horizontal spread not specified", "VALUE:T1aNOS", "VALUE:T1aNOS", "VALUE:L", "VALUE:L" ], [ "140", "FIGO Stage IA [NOS]", "VALUE:T1aNOS", "VALUE:T1aNOS", "VALUE:L", "VALUE:L" ], [ "200", "Invasive carcinoma confined to cervix, tumor measurements greater than specified in code 120\n\nFIGO Stage IB", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:L", "VALUE:L" ], [ "210", "FIGO Stage IB1", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:L", "VALUE:L" ], [ "220", "FIGO Stage IB2", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:L", "VALUE:L" ], [ "250", "Invasive carcinoma confined to cervix, clinically visible lesion", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS\nConfined to cervix uteri or uterus, NOS, except corpus uteri, NOS\n(Not clinically visible or unknown if clinically visible.)", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:L", "VALUE:L" ], [ "310", "FIGO Stage I [NOS]", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:L", "VALUE:L" ], [ "350", "Corpus uteri, NOS with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:RE", "VALUE:RE" ], [ "360", "350 + 110", "VALUE:T1a1", "VALUE:T1a1", "VALUE:RE", "VALUE:RE" ], [ "370", "350 + 120", "VALUE:T1a2", "VALUE:T1a2", "VALUE:RE", "VALUE:RE" ], [ "380", "350 + (200 or 250)", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:RE", "VALUE:RE" ], [ "390", "350 + (300 or 310)", "JUMP:extension_size_ajcc7_xgi", "JUMP:csextension_size_tablefor_ajcc6th_xba", "VALUE:RE", "VALUE:RE" ], [ "400", "Extension to:\n Cul de sac (rectouterine pouch)\n Upper two-thirds of vagina including fornices\n Vagina, NOS\n Vaginal wall, NOS\nWITHOUT parametrial invasion", "JUMP:extension_size_ajcc7_xgi", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "410", "Extension beyond uterus, NOS but not to pelvic wall (excluding lower third of vagina)\nWITHOUT parametrial invasion", "JUMP:extension_size_ajcc7_xgi", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "420", "FIGO Stage IIA1", "JUMP:extension_size_ajcc7_xgi", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "440", "FIGO Stage IIA2", "JUMP:extension_size_ajcc7_xgi", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "450", "FIGO Stage IIA [NOS]", "JUMP:extension_size_ajcc7_xgi", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "500", "Extension to:\n Ligament(s):\n Broad\n Cardinal\n Uterosacral\n Parametrium (paracervical soft tissue)\nFIGO Stage IIB", "VALUE:T2b", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "550", "FIGO Stage II [NOS]", "JUMP:extension_size_ajcc7_xgi", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 605 and 625\n\nExtension to:\n Bladder wall\n Bladder, NOS excluding mucosa\n Bullous edema of bladder mucosa\n Lower third of vagina\n Rectal wall\n Rectum, NOS excluding mucosa\nFIGO Stage IIIA", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "605", "Extension to:\n Bladder wall\n Bladder, NOS excluding mucosa\n Bullous edema of bladder mucosa\n Lower third of vagina\n Rectal wall\n Rectum, NOS excluding mucosa", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 622 and 625\n\nExtension to:\n Ureter, intra- and extramural\n Vulva\nFIGO Stage IIIA", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:RE" ], [ "622", "Extension to:\n Ureter, intra- and extramural\n Vulva", "VALUE:T3a", "VALUE:T3a", "VALUE:D", "VALUE:RE" ], [ "625", "FIGO Stage IIIA", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "630", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 635 and 660\n\nTumor causes hydronephrosis or nonfunctioning kidney \nFIGO Stage IIIB", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "635", "Tumor causes hydronephrosis or nonfunctioning kidney ", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 655 and 660\n\nExtension to pelvic wall(s)\n (Described clinically as \"frozen pelvis\", NOS)\nFIGO Stage IIIB", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "655", "Extension to pelvic wall(s)\n Described clinically as frozen pelvis", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "660", "FIGO Stage IIIB based on extension", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "680", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 685 and 690\n\nExtension to:\n Fallopian tube(s)\n Ovary(ies)\n Urethra\n\nFIGO Stage III [NOS]", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:RE" ], [ "685", "Extension to:\n Fallopian tube(s)\n Ovary(ies)\n Urethra", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:RE" ], [ "690", "FIGO Stage III [NOS]", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:D", "VALUE:RE" ], [ "700", "Extension to rectal or bladder mucosa \n(Note: for bullous edema of bladder mucosa, see code 600-605)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension beyond true pelvis\n Sigmoid colon\n Small intestine", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "FIGO Stage IVA", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "860", "FIGO Stage IV [NOS] based on extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbl.json
deleted file mode 100644
index 9ecc86d4f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbl.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: When both FIGO stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage.\n\n**Note 2**: FIGO no longer includes Stage 0 (Tis) for this site.\n\n**Note 3**: To assign a T2 category, stromal connective tissue of the cervix must be involved; endocervical glandular involvement only is not considered a T2 tumor in AJCC 7. Use 123, 133, 143, or 145 if endometrial or myometrial involvement is described.\n\n**Note 4**: FIGO IIIA and IIIB are extension, whereas FIGO IIIC is nodal involvement. FIGO IVA is extension, whereas FIGO IVB is distant metastasis. FIGO Stage III, NOS and FIGO Stage IV, NOS are assigned based on tumor extension and/or metastasis. Code CS Extension based on a physician's statement of FIGO Stage III, NOS or FIGO Stage IV, NOS only if it is known that the stage value is assigned because of tumor extension.\n\n**Note 5**: Positive cytology is reported separately (CS Site Specific Factor 2), and is not included as a staging element for AJCC 7 staging. It is included as a staging element for AJCC 6 and Summary Stage. Since \"cancer cells in ascites or in peritoneal washings\" was not specifically categorized in the 1977 Summary Staging Guide, it is unclear to which stage previous cases may have been coded in that staging system.\n\n**Note 6**: According to the AJCC, extension to the bowel or bladder mucosa must be proven by biopsy in order to rule out bullous edema.",
- "footnotes" : "- For CS Extension codes 100-145, and 180-525 ONLY. If it is a CS Version 1 case, (CS Version Input Original equals 01XXXX and Year of Diagnosis is before 2010), the T category for AJCC 6 stages is assigned based on the value of CS Extension and peritoneal cytology coded in CS Site-Specific Factor 2 as shown in the Extension Cytology AJCC 6 Table CSv1. If it is a CS Version 2 case (CS Version Input Original equals 02XXXX or Year of Diagnosis is greater than 2009), the T category for AJCC 6 staging is based on the value of CS Extension and peritoneal cytology coded in CS Site-Specific Factor 2 as shown in the Extension Cytology AJCC 6 Table CSv2.\n- For CS Extension codes 100-120, 125-130, 135-140, 160-400, and 540 ONLY. The SS77 and SS2000 stages are assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site-Specific Factor 2 as shown in the Extension Cytology Summary Stage Table.",
- "last_modified" : "2015-05-27T16:19:07.772Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive, preinvasive ", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive cancer confined to corpus uteri ", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "110", "Confined to endometrium (stroma)", "VALUE:T1a", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "120", "Tumor invades less than one-half of myometrium\nInvasion of inner half of myometrium", "VALUE:T1a", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "123", "Endocervical glandular involvement\nWITH tumor limited to endometrium or invading less than one-half of myometrium\n(See Note 3)", "VALUE:T1a", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "125", "FIGO Stage IA", "VALUE:T1a", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "130", "Tumor invades one-half or more of myometrium\nInvasion of outer half of myometrium\n (See Note 4)", "VALUE:T1b", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "133", "Endocervical glandular involvement \nWITH tumor invading one-half or more of myometrium\n(See Note 3)", "VALUE:T1b", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "135", "FIGO Stage IB", "VALUE:T1b", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "140", "Invasion of myometrium, NOS", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "143", "Endocervical glandular involvement WITH tumor invading myometrium, NOS", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "145", "Endocervical glandular involvement and involvement of myometrium not specified", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "160", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 540 and 545\n\nTunica serosa of the visceral peritoneum (serosa covering the corpus)", "VALUE:T1NOS", "VALUE:T3a", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "180", "FIGO Stage I [NOS]", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "400", "Localized, NOS", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "500", "Cervix uteri, NOS, but not beyond uterus", "VALUE:T2", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 123, 133, 143, and 145\n\nEndocervical glandular involvement only", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "520", "Cervical stromal invasion", "VALUE:T2", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "525", "FIGO Stage II", "VALUE:T2", "JUMP:determine_correct_table_for_ajcc6_t_ns6", "VALUE:RE", "VALUE:RE" ], [ "540", "Extension or metastasis to tunica serosa (visceral peritoneum of corpus, serosa covering the corpus) \nWITHOUT involvement of cervix", "VALUE:T3a", "VALUE:T3a", "JUMP:extension_cytology_summary_stage_xqa", "JUMP:extension_cytology_summary_stage_xqa" ], [ "545", "Extension or metastasis to tunica serosa of corpus\nWITH involvement of cervix", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "550", "Extension or metastasis to:\n Adnexa:\n Fallopian tube(s)\n Ovary(ies)", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 550, 655, and 800\n\nExtension or metastasis within true pelvis:\n Adnexa\n Fallopian tube(s)\n Ligaments: Broad, round, uterosacral\n Ovary(ies)\n Parametrium\n Pelvic serosa\n Tunica serosa (parietal lining of the pelvic or abdominal cavity)", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED V0200 \nSee Note 5 and CS Site-Specific Factor 2\n\nCancer cells in ascites\nCancer cells in peritoneal washings \nFIGO Stage IIIA", "ERROR:", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA CONVERTED V0200 \n(See code 645)\n\nUreter and vulva", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "630", "FIGO Stage IIIA", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "635", "Extension or metastasis to:\n Ligaments:\n Broad\n Round\n Parametrium, NOS\n Visceral peritoneum of pelvic organs excluding serosa of corpus", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "640", "Extension or metastasis to vagina", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "645", "Extension to:\n Ureter \n Vulva", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 655 and 662\n\nExtension or metastasis to pelvic wall(s)\nDescribed clinically as \"frozen pelvis\", NOS", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "655", "Extension or metastasis to:\n Pelvic wall(s)\n Parietal serosa of pelvic wall", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "660", "Extension or metastasis to:\n Bladder wall\n Bladder, NOS excluding mucosa\n Rectal wall\n Rectum, NOS excluding mucosa", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "662", "Described clinically as \"frozen pelvis\", NOS", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "663", "(660 or 662) + (640 or 645)", "VALUE:T3b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "665", "FIGO Stage IIIB", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "670", "OBSOLETE DATA CONVERTED V0203\nSee code 663 \n\n(662 or 660) + (645 or 640)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "680", "FIGO Stage III [NOS] based on tumor extension\n(See Note 4.)", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA CONVERTED V0200 \n(See code 710)\n\nExtension to bowel mucosa or \nbladder mucosa (excluding bullous edema)\nFIGO Stage IVA\nFIGO Stage IV, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 715, 810, and 820\n\nExtension to bowel mucosa or bladder mucosa (excluding bullous edema)\n\nNote: On conversion of code 700 to 710, code 710 also included FIGO Stage IVA, FIGO Stage IV, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "715", "Extension to bowel mucosa or bladder mucosa (excluding bullous edema)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension\n Abdominal serosa (visceral or parietal peritoneum of abdomen)\n Cul de sac (rectouterine pouch or Pouch of Douglas)\n Sigmoid colon\n Small intestine", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "FIGO Stage IVA", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "820", "FIGO Stage IV [NOS] based on tumor extension\n(See Note 4.)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbm.json
deleted file mode 100644
index 27b249885..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbm.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: When both the Federation Internationale de Gynecologie et d'Obstetrique (FIGO) stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage.\n\n**Note 2**: According to AJCC, metastasis to genital structures for gestational trophoblastic tumors (GTT) is considered T2 and not M1. Metastasis to genital structures is coded in CS Extension and not in CS Mets at DX.\n\n**Note 3**: For CS Extension codes 100-850, substaging is determined by the values in CS Site-Specific Factor 1, Prognostic Scoring Index.",
- "last_modified" : "2015-05-27T16:19:07.836Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "OBSOLETE DATA CONVERTED V0203\nSee code 999\n\nIn situ: noninvasive; intraepithelial", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "100", "Confined to placenta", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "320", "Confined to uterus : cervix, corpus, and NOS", "VALUE:T1", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "330", "FIGO Stage IA", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "340", "FIGO Stage IB", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "350", "FIGO Stage I [NOS]", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue, NOS", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 320, 620\n\nOther genital structures by direct extension or NOS:\n Broad ligament\n Cervix\n Corpus uteri\n Fallopian tube(s)\n Genital structures, NOS\n Ovary(ies)\n Uterus, NOS \n Vagina", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "620", "Other genital structures by direction extension or NOS:\n Broad ligament\n Fallopian tube(s)\n Genital structures, NOS\n Ovary(ies)\n Vagina", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 320, 720\n\nOther genital structures, by metastasis:\n Broad ligament\n Cervix\n Corpus uteri\n Fallopian tube(s)\n Genital structures, NOS\n Ovary(ies)\n Uterus, NOS \n Vagina", "VALUE:T2", "VALUE:T2", "VALUE:D", "VALUE:D" ], [ "720", "Other genital structures by metastasis:\n Broad ligament\n Cervix\n Fallopian tube(s)\n Genital structures, NOS\n Ovary(ies)\n Vagina", "VALUE:T2", "VALUE:T2", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T2", "VALUE:T2", "VALUE:D", "VALUE:D" ], [ "810", "FIGO Stage IIA", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "820", "FIGO Stage IIB", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "850", "FIGO Stage II [NOS]", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbn.json
deleted file mode 100644
index 83aa100ff..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbn.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bbn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In case of multifocal noninvasive Ta and Tis tumors, use code 060 in preference to code 050.\n\n**Note 2**: Tumor involving both renal pelvis and ureter (unifocal or multifocal) is classified by the depth of greatest invasion in either organ for AJCC staging. Use codes 120 and 220 for extension of tumor involving the wall of both renal pelvis and ureter.\n\n**Note 3**: Direct invasion of the bladder by a ureteral tumor is classified by the depth of greatest invasion of the bladder or ureter for AJCC staging. \n\n**Note 4**: If CS Extension code is 050 or 060, Behavior ICD-O-3 must be coded as 2. If CS Extension code is 105 or greater, Behavior ICD-O-3 must be coded as 3.",
- "last_modified" : "2015-05-27T16:19:07.901Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "OBSOLETE DATA CONVERTED V0203\nSee code 060\n\nCarcinoma in situ, NOS\nNon-invasive, intraepithelial", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "050", "Noninvasive papillary carcinoma", "VALUE:Ta", "VALUE:Ta", "VALUE:IS", "VALUE:IS" ], [ "060", "In situ, intraepithelial, noninvasive (flat, sessile)", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 105, 120, 130 and 150\n\nSubepithelial connective tissue (lamina propria, submucosa) invaded\nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "105", "Subepithelial connective tissue (lamina propria, submucosa) of renal pelvis only\nSubepithelial connective tissue (lamina propria, submucosa) of ureter only", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Renal pelvis and ureter (unifocal or multifocal):\n Subepithelial connective tissue\n Renal pelvis from ureter\n Ureter from renal pelvis\n Distal ureter from proximal ureter\n(See Note 2)", "VALUE:T1", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "130", "Extension to bladder from ureter:\n Subepithelial connective tissue of distal ureter and/or bladder \n(See Note 3)", "VALUE:T1", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "150", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis of renal pelvis only\nMuscularis of ureter only", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "220", "Renal pelvis and ureter (unifocal or multifocal):\n Muscularis\n Renal pelvis from ureter\n Ureter from renal pelvis\n Distal ureter from proximal ureter\n(See Note 2)", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "230", "Extension to bladder from ureter:\n Muscularis of distal ureter and/or bladder \n(See Note 3)", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "350", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 120 and 220\n\nExtension to ureter from renal pelvis", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "370", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "400", "Extension to adjacent (connective) tissue:\n Peripelvic/periureteric tissue\n Retroperitoneal soft/connective tissue", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "For renal pelvis only:\n Ipsilateral kidney parenchyma and kidney, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA REVIEWED AND CHANGED V0102\nThis code was made obsolete in CS Version 1 and should no longer be used\n\nExtension to ureter from renal pelvis\n NOTE: cases were to be recoded to 350, 400 or 600", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "630", "Psoas muscle from ureter", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 120, 130, 220, and 230\n\nExtension to bladder from ureter\nImplants in ureter", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA CONVERTED V0203\nSee code 665 for renal pelvis and code 685 for ureter\n\nExtension to major blood vessel(s):\n Aorta\n Renal artery/vein\n Vena cava (inferior)\nTumor thrombus in a renal vein, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "665", "For renal pelvis only:\n Extension to major blood vessel(s):\n Aorta\n Renal artery/vein\n Vena cava (inferior)\n Tumor thrombus in a renal vein, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "Ipsilateral adrenal (suprarenal) gland from renal pelvis", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "680", "Duodenum from right renal pelvis or right ureter", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "685", "For ureter only:\n Extension to major blood vessel(s):\n Aorta\n Renal artery/vein\n Vena cava (inferior)\n Tumor thrombus in a renal vein, NOS", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "690", "Ascending colon from right ureter\nDescending colon from left ureter ", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "695", "690 + 685", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "700", "Extension to:\n Ascending colon from right renal pelvis\n Bladder (wall or mucosa) from renal pelvis\n Colon, NOS\n Descending colon from left renal pelvis\n Ipsilateral kidney parenchyma from ureter\n Liver\n Pancreas\n Perinephric fat via kidney\n Spleen", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA CONVERTED V0200\nSee code 690\n\nAscending colon from right ureter\nDescending colon from left ureter", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension, including:\n For ureter:\n Prostate\n Uterus", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbo.json
deleted file mode 100644
index f0533c62a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbo.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension - Clinical Extension",
- "notes" : "**Note 1**: This field and CS Site-Specific Factor 3, CS Extension - Pathologic Extension, must both be coded, whether or not a prostatectomy was performed. Information from prostatectomy and autopsy is excluded from this field and coded only in CS Site-Specific Factor 3.\n\n**Note 2**: AJCC considers \"in situ carcinoma of prostate gland\" an impossible diagnosis. Any case so coded will be mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 3**: Clinically apparent and inapparent tumor. Use the following rules to determine inapparent versus apparent for CS Extension - Clinical Extension codes 100-240 and, when in doubt, use code 300.\n\n* A. According to AJCC, the digital rectal examination (DRE) is considered the \"gold standard\" for clinical staging and the quality of imaging for staging is not sufficiently uniform to make it part of routine staging. Therefore, the registrar should not use imaging to determine an apparent tumor unless the managing clinician/urologist has used it in staging (herein termed \"reliably\" visible on imaging). If there is a discrepancy between a stage documented on an imaging report and a stage documented by a managing clinician/urologist, the latter takes precedence.\nA clinically apparent tumor is palpable or \"reliably\" visible by imaging. If a clinician documents a \"tumor\", \"mass\", or \"nodule\" by physical examination, this can be inferred as apparent. \"Tumor\", \"mass\", or \"nodule\" on imaging can only be used by the registrar if the managing clinician/urologist uses it.\nA clinically inapparent tumor is one that is neither palpable nor \"reliably\" visible by imaging. Physician documentation of a DRE that does not mention a palpable \"tumor\", \"mass\", or \"nodule\" can be inferred as inapparent. This would include findings limited to benign prostate or enlargement/hypertrophy. \nDo not infer inapparent or apparent tumor based on the registrar's interpretation of other terms in the DRE or imaging reports. A physician assignment of cT1 or cT2 is also a clear statement of inapparent or apparent respectively. Code to 300 (which maps to T2 NOS) in the absence of a clear physician's statement of inapparent or apparent (see also Note 3D).\n\n* B. Codes 100 to 150 are used only for clinically inapparent tumor (see Note 3A) and/or incidentally found microscopic carcinoma (latent, occult) in one or both lobes. Within this range, give priority to codes 130-150 over code 100. Do not use codes 100-140 for needle core biopsy. Use code 150 when tumor is found in one lobe, both lobes, or in prostatic apex by needle biopsy but is not palpable or \"reliably\" visible by imaging. Since code 150 is used to measure screening detected cases, it is important to only apply code 150 when it is clearly an inapparent case. \n\n* C. Codes 200 to 240 are used only for clinically apparent tumor (see Note 3A). Information from biopsy is not used to decide among codes 200-240. Prostate biopsy information is coded in CS Site-Specific Factor 14. Codes 210 and 220 have precedence over code 200. Code 200 has precedence over code 240. Use code 240 if the physician assigns cT2 without a subcategory of a, b, or c.\n\n* D. Code 300 is used for localized cancer when it is unknown if the tumor is clinically apparent. This would include cases with elevated PSA and positive needle core biopsy but no documentation regarding tumor apparency (inapparent versus apparent). Another example would be a diagnosis made prior to admission for a prostatectomy with no details provided on the initial clinical findings.\n\n**Note 4**: Codes 410 to 700 are used for extension beyond the prostate. Information from biopsy of extraprostatic tissue is coded in CS Extension - Clinical Extension (see Note 3 and code 2 on the prostate CS Tumor Size/Ext Eval table for further information).\n\n**Note 5**: Involvement of the prostatic urethra does not alter the extension code.\n\n**Note 6**: \"Frozen pelvis\" is a clinical term which means tumor extends to pelvic sidewall(s). In the absence of a more detailed statement of involvement, assign a description of frozen pelvis to code 600.\n\n**Note 7**: As indicated in Note 1, information from prostatectomy/autopsy is not considered when coding CS Extension - Clinical Extension and is only coded in CS Site-Specific Factor 3 CS Extension - Pathologic Extension. This also applies to incidental findings of prostate cancer during a prostatectomy for other reasons (for example, a cytoprostatectomy for bladder cancer). If there is documentation regarding a normal prostate evaluation (physical examination or imaging) prior to prostatectomy/autopsy, code 950 (no evidence of primary tumor) in this field. If there is no documentation regarding a normal prostate evaluation (physical examination or imaging) prior to prostatectomy/autopsy, code 999 (unknown; extension not stated) in this field.\n\n**Note 8**: The mapping values for TNM, SS77, and SS2000 and the associated c, p, yp, or a indicator (staging basis) are assigned based on the values in CS Extension - Clinical Extension, CS Tumor Size/Ext Eval, and CS Site-Specific Factor 3 - Pathologic Extension. The calculation depends on whether clinical information or pathologic information takes precedence in a specific case. Note that for prostate, AJCC pathologic staging usually requires a prostatectomy. Pathologic staging information from a prostatectomy takes precedence except when neoadjuvant treatment has been given and clinical extension is either as extensive or more extensive than pathologic extension. The CS algorithm implements this logic as shown in the Special Calculation extra tables. Some combinations of codes may be errors. The CS algorithm will derive stage values if possible; a separate edit program may be required to identify errors for correction.",
- "footnotes" : "For this site, extension is coded in two CS fields: CS Extension - Clinical Extension and CS Site-Specific Factor 3 - Pathologic Extension. The mapping values for the T category for AJCC stage, SS77, and SS2000 and the associated c, p, yp, or a indicator are assigned based on the values in CS Extension - Clinical Extension, CS Tumor Size/Ext Eval, and CS Site-Specific Factor 3 - Pathologic Extension as shown in the Special Calculation Table for TNM 7 Invasive/Unknown Pathologic Extension Eval, Special Calculation Table for TNM 7 Non-Invasive Pathologic Extension, Special Calculation Table for TNM 6 Invasive/Unknown Pathologic Extension Eval, Special Calculation Table for TNM 6 Non-Invasive Pathologic Extension, and Special Calculation Table for SEER Summary Stage.",
- "last_modified" : "2015-05-27T16:19:07.985Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77_d",
- "name" : "Summary Stage 1977 T",
- "type" : "DESCRIPTION"
- }, {
- "key" : "t2000_d",
- "name" : "Summary Stage 2000 T",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "IS", "IS" ], [ "100", "Incidental histologic finding (for example, on TURP), number of foci or percent of involved tissue not specified (clinically inapparent)\n(See Note 3B)\n\nStated as cT1 [NOS] with no other information on clinical extension", "VALUE:T1NOS", "VALUE:T1NOS", "L", "L" ], [ "130", "Incidental histologic finding (for example, on TURP) in 5 percent or less of tissue resected (clinically inapparent)\n(See Note 3B)\n\nStated as cT1a with no other information on clinical extension", "VALUE:T1a", "VALUE:T1a", "L", "L" ], [ "140", "Incidental histologic finding (for example, on TURP) in more than 5 percent of tissue resected (clinically inapparent)\n(See Note 3B)\n\nStated as cT1b with no other information on clinical extension", "VALUE:T1b", "VALUE:T1b", "L", "L" ], [ "150", "Tumor identified by needle biopsy (clinically inapparent) \n Example - for elevated PSA\n(See Note 3B)\n\nStated as cT1c with no other information on clinical extension", "VALUE:T1c", "VALUE:T1c", "L", "L" ], [ "200", "Involvement in one lobe/side, NOS \n(Clinically apparent: do NOT use information from biopsy to determine extent of involvement)\n(See Note 3C)", "VALUE:T2NOS", "VALUE:T2NOS", "L", "L" ], [ "210", "Involves one half of one lobe/side or less \n(Clinically apparent: do NOT use information from biopsy to determine extent of involvement)\n(See Note 3C)\n\nStated as cT2a with no other information on clinical extension", "VALUE:T2a", "VALUE:T2a", "L", "L" ], [ "220", "Involves more than one half of one lobe/side, but not both lobes/sides\n(Clinically apparent: do NOT use information from biopsy to determine extent of involvement)\n(See Note 3C)\n\nStated as cT2b with no other information on clinical extension", "VALUE:T2b", "VALUE:T2b", "L", "L" ], [ "230", "Involves both lobes/sides \n(Clinically apparent: do NOT use information from biopsy to determine extent of involvement)\n(See Note 3C)\n\nStated as cT2c with no other information on clinical extension", "VALUE:T2c", "VALUE:T2c", "L", "L" ], [ "240", "Clinically apparent tumor confined to prostate, NOS\n\nStated as cT2 [NOS] with no other information on clinical extension", "VALUE:T2NOS", "VALUE:T2NOS", "L", "L" ], [ "300", "Localized, NOS\nConfined to prostate, NOS\nIntracapsular involvement only\nNot stated if T1 or T2, clinically apparent or inapparent", "VALUE:T2NOS", "VALUE:T2NOS", "L", "L" ], [ "310", "OBSOLETE DATA REVIEWED AND CHANGED V0102 \n\nInto prostatic apex/arising in prostatic apex, NOS \n(See Site-Specific Factor 4)", "ERROR:", "ERROR:", "ERROR", "ERROR" ], [ "330", "OBSOLETE DATA REVIEWED AND CHANGED V0102 \n\nArising in prostatic apex \n(See Site-Specific Factor 4)", "ERROR:", "ERROR:", "ERROR", "ERROR" ], [ "340", "OBSOLETE DATA REVIEWED AND CHANGED V0102 \n\nExtending into prostatic apex \n(See Site-Specific Factor 4)", "ERROR:", "ERROR:", "ERROR", "ERROR" ], [ "410", "Extension to periprostatic tissue\nExtracapsular extension (beyond prostatic capsule), NOS\nThrough capsule, NOS", "VALUE:T3NOS", "VALUE:T3NOS", "RE", "RE" ], [ "420", "Unilateral extracapsular extension", "VALUE:T3a", "VALUE:T3a", "RE", "RE" ], [ "430", "Bilateral extracapsular extension", "VALUE:T3a", "VALUE:T3a", "RE", "RE" ], [ "440", "Microscopic bladder neck involvement", "VALUE:T3a", "VALUE:T4", "RE", "RE" ], [ "445", "Stated as T3a with no other information on extension", "VALUE:T3a", "VALUE:T3a", "RE", "RE" ], [ "450", "Extension to seminal vesicle(s) \n\nStated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T3b", "RE", "RE" ], [ "470", "450 + 440\nExtension to seminal vesicle(s) plus microscopic bladder neck involvement", "VALUE:T3b", "VALUE:T4", "RE", "RE" ], [ "490", "Periprostatic extension, NOS\n(Unknown if seminal vesicle(s) involved)\n\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3NOS", "RE", "RE" ], [ "500", "Extension to or fixation to adjacent \nstructures other than seminal vesicles:\n Bladder neck, except microscopic bladder neck involvement (see code 440)\n Bladder, NOS\n Fixation, NOS\n Rectovesical (Denonvillier's) fascia\n Rectum; external sphincter", "VALUE:T4", "VALUE:T4", "RE", "RE" ], [ "510", "Extraprostatic urethra (membranous urethra)", "VALUE:T4", "VALUE:T4", "RE", "RE" ], [ "520", "Levator muscles\nSkeletal muscle, NOS\nUreter(s)", "VALUE:T4", "VALUE:T4", "D", "RE" ], [ "600", "Extension to or fixation to pelvic wall or pelvic bone\n\"Frozen pelvis\", NOS (see Note 6)", "VALUE:T4", "VALUE:T4", "D", "D" ], [ "700", "Further contiguous extension including:\n Bone\n Other organs\n Penis\n Sigmoid colon\n Soft tissue other than periprostatic", "VALUE:T4", "VALUE:T4", "D", "D" ], [ "750", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "RE", "RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "U", "U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "U", "U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbp.json
deleted file mode 100644
index 17d694af1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbp.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The parenchyma of the kidney includes the following structures: cortex (outer layer of kidney), renal columns; medulla, medullary rays, renal pyramids, and renal papillae; nephrons (renal corpuscle, loops of Henle, proximal and distal tubules, collecting duct); glomerulus and surrounding Bowman's capsule. The most common site for renal parenchymal cancer to develop is in the proximal convoluted tubule. Tumor extension from one of these structures into another is coded 100 in the absence of further involvement.\n\n**Note 2**: Gerota's fascia is a fibrous tissue sheath surrounding the kidney and suprarenal or adrenal gland. The perirenal fat, renal capsule, and renal parenchyma lie below the fascia.\n\n**Note 3**: Information about invasion beyond the capsule, venous involvement, and ipsilateral adrenal gland involvement is collected in this field for anatomic staging. This information is also collected in CS Site-Specific Factor 1, CS Site-Specific Factor 2, and CS Site-Specific Factor 3, as these factors may have an independent effect on prognosis.\n\n**Note 4**: AJCC considers \"in situ carcinoma of the renal parenchyma\" an impossible diagnosis. Any case so coded is mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 5**: Use code 300 (Localized, NOS) only when no further information is available to assign code 100, 200, or 310-360.\n\n**Note 6**: The assignment of T1 and T2 categories for tumors limited to the kidney is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 310-360, 605-625 or 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available. \n\n**Note 7**: Direct extension to or other involvement of structures considered M1 in AJCC staging is coded in the data item CS Mets at DX. This includes: contralateral kidney; contralateral ureter; liver from left kidney; spleen from right kidney.",
- "footnotes" : "- For CS Extension codes 100-360 ONLY, the T category for AJCC 7 is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this site. \n- For CS Extension codes 100-360 ONLY, the T category for AJCC 6 is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this site.",
- "last_modified" : "2015-05-27T16:19:08.055Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive cancer confined to kidney cortex and/or medulla", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "200", "Invasion of renal capsule\nRenal pelvis or calyces involved\nSeparate focus of tumor in renal pelvis/calyx", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1a with no other information on extension", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T1b with no other information on extension", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "330", "Stated as T1 [NOS] with no other information on extension", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "340", "Stated as T2a with no other information on extension", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T2b with no other information on extension", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "360", "Stated as T2 [NOS] with no other information on extension", "JUMP:extension_size_table_ajcc7_xek", "JUMP:extension_size_table_ajcc6_xal", "VALUE:L", "VALUE:L" ], [ "390", "OBSOLETE DATA CONVERTED V0200 \nSee code 625\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "400", "OBSOLETE DATA RETAINED V0200\nAdrenal (suprarenal gland), ipsilateral reclassified in AJCC 7; see codes 450 and 630 \n\nAdrenal (suprarenal) gland, ipsilateral\nPerirenal (perinephric) tissue/fat\nRenal (Gerota's) fascia\nRenal sinus fat\nRetroperitoneal soft tissue ", "ERROR:", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "450", "OBSOLETE DATA REVIEWED V0203\nSee codes 460 and 660\n\nPerirenal (perinephric) tissue/fat\nRenal (Gerota's) fascia\nRenal sinus fat\nRetroperitoneal soft tissue", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "460", "Perirenal (perinephric) tissue/fat\nRenal (Gerota's) fascia\nRenal sinus fat", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nBlood vessels reclassified in AJCC 7th Edition; see codes 601 and 610\n\nBlood vessels:\n Extrarenal portion of renal vein or segmental (muscle containing) branches\n Hilar blood vessel\n Inferior vena cava below diaphragm\n Perirenal vein\n Renal artery\n Renal vein, NOS\n Tumor thrombus in a renal vein, NOS", "ERROR:", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "601", "Blood vessels:\n Extrarenal portion of renal vein or segmental (muscle containing) branches\n Hilar blood vessel\n Perirenal vein\n Renal artery\n Renal vein, NOS\n Tumor thrombus in a renal vein, NOS", "VALUE:T3a", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "605", "Stated as T3a with no other information on extension", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "610", "Inferior vena cava (IVC) below diaphragm\n\nStated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "620", "IVC above diaphragm or invades wall of IVC\n\nStated as T3c with no other information on extension", "VALUE:T3c", "VALUE:T3c", "VALUE:RE", "VALUE:RE" ], [ "625", "IVC, NOS\n\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:RE", "VALUE:RE" ], [ "630", "Ipsilateral adrenal (suprarenal) gland \n(Noncontiguous ipsilateral adrenal gland involvement coded in CS Mets at DX)", "VALUE:T4", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "640", "630 + (601 and/or 610) \n\nIpsilateral adrenal gland plus blood vessels listed in code 601 and/or IVC below diaphragm", "VALUE:T4", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "645", "630 + 620\n\nIpsilateral adrenal gland plus IVC above diaphragm or wall of IVC ", "VALUE:T4", "VALUE:T3c", "VALUE:RE", "VALUE:RE" ], [ "650", "Extension beyond Gerota's fascia to:\n Ascending colon from right kidney\n Descending colon from left kidney\n Diaphragm\n Duodenum from right kidney\n Peritoneum\n Tail of pancreas\n Ureter, including implant(s), ipsilateral\nBeyond Gerota's fascia, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "Retroperitoneal soft tissue", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "665", "660 + any of (460, 601, 610, 620, 625, 630, 640, 645, 650)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "Extension beyond Gerota's fascia to:\n Psoas muscle\n Quadratus lumborum muscle", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "700", "Ribs", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Liver from right kidney\nSpleen from left kidney\nStomach ", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 460, 601, 610-750, 801, CS Mets at DX codes 20, 55\n\nFurther contiguous extension:\n Aorta\n Other direct extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension:\n Aorta\n Other direct extension (except to structures specified in CS Mets at DX code 20)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbq.json
deleted file mode 100644
index 9f09df852..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbq.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The cortex of a bone is the dense outer shell that provides strength to the bone; the spongy center of a bone is the cancellous portion. The periosteum of the bone is the fibrous membrane covering of a bone that contains the blood vessels and nerves; the periosteum is similar to the capsule on a visceral organ.\n\n**Note 2**: The assignment of T1and T2 categories for tumors of bone is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 310 and 350 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: The term \"skip metastasis\" is not used with a consistent meaning in the literature. In some cases, it refers to discontinuous metastasis in the same bone as the primary tumor, while in other cases it refers to discontinuous metastasis in an adjacent bone, usually in the same limb. For AJCC staging, discontinuous metastasis in the same bone is classified as T3 (coded in CS Extension), and discontinuous metastasis in an adjacent bone is classified as M1b (coded in CS Mets at DX). If a primary bone tumor is stated as having \"skip metastasis\" or \"skip lesions\" with no other information regarding the bone involved, use code 820 in CS Extension.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-800 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.125Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Invasive tumor confined to cortex of bone", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:L", "VALUE:L" ], [ "200", "Extension beyond cortex to periosteum (No break in periosteum)", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1 with no other information on extension", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T2 with no other information on extension", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:L", "VALUE:L" ], [ "400", "Extension beyond periosteum to surrounding tissues, including adjacent skeletal muscle(s)", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent bone/cartilage", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:RE", "VALUE:RE" ], [ "700", "Skin", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "JUMP:extension_size_xfu", "JUMP:extension_size_xfu", "VALUE:D", "VALUE:D" ], [ "820", "Discontinuous tumors in the primary bone site", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "850", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbr.json
deleted file mode 100644
index c616712a2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbr.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For AJCC TNM staging, peritoneal sarcomas are classified as deep tumors.\n\n**Note 2**: The assignment of T1 and T2 categories for soft tissue sarcomas is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 350 and 375 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-800 ONLY, the T category for AJCC 6 staging is assigned based on value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.178Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Tumor confined to site of origin", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T1b or T1 [NOS] with no other information on extension", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "375", "Stated as T2b or T2 [NOS] with no other information on extension", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue \n(See definition of adjacent connective tissue in General Rules)", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures: \n Bone/cartilage \n Colon (except ascending and descending colon)\n Esophagus\n Gallbladder\n Liver\n Small intestine\n Spleen\n Stomach", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension, including: \n Extension to ascending or descending colon", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbs.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbs.json
deleted file mode 100644
index 585e9d2e8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbs.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbs",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Over 90% of penile cancers are squamous cell carcinomas arising in the skin. Other cancers arising in the skin include adenocarcinomas (5%) arising in sweat glands, melanomas (2%, included in the Melanoma schema), and basal cell carcinoma (2%). About 1% of penile cancers are sarcomas, arising in subcutaneous connective tissues.\n\n**Note 2**: Verrucous carcinoma (M-8051) is a locally aggressive, exophytic, low grade carcinoma with minimal metastatic potential. \n\n**Note 3**: If verrucous carcinoma is described as noninvasive or as having a broad pushing border or penetration, assign code 050. If verrucous carcinoma is not so characterized, assign code 070, Verrucous carcinoma, NOS. If there is destructive invasion of verrucous carcinoma into structures in code 100 or greater, assign the appropriate higher code.\n\n**Note 4**: Information about involvement of the corpus spongiosum or corpus cavernosum is collected in this field for anatomic staging. This information is also collected in CS Site-Specific Factor 10 because involvement of these structures may have an independent effect on prognosis.",
- "footnotes" : "- For CS Extension codes 100-320 ONLY, the T category is assigned based on Grade and Lymph-vascular Invasion, as shown in the Extension Grade LVI Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.248Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive\nBowen disease\nErythroplasia of Queyrat", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "Noninvasive verrucous carcinoma \n(See Note 3)", "VALUE:Ta", "VALUE:Ta", "VALUE:IS", "VALUE:IS" ], [ "070", "Verrucous carcinoma, NOS \n(See Note 1)", "VALUE:Ta", "VALUE:Ta", "VALUE:L", "VALUE:L" ], [ "100", "Invasive tumor limited to subepithelial connective tissue, but not involving corpus spongiosum or cavernosum \n\nIf primary is skin: invasive tumor limited to skin of penis, prepuce (foreskin) and/or glans\n\nStated as T1 [NOS] with no other information on extension", "JUMP:extension_grade_lvi_xdm", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_grade_lvi_xdm", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "305", "Satellite nodules on prepuce or glans", "JUMP:extension_grade_lvi_xdm", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "310", "Stated as T1a with no other information on extension", "JUMP:extension_grade_lvi_xdm", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T1b with no other information on extension", "JUMP:extension_grade_lvi_xdm", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "350", "For body of penis ONLY:\n Corpus cavernosum\n Corpus spongiosum\n Tunica albuginea of corpus spongiosum", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "360", "350 + 305\n\nTumors in body of penis plus satellite nodules on prepuce or glans", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "400", "Corpus cavernosum except for tumor in body of penis\nCorpus spongiosum except for tumor in body of penis\nTunica albuginea of corpus spongiosum except for tumor in body of penis", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "460", "400 + 305", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA CONVERTED V0203\nSee code 305\n\nSatellite nodule(s) on prepuce or glans", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "550", "OBSOLETE DATA REVIEWED V0203\nSee code 360 and 460\n\n500 + (350 or 400)", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "560", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "600", "OBSOLETE DATA RETAINED V0200\nProstate reclassified as T4 in AJCC 7th Edition, see codes 620 and 650\n\nProstate\nUrethra", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "Urethra\n\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "Prostate", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "700", "Adjacent structures:\nMuscle, NOS:\n Bulbospongiosus\n Ischiocavernosus\n Superficial transverse perineal\nSkin:\n Abdominal\n Perineum\n Pubic\n Scrotal", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension\n Testis", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown extension\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbt.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbt.json
deleted file mode 100644
index dd054dec9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbt.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbt",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For AJCC TNM staging, sarcomas of the heart and mediastinum are classified as deep tumors.\n\n**Note 2**: The assignment of T1 and T2 categories for soft tissue sarcomas is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 350 and 375 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-800 ONLY, the T category for AJCC 6 staging is assigned based on value of CS Tumor Size as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.319Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Invasive tumor confined to site of origin", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T1b or T1 [NOS] with no other information on extension", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "375", "Stated as T2b or T2 [NOS] with no other information on extension", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue:\n For heart: \n Visceral pericardium (epicardium)\n(See definition of adjacent connective tissue in General Rules)", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n For hHeart: \n Ascending aorta\n Parietal pericardium\n Vena cava\n For mediastinum: \n Descending aorta\n Esophagus\n Large (named) artery(ies)\n Large (named) vein(s)\n Pericardium, NOS\n Parietal\n Visceral (epicardium)\n Phrenic nerve(s)\n Pleura, NOS\n Parietal pleura\n Visceral pleura of lung\n Sternum\n Sympathetic nerve trunk(s)\n Thoracic duct\n Thymus\n Trachea, parietal pleura\n Vertebra(e)", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbu.json
deleted file mode 100644
index 56d5d0f9f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbu.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Islets of Langerhans are distributed throughout the pancreas; an islet tumor is coded to the subsite of the pancreas in which the tumor arises if the information is available.\n\n**Note 2**: Codes 400-780 are used for contiguous extension of tumor from the site of origin. Discontinuous involvement is coded in CS Mets at DX.\n\n**Note 3**: The assignment of T1 and T2 categories for tumors of the pancreas is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 150 and 200 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100, 150, 200, and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100, 150, 200, and 300 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.389Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intrapethelial, noninvasive \nPancreatic intraepithelial neoplasia III (PanInIII) ", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to pancreas", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "150", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "200", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "400", "Peripancreatic tissue", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 510\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Ampulla of Vater\nDuodenum\nExtra hepatic bile duct(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "500", "Adjacent large vessel(s) (except as listed in code 600)\nColon\nSpleen\nStomach", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "510", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "Tumor is inseparable from the celiac axis or superior mesenteric artery\nAorta\nCeliac artery\nSuperior mesenteric artery", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "790", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbv.json
deleted file mode 100644
index 0708e72a8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbv.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Tumors of the head of the pancreas arise to the right of the superior mesenteric-portal vein confluence.\n\n**Note 2**: Islets of Langerhans are distributed throughout the pancreas; an islet tumor is coded to the subsite of the pancreas in which the tumor arises if the information is available.\n\n**Note 3**: The assignment of T1 and T2 categories for tumors of the pancreas is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 150 and 200 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100, 150, 200, and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema. \n- For CS Extension codes 100, 150, 200, and 300 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.443Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive \nPancreatic Intraepithelial Neoplasia III (PanInIII) ", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to pancreas", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "150", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "200", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "400", "Extension to peripancreatic tissue, NOS\nFixation to adjacent structures, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 595\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "440", "Ampulla of Vater\nDuodenum\nExtrahepatic bile duct(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "500", "Adjacent stomach\nStomach, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "540", "Blood vessel(s) (major):\n Gastroduodenal artery\n Hepatic artery\n Pancreaticoduodenal artery\n Portal vein\n Superior mesenteric vein\nTransverse colon, including hepatic flexure", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "Mesenteric fat\nMesentery\nMesocolon\nPeritoneum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "570", "Gallbladder", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "575", "Omentum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "580", "Body of stomach", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "590", "580 + (550 and/or 570)\n\nBody of stomach plus any structures in 550 and/or 570", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "593", "580 + 575\n\nBody of stomach plus omentum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "595", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "Tumor is inseparable from the superior mesenteric artery\nSuperior mesenteric artery", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 575, 593, 640\n\nOmentum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "630", "Liver (including porta hepatis)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "640", "600 + 575\n\nSuperior mesenteric artery plus omentum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "650", "600 + (550 and/or 570)\n\nSuperior mesenteric artery plus any structure in code 550 and/or 570", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "660", "600 + 580\n\nSuperior mesenteric artery plus body of stomach", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "670", "(550, 570, 610, and/or 630) + 600 + 580 \n\nAny structure in codes 550, 570, 610, and/or 630 plus superior mesenteric artery plus body of stomach\n\nOR\n\n(550, 570, 610, and/or 630) + 580\n\nAny structure in codes 550, 570, 670, and/or 630 plus body of stomach", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "680", "Tumor is inseparable from the celiac axis\nAorta \nCeliac artery", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "690", "Colon (other than transverse colon including hepatic flexure)\nSpleen", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "780", "Adrenal (suprarenal) gland\nIleum\nJejunum\nKidney\nRetroperitoneum\nUreter", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbx.json
deleted file mode 100644
index 4e3efb47b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbx.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: This AJCC staging system applies only to pleural mesotheliomas. Peritoneal and pericardial mesotheliomas are not TNM staged.\n\n**Note 2**: Pleural effusion does not affect the coding of the CS Extension field, but is coded in CS Site-Specific Factor 1.",
- "footnotes" : "- For CS Extension codes 120-999, the assignment of Summary Stage 1977 and Summary Stage 2000 depends on the value of CS Site-Specific Factor 1, Pleural Effusion, as shown in the Extension Pleural Effusion Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.514Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "OBSOLETE DATA CONVERTED V0200\nSee code 160\n\nInvasive tumor (mesothelioma) confined to pleura, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "120", "Ipsilateral parietal pleura, including mediastinal or diaphragmatic pleura, \nWITHOUT involvement of visceral pleura\n\nStated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1a", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "140", "Ipsilateral parietal pleura, including mediastinal or diaphragmatic pleura,\nWITH focal involvement of visceral pleura\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1b", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "160", "Invasive tumor (mesothelioma) confined to pleura, NOS \nIpsilateral parietal pleura, including mediastinal or diaphragmatic pleura, involvement of visceral pleura not stated", "VALUE:T1NOS", "VALUE:T1NOS", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "170", "Stated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "200", "Ipsilateral pleura WITH nodule(s) beneath visceral pleural surface\nIpsilateral pleural surface with confluent visceral pleural tumor (including fissure)", "VALUE:T2", "VALUE:T2", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "300", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 170, 305\n\nLocalized, NOS \nStated as T1, NOS with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "305", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "420", "Diaphragm (diaphragmatic muscle)", "VALUE:T2", "VALUE:T2", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "500", "Mesothelioma nodule(s) which have broken through the visceral pleural surface to the lung surface\nLung parenchyma, or lung involvement, NOS", "VALUE:T2", "VALUE:T2", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "510", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "520", "Adjacent connective tissue:\n Pericardium, non-transmural or NOS\n Endothoracic fascia", "VALUE:T3", "VALUE:T3", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "610", "Chest wall, solitary focus of tumor ONLY\nMediastinal tissues, mediastinal fat", "VALUE:T3", "VALUE:T3", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "620", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "630", "Diffuse or multifocal invasion of soft tissues of chest wall\nHeart muscle, myocardium\nMediastinal organs\nRib", "VALUE:T4", "VALUE:T4", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "650", "Extension to internal surface of pericardium", "VALUE:T4", "VALUE:T4", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "690", "Pericardial effusion with positive cytology", "VALUE:T4", "VALUE:T4", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "780", "Contralateral pleura\n(For contralateral lung, see CS Mets at DX)", "VALUE:T4", "VALUE:T4", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "800", "Further contiguous extension:\n Brachial plexus\n Cervical tissues\n Intra-abdominal organs\n Peritoneum\n Spine", "VALUE:T4", "VALUE:T4", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "850", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "JUMP:pleural_effusion_extension_xbz", "JUMP:pleural_effusion_extension_xbz" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bby.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bby.json
deleted file mode 100644
index 523c1245b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bby.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bby",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC considers all anaplastic carcinomas to be T4.\n\n**Note 2**: AJCC considers \"in situ carcinoma of thyroid gland\" an impossible diagnosis. Any case so coded is mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 3**: The assignment of T1 and T2 categories for carcinoma of the thyroid is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 405, 410, 415, 420, 490, 560, 810, and 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100, 200, 400, 405, 410, 415, 420, or 490.\n\n**Note 5**: Extension codes 405, 410, 415, 420, and 490 are not compatible with anaplastic carcinomas of the thyroid.",
- "footnotes" : "- For CS Extension codes 000, 100-550, 950, and 999 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and/or CS Extension and CS Site-Specific Factor 1 as shown in the Extension Size SSF 1 AJCC 7 Table for all histologies except 8020, 8021, 8030, 8031, and 8032, or any other histology with grade equal to 4. For these histologies or grade 4, the T category for AJCC 7 staging is assigned based on the value of CS Extension and CS Site-Specific Factor 1 as shown in the Histology Grade Extension SSF 1 AJCC 7 Table. \n- For CS Extension codes 560-700 and 730-815 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Extension and CS Site-Specific Factor 1 as shown in the Extension T4 SSF 1 AJCC 7 Table. \n- For CS Extension codes 000, 100-550, 950, and 999 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and/or CS Extension as shown in the Extension Size AJCC 6 Table for all histologies except 8020, 8021, 8030, 8031, and 8032, or any other histology with grade equal to 4. For these histologies or grade 4, the T category for AJCC 6 staging is assigned based on the value of CS Extension as shown in the Histology Grade Extension AJCC 6 Table. \n- For CS Extension code 560 ONLY, the value for SS1977 and SS2000 is assigned based on the value of histology and grade as shown in the Histology Grade Extension Summary Stage Table.",
- "last_modified" : "2015-05-27T16:19:08.570Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:IS", "VALUE:IS" ], [ "100", "Single invasive tumor confined to thyroid", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "200", "Multiple foci confined to thyroid", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "400", "Into thyroid capsule, but not beyond", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1a with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T1b with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T1 [NOS] with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "420", "Stated as T2 with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "450", "Minimal extrathyroid extension including:\n Strap muscle(s):\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:RE", "VALUE:RE" ], [ "480", "Pericapsular soft tissue/connective tissue", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:RE", "VALUE:RE" ], [ "490", "Stated as T3 with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:L", "VALUE:L" ], [ "500", "Parathyroid\nNerves:\n Recurrent laryngeal\n Vagus", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:RE", "VALUE:RE" ], [ "520", "Cricoid cartilage\nEsophagus\nLarynx\nSternocleidomastoid muscle", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:RE", "VALUE:RE" ], [ "550", "Trachea", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:D", "VALUE:D" ], [ "560", "Stated as T4a with no other information on extension", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4a", "JUMP:histology_grade_extension_summary_stage_xgx", "JUMP:histology_grade_extension_summary_stage_xgx" ], [ "600", "Thyroid cartilage\nTumor described as \"FIXED to adjacent tissues\"", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "620", "Blood vessel(s) (major):\n Carotid artery (encased)\n Jugular vein\n Thyroid artery or vein", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "650", "(600 or 620) + 550 \n\nAny structures in code 600 or 620 plus trachea", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "700", "Bone\nSkeletal muscle, other than strap or sternocleidomastoid muscle", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA CONVERTED V0200 \nSee code 550 \n\nTrachea", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "730", "700 + 550\n\nAny structures in code 700 plus trachea", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including:\n Mediastinal tissues\n Prevertebral fascia", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "JUMP:extension_t4_ssf1_ajcc7_xgw", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "JUMP:determine_correct_table_for_ajcc7_t_ns32", "JUMP:determine_correct_table_for_ajcc6_t_ns33", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbz.json
deleted file mode 100644
index ced3949f4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bbz.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bbz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For AJCC TNM staging, Superficial lesions are located entirely in the subcutaneous tissues without any degree of extension through the muscular fascia or into underlying muscle. \n\n**Note 2**: For AJCC TNM staging, Deep lesions are located partly or completely within one or more muscle groups within the extremity. Deep tumors may extend through the muscular fascia into the subcutaneous tissues or even to the skin but the critical criterion is location of any portion of the tumor within the muscular components of the extremity. \n\n**Note 3**: For tumors of the extremities and trunk ONLY, superficial lesions are defined as those not involving the superficial muscular fascia. Deep lesions are those that involve or are beneath the superficial fascia.\n\n**Note 4**: According to AJCC, \"All intraperitoneal visceral lesions, retroperitoneal lesions, and intrathoracic lesions, and the majority of head and neck tumors are considered deep.\" For coding extension of soft tissue tumors in these sites (C47.0, C47.3-5, C49.0, C49.3-5), use only codes 120, 312, 315, 320, 420, 620, 800, 950, or 990.\n\n**Note 5**: Adjacent connective tissue is defined as the unnamed tissues that immediately surround an organ or structure containing a primary cancer. Use code 400 when a tumor has invaded past the outer border (capsule, serosa, or other edge) of the primary organ into the organ's surrounding supportive structures but has not invaded into larger structures or adjacent organs. Blood, cartilage, and bone are sometimes considered connective tissues, but they are coded separately.\n\n**Note 6**: If a vessel has a name, for example brachial artery or recurrent laryngeal nerve, consider it a structure (code 600).\n\n**Note 7**: The assignment of T1 and T2 categories for soft tissue sarcomas is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 302, 305, 312, 315, 322, and 325 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-800, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-800 the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.628Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Invasive tumor confined to site/tissue of origin, NOS", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "110", "Superficial invasive tumor confined to site/tissue of origin \n(Lesion does not involve superficial fascia)", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "120", "Deep tumor confined to site/tissue of origin", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "302", "Stated as T1a with no other information on extension", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "305", "Stated as T2a with no other information on extension", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "310", "Superficial: Localized tumor, NOS", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "312", "Stated as T1b with no other information on extension", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "315", "Stated as T2b with no other information on extension", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "320", "Deep: Localized tumor, NOS", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "322", "Stated as T1 [NOS] with no other information on extension", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "325", "Stated as T2 [NOS] with no other information on extension", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue (see Note 5)", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:RE", "VALUE:RE" ], [ "410", "Superficial tumor involving adjacent connective tissue", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:RE", "VALUE:RE" ], [ "420", "Deep tumor involving adjacent connective tissue", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures including bone/cartilage\n(Including major vessel invasion) ", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nTumors in adjacent organs/structures are deep; see Notes 1-6. Recode involvement of superficial tumors to codes 110, 310, 410. Recode involvement of deep tumors to 620.\n\nSuperficial tumor involving adjacent organs/structures including bone/cartilage (Including major vessel invasion) (see Note 5)", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:RE", "VALUE:RE" ], [ "620", "Deep tumor involving adjacent organs/structures including bone/cartilage\n(Including major vessel invasion) (see Note 5)", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "JUMP:extension_size_xfn", "JUMP:extension_size_xfn", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bca.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bca.json
deleted file mode 100644
index 56534f5d4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bca.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bca",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC 7th Edition T1 and T2 categories are based on size and high risk features and not depth of invasion or extension. AJCC 7th Edition includes a T3 category for head and neck skin primaries only.\n\n**Note 2**: In the case of multiple simultaneous tumors, code the tumor with the greatest extension.\n\n**Note 3**: Skin ulceration does not alter the AJCC T category. \n\n**Note 4**: The assignment of the T1 category for cutaneous squamous cell carcinomas with one or no high-risk features is based on tumor size. A physician's statement of the T1 category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 510, 520, 600, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 5**: Use code 400 (Localized, NOS) when no further information is available to assign code 100, 500, 510, or 520.",
- "footnotes" : "- For CS Extension codes 100, 400, 500, 510, and 550 ONLY, the T category for AJCC 7 staging is assigned based on the values of CS Tumor Size and CS Site-Specific Factor 12, High Risk Features, as shown in the Extension Size High Risk Table for this schema.\n- For CS Extension codes 100, 400, 500 and 510 ONLY, the T category for AJCC 6th Edition is assigned based on value of CS Tumor Size as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:08.687Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive \nBowen disease", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Lesion(s) confined to dermis", "JUMP:extension_size_high_risk_xfy", "JUMP:extension_size_ajcc6_xfw", "VALUE:L", "VALUE:L" ], [ "400", "Localized, NOS", "JUMP:extension_size_high_risk_xfy", "JUMP:extension_size_ajcc6_xfw", "VALUE:L", "VALUE:L" ], [ "500", "Subcutaneous tissue (through entire dermis)", "JUMP:extension_size_high_risk_xfy", "JUMP:extension_size_ajcc6_xfw", "VALUE:L", "VALUE:L" ], [ "510", "Stated as T1 with no other information on extension", "JUMP:extension_size_high_risk_xfy", "JUMP:extension_size_ajcc6_xfw", "VALUE:L", "VALUE:L" ], [ "520", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "550", "Underlying cartilage and/or skeletal muscle", "JUMP:extension_size_high_risk_xfy", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "600", "For skin of head and neck primaries only:\n Maxilla\n Mandible\n Orbital bone\n Temporal bone\n\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "700", "OBSOLETE DATA RETAINED V0200\nInvasion of cartilage, bone, skeletal muscle reclassified in AJCC 7th Edition\nSee codes 550, 600, 710, and 750\n\nUnderlying cartilage, bone, skeletal muscle", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "710", "For skin of head and neck primaries only:\n Direct or perineural invasion of skull base", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "750", "Bone (other than in code 600 or 710):\n Axial or appendicular skeleton", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcb.json
deleted file mode 100644
index b86fbafd1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcb.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The two main types of bladder cancer are the flat (sessile) variety and the papillary type. The flat (sessile) variety is called in situ when tumor has not penetrated the basement membrane. Papillary tumor that has not penetrated the basement membrane is called noninvasive.\n\n* A. Definite statements of noninvasion for papillary transitional cell carcinomas (code 010) include: \n Noninfiltrating\n Noninvasive\n No evidence of invasion\n No extension into lamina propria\n No stromal invasion\n No extension into underlying supporting tissue\n Negative lamina propria and superficial muscle\n Negative muscle and (subepithelial) connective tissue\n No infiltrative behavior/component\n* B. Inferred descriptions of noninvasion for papillary transitional cell carcinomas (code 030) include: \n No involvement of muscularis propria and no mention of subepithelium/submucosa\n No statement of invasion (microscopic description present)\n (Underlying) Tissue insufficient to judge depth of invasion\n No invasion of bladder wall\n No involvement of muscularis propria\n Benign deeper tissue\n Microscopic description problematic (noninvasion versus superficial invasion)\n Frond surfaced by transitional cell\n No mural infiltration\n No evidence of invasion (no sampled stroma)\n Confined to mucosa (see also Note 3 if tumor is not described as papillary)\n\n**Note 3**: Noninvasive (in situ) flat transitional cell carcinoma: Careful attention must be given to the use of the term \"confined to mucosa\" for flat bladder carcinomas. Historically, carcinomas described as \"confined to mucosa\" were coded as localized. However, pathologists use this designation for noninvasion as well. Pathologists also vary in their use of the terms \"invasion of mucosa, grade 1\" and \"invasion of mucosa, grade 2\" to distinguish between noninvasive and invasive carcinomas. In order to accurately code tumors described as \"confined to mucosa\", abstractors should determine:\n \n* If the tumor is confined to the epithelium: then it is noninvasive (code 060). \n* If the tumor has penetrated the basement membrane to invade the lamina propria: then it is invasive (code 155). The lamina propria and submucosa tend to merge when there is no muscularis mucosa, so these terms may be used interchangeably, along with stroma and subepithelial connective tissue. \n* If the distinction between involvement of the epithelium and lamina propria cannot be made, then the tumor should be coded as \"confined to mucosa, NOS\" (code 100).\n Statements meaning confined to mucosa, NOS for flat transitional cell carcinomas include:\n * Confined to mucosal surface\n * Limited to mucosa, no invasion of submucosa and muscularis\n * No infiltration/invasion of fibromuscular and muscular stroma\n * Superficial, NOS\n\n**Note 4**: In case of multifocal noninvasive Ta and Tis tumors, use code 060 or 100 in preference to 010 or 030.\n\n**Note 5**: Use code 230 if the only description of extension is through full thickness of bladder wall, and there is no clear statement as to whether or not the cancer has extended into fat. If there is documentation that tumor has breached the wall, including invasion into fat or beyond, use code 411 or higher.\n\n**Note 6**: An associated in situ component of tumor extending into the prostatic ducts, prostatic glands, or ureter without invasion is disregarded in staging classification. Use the code that best describes depth of bladder wall invasion. \n\n**Note 7**: Direct invasion of the distal ureter is classified by the depth of greatest invasion in the bladder or ureter for AJCC staging. Use codes 165, 215, 235, and 245 for extension from bladder directly into distal ureter. The distal ureter is defined as below the iliac vessel, within the pelvic brim. \n\n**Note 8**: Extension from bladder into subepithelial tissue of prostatic urethra should be coded 160 and not code 600.\n\n**Note 9**: If CS Extension code is 010-060, Behavior ICD-O-3 must be coded as 2. If CS Extension code is 100, Behavior ICD-O-3 may be coded as 2 or 3. If CS Extension code is 155 or greater, Behavior ICD-O-3 must be coded as 3.",
- "last_modified" : "2015-05-27T16:19:08.746Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010", "Papillary:\n Papillary transitional cell carcinoma, stated to be noninvasive\n Papillary non-infiltrating\n(See Note 2A)\n\nStated as Ta with no other information on extension\n(See Notes 1 and 2)", "VALUE:Ta", "VALUE:Ta", "VALUE:IS", "VALUE:IS" ], [ "030", "Papillary:\n Papillary transitional cell carcinoma, with inferred description of noninvasion\n(See Note 2B)", "VALUE:Ta", "VALUE:Ta", "VALUE:IS", "VALUE:IS" ], [ "060", "Nonpapillary:\n Sessile (flat) (solid) carcinoma in situ\n Carcinoma in situ, NOS\n Transitional cell carcinoma in situ\n\nStated as Tis with no other information on extension", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to mucosa, NOS\n(See Note 3)", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA RETAINED V0200\nSee codes 155 and 170\n\nInvasive tumor confined to subepithelial connective tissue (tunica propria, lamina propria, submucosa, stroma)\nTNM/AJCC T1\nJewett-Strong-Marshall Stage A", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "155", "Subepithelial connective tissue (tunica propria, lamina propria, submucosa, stroma) of bladder only", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Subepithelial connective tissue of prostatic urethra", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "165", "Extension to distal ureter:\n Subepithelial connective tissue of bladder and/or distal ureter\n(See Note 7)", "VALUE:T1", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "170", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 240\n\nMuscle (muscularis propria) invaded, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "210", "Muscle (muscularis propria) of bladder only:\n Superficial muscle - inner half\n\nStated as T2a with no other information on extension", "VALUE:T2a", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "215", "Extension to distal ureter:\n Superficial muscle of bladder and/or distal ureter\n(See Note 7)", "VALUE:T2a", "VALUE:T2a", "VALUE:RE", "VALUE:RE" ], [ "220", "Muscle (muscularis propria) of bladder only:\n Deep muscle--outer half\n\nStated as T2b with no other information on extension", "VALUE:T2b", "VALUE:T2b", "VALUE:L", "VALUE:L" ], [ "230", "Extension through full thickness of bladder wall \nBUT still contained within bladder wall (see Note 5)", "VALUE:T2b", "VALUE:T2b", "VALUE:L", "VALUE:L" ], [ "235", "Extension to distal ureter:\n Deep muscle or extension through wall of bladder and/or distal ureter\n(See Note 7)", "VALUE:T2b", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "240", "Muscle (muscularis propria) invaded, NOS of bladder only\n\nStated as T2 [NOS] with no other information on extension", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "245", "Extension to distal ureter:\n Muscle (muscularis propria) invaded, NOS of bladder and/or distal ureter\n(See Note 7)", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:RE", "VALUE:RE" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA CONVERTED V0200\nSee code 430\n\nAdventitia\nExtension to/through serosa (mesothelium)\nPeritoneum\nPeriureteral fat/tissue\nPerivesical fat/tissue, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 411\n\nExtension to perivesical fat/tissues (microscopic)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "411", "Extension to perivesical fat/tissues (microscopic) including:\n Adventitia\n Serosa (mesothelium)\n Peritoneum\n Periprostatic tissue\n Distal periureteral tissue\n\nStated as T3a with no other information on extension", "VALUE:T3a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "415", "OBSOLETE DATA CONVERTED V0203\nSee code 411\n\nStated as T3a with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 421\n\nExtension to perivesical fat/tissues (macroscopic)\nExtravesical mass\nStated as T3b with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "421", "Extension to perivesical fat/tissues (macroscopic) including:\n Adventitia\n Serosa (mesothelium)\n Peritoneum\n Periprostatic tissue\n Distal periureteral tissue\nExtravesical mass\n\nStated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "430", "OBSOLETE DATA REVIEWED V0203\nSee codes 411, 421, 431\n\nAdventitia\nExtension to/through serosa (mesothelium)\nPeritoneum\nPeriureteral fat/tissue (see Note 10)\nPerivesical fat/tissue, NOS\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:RE", "VALUE:RE" ], [ "431", "Extension to perivesical fat/tissues, NOS (unknown if microscopic or macroscopic), including:\n Adventitia\n Serosa (mesothelium)\n Peritoneum\n Periprostatic tissue\n Distal periureteral tissue\n\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:RE", "VALUE:RE" ], [ "450", "OBSOLETE DATA CONVERTED V0200 \nSee code 810 \n\nStated as T4 [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 165, 215, 235, 245, and 630\n\nProstatic stroma\nProstate, NOS\nUreter\nUrethra, including prostatic urethra (excluding subepithelial connective tissue, see code 160)", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "630", "Prostatic stroma\nProstate, NOS\nUreter (excluding distal ureter)\nUrethra, including prostatic urethra (excluding subepithelial connective tissue, see code 160)", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "650", "Parametrium\nRectovesical/Denonvilliers' fascia\nSeminal vesicle\nVas deferens", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "670", "Uterus\nVagina", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "673", "Rectum, male", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "677", "Large intestine including rectum, female (excluding rectum, male)\nSmall intestine", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "680", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "700", "Bladder is \"fixed\"", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "710", "Pubic bone", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "715", "700 + 673 ", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "720", "(710 or 700) + 677", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "730", "OBSOLETE DATA REVIEWED V0203\nSee codes 673, 710, 715, and 720\n\nRectum, male\nPubic bone", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "750", "Abdominal wall\nPelvic wall", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\nSee codes 730 and 801\n\nFurther contiguous extension, including:\n Pubic bone\n Rectum, male\n Sigmoid", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "801", "OBSOLETE DATA REVIEWED V0203\nSee codes 677, 720, and 802\n\nFurther contiguous extension including:\n Rectum, female\n Sigmoid", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "802", "Further contiguous extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "805", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "810", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcc.json
deleted file mode 100644
index 3534646a8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcc.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The tentorium cerebelli is an extension of the dura mater that separates the cerebellum from the inferior portion of the occipital lobes. The location of the tumor above or below the tentorium can help in determining the type of tumor; also most adult brain tumors are supratentorial, and most pediatric brain tumors are infratentorial. In the following list, note that ICD-O-3 codes C71.0 and C71.9 include both supratentorial and infratentorial subsites.\n\n* Supratentorial sites by ICD-O-3 codes:\n * C71.0, except hypothalamus, pallium, thalamus\n * C71.1-C71.5\n * C71.8: Corpus callosum, tapetum\n * C71.9: Anterior cranial fossa, middle cranial fossa, suprasellar\n* Infratentorial sites by ICD-O-3 codes:\n * C71.0: Hypothalamus, pallium, thalamus\n * C71.6-C71.7\n * C71.9: Posterior cranial fossa\n\n**Note 2**: If discontiguous spread is limited to circulating cells in cerebrospinal fluid (CSF), use code 710 in CS Extension. Code all other discontiguous spread in CS Mets at DX.",
- "last_modified" : "2015-05-27T16:19:08.805Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "050", "Benign or borderline brain tumor", "VALUE:NA", "VALUE:NA", "VALUE:NA", "VALUE:NA" ], [ "100", "Supratentorial tumor confined to:\n Cerebral hemisphere (cerebrum) or meninges of cerebral hemisphere (one side):\n Frontal lobe\n Occipital lobe\n Parietal lobe\n Temporal lobe", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "Infratentorial tumor confined to cerebellum or meninges of cerebellum (one side or midline):\n Vermis\n Lateral lobes\n Median lobe of cerebellum", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "Infratentorial tumor confined to:\n Brain stem or meninges of brain stem (one side):\n Medulla oblongata\n Midbrain (mesencephalon)\n Pons\n Hypothalamus\n Thalamus", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Confined to brain, NOS\nConfined to meninges, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Infratentorial tumor:\n Both cerebellum and brain stem involved with tumor on one side", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Confined to ventricles \nTumor invades or encroaches upon ventricular system", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Tumor crosses the midline\nTumor involves contralateral hemisphere\nTumor involves corpus callosum (including splenium)", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "500", "Supratentorial tumor extends infratentorially to involve: \n Cerebellum\n Brain stem\n Hypothalamus\n Pallium\n Posterior cranial fossa\n Thalamus", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "510", "Infratentorial tumor extends supratentorially to involve: \n Cerebrum (cerebral hemisphere) (excluding hypothalamus, pallium, thalamus)\n Anterior cranial fossa\n Corpus callosum\n Middle cranial fossa\n Suprasellar brain\n Tapetum", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "600", "Tumor invades:\n Bone (skull)\n Major blood vessel(s)\n Meninges (e.g., dura)\n Nerves, NOS\n Cranial nerves\n Spinal cord/canal", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "700", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 100-600 and 710, CS Mets at DX code 20\n\nCirculating cells in cerebral spinal fluid (CSF)\nNasal cavity\nNasopharynx\nPosterior pharynx\nDirect extension outside central nervous system (CNS)", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "Circulating cells in cerebral spinal fluid (CSF)", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "Extension to:\n Nasal cavity\n Nasopharynx\n Posterior pharynx\nOther direct extension outside CNS", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcd.json
deleted file mode 100644
index 6a71f69b3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcd.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bcd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:08.863Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "050", "Benign or borderline tumor of other parts of the central nervous system (CNS)", "VALUE:NA", "VALUE:NA", "VALUE:NA", "VALUE:NA" ], [ "100", "Tumor confined to tissue or site of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Meningeal tumor infiltrates nerve\nNerve tumor infiltrates meninges (dura)", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "500", "Adjacent connective/soft tissue\nAdjacent muscle", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "600", "Brain for cranial nerve tumors\nMajor blood vessel(s)\nSphenoid and frontal sinuses (skull)", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "700", "Brain except for cranial nerve tumors\nBone other than skull\nEye", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bce.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bce.json
deleted file mode 100644
index 4c93eb26b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bce.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bce",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:08.907Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to site of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue\n(See definition of adjacent connective tissue in General Rules)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n Descending aorta\n Esophagus\n Large (named) artery(ies)\n Large (named) vein(s)\n Pericardium, NOS:\n Parietal\n Visceral (epicardium)\n Phrenic nerve(s)\n Pleura, NOS:\n Parietal\n Visceral\n Sternum\n Sympathetic nerve trunk(s)\n Thoracic duct\n Thymus\n Trachea\n Vertebra(e)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcf.json
deleted file mode 100644
index 949026197..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcf.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bcf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:08.953Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to trachea", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue:\n Arch of aorta\n Azygos vein, right\n Brachiocephalic vein\n Carotid sheath\n Common carotid artery(ies)\n Jugular arch\n Phrenic nerves\n Pretracheal fascia\n Recurrent laryngeal nerve\n Subclavian artery(ies)\n Vagus nerve", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n Cricoid cartilage\n Esophagus\n Pleura, NOS:\n Parietal\n Visceral\n Right and left main bronchi\n Sternum\n Thymus\n Thyroid gland\n Vertebral column", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcg.json
deleted file mode 100644
index 2ac38e2a5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcg.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Definition of Adjacent Connective Tissue: Some of the schemes for ill-defined or non-specific sites in this manual contain a code 400, adjacent connective tissue, which is defined here as the unnamed tissues that immediately surround an organ or structure containing a primary cancer. Use this code when a tumor has invaded past the outer border (capsule, serosa, or other edge) of the primary organ into the organ's surrounding supportive structures but has not invaded into larger structures or adjacent organs.\n\n**Note 2**: Definition of Adjacent Structures: Connective tissues large enough to be given a specific name would be considered adjacent structures. For example, the brachial artery has a name, as does the broad ligament. Continuous tumor growth from one organ into an adjacent named structure would be coded to 600 in the schemas for ill-defined or non-specific sites.",
- "last_modified" : "2015-05-27T16:19:08.998Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasion of submucosa", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue(s) \n(See Note 1)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organ(s)/structure(s) \n(See Note 2)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Regional extension, NOS", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bch.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bch.json
deleted file mode 100644
index b31d7e8b0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bch.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bch",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: An E lesion is defined as disease that involves extralymphatic site(s), or sites other than lymph nodes and other lymphatic structures. Other lymphatic structures include spleen (see note 4), thymus gland (C37.9), and Waldeyer's ring (tonsils) (C02.4, C09.0-C09.9, C11.1, C14.2),. Any lymphatic structure (other than spleen) is coded the same as a lymph node region (codes 100, 200, 300).\n\n**Note 2**: While spleen is considered a lymphatic structure, it is coded separately (see codes 120, 220, 230, 320, 330). S equals spleen involvement.\n\n**Note 3**: If there is no mention of lymphatic or extralymphatic involvement but several diagnostic procedures were done, interpret as no involvement.\n\n**Note 4**: Involvement of adjacent soft tissue does not alter the classification.",
- "footnotes" : "- AJCC stage group for this schema is derived directly from CS Extension and CS Site-Specific Factor 2, as shown in the AJCC TNM 7 Stage table. The AJCC Stage Groups I-IV are subdivided into A and B based on the presence or absence of symptoms coded in CS Site-Specific Factor 2.\n- AJCC stage group for this schema is derived directly from CS Extension and CS Site-Specific Factor 2, as shown in the AJCC TNM 6 Stage table. The AJCC Stage Groups I-IV are subdivided into A and B based on the presence or absence of symptoms as coded in CS Site-Specific Factor 2.",
- "last_modified" : "2015-05-27T16:19:09.113Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Involvement of a single lymph node region\n\nStated as Stage I", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "Localized involvement of a single extralymphatic organ/site in the absence of any lymph node involvement\nMultifocal involvement of one extralymphatic organ/site\n\nStated as Stage IE", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "Involvement of spleen only\n\nStated as Stage IS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Involvement of two or more lymph node regions on the SAME side of the diaphragm\n\nStated as Stage II", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "210", "Localized involvement of a single extralymphatic organ/site\nWITH involvement of its regional lymph node(s)\nWITH or WITHOUT involvement of other lymph node(s) on the SAME side of the diaphragm\n\nDirect extension to adjacent organs or tissues\n\nStated as Stage IIE", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "220", "Involvement of spleen\nPLUS lymph node(s) BELOW the diaphragm\n\nStated as Stage IIS", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "230", "Involvement of spleen \nPLUS involvement of a single extralymphatic organ/site BELOW the diaphragm\nWITH/WITHOUT involvement of lymph node(s) BELOW the diaphragm\n\nStated as Stage IIES", "VALUE:NA", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "300", "Involvement of lymph node regions on BOTH sides of the diaphragm\n\nStated as Stage III", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "310", "Involvement of an extralymphatic organ/site \nPLUS involvement of lymph node(s) on the OPPOSITE side of the diaphragm\n\nStated as Stage IIIE", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "320", "Involvement of the spleen \nPLUS lymph node(s) ABOVE the diaphragm\n\nInvolvement of spleen \nPLUS lymph nodes on both sides of the diaphragm.\n\nStated as Stage IIIS", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "330", "320 + 310\n\nInvolvement of the spleen \nPLUS a single extralymphatic site ABOVE the diaphragm\nWITH or WITHOUT involvement of lymph node(s)\n\nInvolvement of the spleen \nPLUS involvement of lymph node region(s) ABOVE the diaphragm\nPLUS involvement of a single extralymphatic organ/site on either side of the diaphragm\n\nStated as Stage IIIES", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Diffuse or disseminated (multifocal) involvement of ONE OR MORE extralymphatic organ(s)/site(s)\nWITH OR WITHOUT associated lymph node involvement\n\nMultifocal involvement of MORE THAN ONE extralymphatic organ/site\n\nInvolvement of isolated extralymphatic organ in absence of involvement of\nadjacent lymph nodes, but in conjunction with disease in distant sites\n\nMetastasis/involvement:\n Bone marrow\n Liver\n Nodular involvement of lung(s)\n\nStated as Stage IV", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bci.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bci.json
deleted file mode 100644
index 64cab47f4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bci.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bci",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Plasmacytomas (9731 and 9734) and Multiple Myeloma (9732) have been moved to the MyelomaPlasmaCellDisorder schema effective with CS version 2: 0203\n\n**Note 2**: For histologies listed in code 100 it is possible to have lymph node involvement; however, at this time, lymph node invovement for these histologies is not collected.",
- "last_modified" : "2015-05-27T16:19:09.163Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Localized disease: \n(Single/solitary/unifocal/isolated):\nMay be coded for:\n Mast cell sarcoma (9740)\n Malignant histiocytosis (9750)\n Langerhans cell histiocytosis (9751)\n Histiocytic sarcoma (9755)\n Langerhans cell sarcoma (9756)\n Dendritic cell sarcoma (9757, 9758)\n Myeloid sarcoma (9930)", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "Systemic disease\n\n(All histologies including those in 100)", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcj.json
deleted file mode 100644
index 77dbe3d66..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcj.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In the United States and Canada, Kaposisarcoma is usually an illness related to Acquired Immunodeficiency Syndrome (AIDS) which affects primarily the skin; however, lesions may also form in the connective tissue, mucosa (e.g. oral cavity) or visceral organs (e.g. lungs). For connective tissue tumors (C49._), use extension codes for skin.\n\n**Note 2**: Choice of CS Extension codes for Kaposi sarcoma depends on number and location of lesions. For example, use code 110 for a single lesion involving skin; use code 210 for multiple lesions involving skin. Use code 250 for any number of lesions involving both skin and viscera.",
- "last_modified" : "2015-05-27T16:19:09.207Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "Single lesion:\n Skin and/or connective tissue", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:L" ], [ "120", "Single lesion: \n Mucosa (e.g., oral cavity, anus, rectum, vagina, vulva)", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:L" ], [ "130", "Single lesion:\n Viscera (e.g., pulmonary, gastrointestinal tract, spleen, other)", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:L" ], [ "210", "Multiple lesions:\n Skin and/or connective tissue", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:L" ], [ "220", "Multiple lesions:\n Mucosa (e.g., oral cavity, anus, rectum, vagina, vulva)", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:L" ], [ "230", "Multiple lesions:\n Viscera (e.g., pulmonary, gastrointestinal tract, spleen, other)", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:L" ], [ "240", "(120 or 220) + (110 or 210)\n\nMultiple lesions, mucosa plus skin and/or connective tissue", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:RE" ], [ "250", "(130 or 230) + (110 or 210)\n\nMultiple lesions, viscera plus skin and/or connective tissue", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:RE" ], [ "260", "(130 or 230) + (120 or 220)\n\nMultiple lesions, viscera plus mucosa", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:RE" ], [ "270", "(130 or 230) + (120 or 220) + (110 or 210)\n\nMultiple lesions, visceral plus mucosa plus skin and/or connective tissue", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:D" ], [ "290", "Multiple lesions, NOS", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcl.json
deleted file mode 100644
index 731259ae5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcl.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bcl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:09.262Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to site of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue\n(See definition of connective tissue in General Rules, Part I)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n Male genital organs:\n Epididymis (from other site)\n Penis\n Prostate\n Seminal vesicle (from other site)\n Spermatic cord (vas deferens) (from other site)\n Testis\n Tunica vaginalis (from other site)\n", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension including:\n Other organs and structures in male pelvis:\n Bladder \n Rectum \n Urethra", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcm.json
deleted file mode 100644
index b81cc545d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcm.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bcm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:09.311Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive ", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to site of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue\n(See definition of connective tissue in General Rules, Part I)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n Female genital organs:\n Adnexa\n Broad ligament(s)\n Cervix uteri\n Corpus uteri\n Fallopian tube(s)\n Ovary(ies)\n Parametrium\n Round ligament(s)\n Uterus, NOS\n Vagina", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension:\n Other organs of pelvis", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcn.json
deleted file mode 100644
index 167d0e51c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcn.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bcn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:09.362Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to tissue or organ of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Corpus uteri\nOvary, ipsilateral\nUterus, NOS", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "Fallopian tube for ligaments\nMesosalpinx, ipsilateral\nPeritoneum", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Cervix uteri\nCul de sac (rectouterine pouch)\nOmentum\nOvary, contralateral\nRectosigmoid\nSigmoid\nSmall intestine", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bco.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bco.json
deleted file mode 100644
index db8215a49..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bco.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bco",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:09.437Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ; intraepithelial, non-invasive ", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED V0200\nIntracranial Gland is separate schema in CS v 2\n\nFor C75.1 pituitary gland, C75.2 craniopharyngeal duct and C75.3 pineal gland ONLY:\n Benign or borderline tumors", "ERROR:", "VALUE:NA", "VALUE:NA", "VALUE:NA" ], [ "100", "Invasive tumor confined to gland of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue \n(See definition in General Rules)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n Thymus and aortic body:\n Organs/structures in mediastinum\n Parathyroid:\n Thyroid\n Thyroid cartilage\n Carotid body:\n Upper neck", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcp.json
deleted file mode 100644
index 64f9d7f11..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcp.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For skin, patch indicates any size skin lesion without significant elevation or induration.\n\n**Note 2**: For skin, plaque indicates any size skin lesion that is elevated or indurated.\n\n**Note 3**: For skin, tumor indicates at least one 1 centimeter (cm) diameter solid or nodular lesion with evidence of depth and/or vertical growth. If a physician describes a skin lesion of less than 1 cm as a tumor, use code 550.\n\n**Note 4**: Use code 150 when skin involvement is present but only a general location/site is mentioned (i.e., face, torso, arms, legs). Use code 300 when there is skin involvement but there is no mention of location/site.\n\n**Note 5**: Ignore erythroderma if stated to involve less than 50% of the skin. Use codes 110-150, 210-230, 300, 550, 600.\n\n**Note 6**: Physicians use more than one method to estimate percentage of skin involvement by mycosis fungoides (MF). Code percent of skin involvement as stated by the physician. If no percentage is stated and no word such as localized or generalized is used and no stage is given, code as percent not stated.\n\n**Note 7**: Use code 950 ONLY if there is no evidence of any type of skin involvement, including plaques, papules, patches, or tumors. Tumor size is coded as 000 in CS Tumor Size only if there is no evidence of any tumor(s) as defined in the CS Tumor Size table note.",
- "last_modified" : "2015-05-27T16:19:09.486Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "OBSOLETE DATA RETAINED V0200\n\nPlaques, papules, or erythematous patches (\"plaque stage\"):\n Less than 10 % of skin surface, no tumors\n Limited plaques/patches\n MFCG Stage I", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "110", "Patches only with less than 10% of skin surface involved", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Plaques or papules, with or without patches, with less than 10% of skin surface involved, no tumors", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "130", "Skin involvement less than 10%, not stated whether plaques, papules or patches, no tumors \n Limited plaques/patches", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Plaques, papules, or erythematous patches: % body surface not stated, no tumors", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nPlaques, papules, or erythematous patches (\"plaque stage\"):\nGreater than or equal to 10% of skin surface, no tumors\nGeneralized plaques/patches\nMFCG Stage II", "ERROR:", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "210", "Patches only with 10% or more of skin surface involved", "VALUE:T2a", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "220", "Plaques or papules, with or without patches, with 10% or more of skin surface involved, no tumors", "VALUE:T2b", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "230", "Skin involvement 10% or more, not stated whether plaques, papules or patches, no tumors\nGeneralized plaques/patches\n\nStated as T2, NOS", "VALUE:T2NOS", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "250", "OBSOLETE DATA CONVERTED V0203\nSee code 150\n\nPlaques, papules, or erythematous patches: % body surface not stated, no tumors", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Skin involvement, NOS:\n Extent not stated, no tumors\n Localized, NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nOne or more tumors (tumor stage)\nCutaneous tumors", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "Skin lesion described as tumor less than 1 cm", "VALUE:T2NOS", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "One or more tumors equal to 1 cm or greater\nCutaneous tumor, size not stated", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA CONVERTED V0203\nSee code 740\n\nStated as T3 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "OBSOLETE DATA RETAINED V0200\n\nGeneralized erythroderma (greater than 50% of body involved with diffuse redness)\nSezary syndrome/Sezary disease\nMFCG Stage III", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "730", "Generalized erythroderma \n(Greater than 50% less than 80% body surface involved with diffuse redness)", "VALUE:T3", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "740", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "750", "Generalized erythroderma\n(Equal to or greater than or equal to 80% body surface involved with diffuse redness)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "800", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcq.json
deleted file mode 100644
index ae999ffb8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcq.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The bones of the lateral wall of the nasal cavity include the maxilla, the perpendicular plate of the palatine bone, the medial pterygoid plate, the labyrinth and inferior concha of the ethmoid. The roof of the nasal cavity is formed by the nasal bone. The floor of the nasal cavity, which forms the roof of the mouth, is composed of the bones of the hard palate: the horizontal plate of the palatine bone posteriorly and the palatine process of the maxilla anteriorly.\n\n**Note 2**: \"Bony invasion\" does not include extension to palate, cribriform plate, or pterygoid plates. Extension to these structures is coded separately.\n\n**Note 3**: Code Base of skull NOS only if no information is available to code to more specific bony structures in the skull.\n\n**Note 4**: In code 700, \"minimal extension to anterior cranial fossa\" implies tumor pushing through the cribriform plate, but without invasion of the dura or brain.\n\n**Note 5**: Use code 300 for localized tumor only if no information Is available to assign code 100, 110, 200, or 410.\n\n**Note 6**: Use code 110, 410, 680, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:09.535Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to one of the following subsites:\n Septum\n Floor\n Lateral wall, including: \n Meatus (superior, middle, inferior) \n Nasal conchae (superior, middle, inferior)\n Vestibule (edge of naris to mucocutaneous junction)\nWITHOUT bony invasion", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "105", "Invasive tumor confined to one subsite listed in code 100\nWITH bony invasion", "VALUE:T1", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "110", "Confined to nasal cavity, NOS\n \nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Invasive tumor confined to two or more subsites listed in code 100\nWITHOUT bony invasion", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "205", "Invasive tumor confined to two or more subsites listed in code 100\nWITH bony invasion", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Extending to adjacent region within the nasoethmoidal complex:\n Nasolacrimal duct\n Ethmoid sinus\n Choana\nWITH or WITHOUT bony invasion", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "410", "Stated as T2 with no further information on extension", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 600 defined as \"Adjacent organs/structures including: Bone of skull, Choana, Frontal sinus, Hard palate, Nasopharynx\" in CSv1. Code 600 defined as \"Adjacent organs/structures including: Base of skull NOS, Palate\" in CSV2: V0201, V0202. Extension to frontal sinus and extension to nasopharynx were each included in two codes in CSv1. Review and recode all cases to code 400, 610, 690, 695, 730, 740, or 780 as appropriate.\n\nAdjacent organs/structures including:\n Base of skull, NOS \n Palate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "610", "Adjacent organs/structures including:\n Base of skull, NOS\n Hard palate", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "Cribiform plate", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "660", "Maxillary sinus", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "670", "Medial wall or floor of the orbit", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "680", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "690", "Frontal sinus\nPterygoid plates", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "695", "690 + (660 or 670)\n\nAny structure in code 690 plus any structure in code 660 or 670", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 700 defined as \"Tumor invades: Anterior orbital contents, Skin of nose, Skin of Cheek, Minimal extension to: Anterior cranial fossa, Sphenoid or frontal sinuses\" in CSv1. Code 700 defined as \"Tumor invades: Anterior orbital contents, skin of nose, Skin of cheek, Anterior cranial fossa (minimal extension), Sphenoid sinus\" in CSv2:V0201, V0202. Frontal sinus included in two codes, 600 and 700, in CSv1. Review and recode all cases to codes 690, 695, 705, 740, or 780 as appropriate.\n\nTumor invades:\n Anterior orbital contents\n Skin of nose\n Skin of cheek \n Anterior cranial fossa\n Sphenoid sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "705", "Anterior orbital contents\nSkin of nose\nSkin of cheek\nAnterior cranial fossa (minimal extension)\nSphenoid sinus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "710", "OBSOLETE DATA CONVERTED V0200\nSee code 760\n\nTumor invades:\nOrbital apex\nDura\nBrain\nMiddle cranial fossa\nCranial nerves other than (V2), nasopharynx, or clivus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "730", "Nasopharynx", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "740", "730 + (660, 670, 695, 705)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "760", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nNasopharynx included in codes 600 and 710 in CSv1; code 710 converted to 760 in CSv2:0200. Review and recode nasopharynx and other structures to codes 730, 740, 770, or 780\n\nFurther contiguous extension including:\n Brain\n Clivus\n Cranial nerves (other than V2, maxillary division of trigeminal nerve)\n Dura\n Middle cranial fossa\n Nasopharynx\n Orbital apex ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "770", "Further contiguous extension including:\n Brain\n Clivus\n Cranial nerves (other than V2, maxillary division of trigeminal nerve)\n Dura\n Middle cranial fossa\n Orbital apex ", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "780", "770 + (730, 740)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcr.json
deleted file mode 100644
index c5395af1e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcr.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bcr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:09.595Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to: \n Auditory bones:\n Incus\n Malleus\n Stapes\n Vestibulocochlear organ: \n Cochlea\n Septum \n Semicircular ducts:\n Ampullae\n Saccule \n Utricle \n Tympanic membrane (ear drum)", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue:\n Auditory tube (Eustachian tube, pharyngotympanic tube)\n Nerve(s)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n External auditory meatus (ear canal)\n Internal carotid artery\n Mastoid antrum\n Nasopharynx\n Temporal bone", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Regional extension, NOS", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension:\n Meninges", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcs.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcs.json
deleted file mode 100644
index 63722b164..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcs.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bcs",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The substantia propria is the stromal tissue of the conjunctiva underlying the epithelium. The bulbar conjunctiva covers the eyeball, the palpebral conjunctiva lines the eyelids, and the forniceal conjunctiva covers the junction of the eyelid and eyeball. The caruncle is the fleshy prominence at the inner corner of the eye lined by conjunctival epithelium.\n\n**Note 2**: Tumors confined to the epithelium are staged as Tis in AJCC 7th Edition. Unless corneal extension is present, they are staged as T1 in AJCC 6th Edition.\n\n**Note 3**: Quadrants of involvement are coded in CS Site-Specific Factor 2.",
- "footnotes" : "- For CS Extension codes 300-335, 445-450, and 470-500, the pathologic T category for AJCC 7 staging is assigned based on the value of CS Tumor Size/Ext Eval and thickness recorded in CS Site-Specific Factor 1, as shown in the Pathologic Eval Extension Thickness AJCC 7 Table (eval codes 2, 3, 6, 8). The Pathologic Eval Extension Thickness AJCC 7 Table is also used if the CS Tumor Size/Ext Eval code is blank and CS Site-Specific Factor 1 does not equal 998. The clinical T category is assigned based on the value of CS TS/Ext Eval and quadrants recorded in CS Site-Specific Factor 2, as shown in the Clinical Eval Extension Quadrants AJCC 7 Table (eval codes 0, 1, 5, 9). The Clinical Eval Extension Quadrants AJCC 7 Table is also used if the CS Tumor Size/Ext Eval code is blank and CS Site-Specific Factor 1 equals 998.\n- For CS Extension codes 710- 740, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size/Ext Eval as shown in the Eval Extension T3 AJCC 7 Table for this schema.\n- For CS Extension codes 005, 305-335, 415, and 425-435, the pathologic T category for AJCC 6 staging is assigned based on the value of CS Tumor Size/Ext Eval and thickness recorded in CS Site-Specific Factor 1 as shown in the Pathologic Eval Extension Thickness AJCC 6 Table (eval codes 2, 3, 6, 8). The Pathologic Eval Extension Thickness AJCC 6 Table is also used if the CS Tumor Size/Ext Eval code is blank and CS Site-Specific Factor 1 does not equal 998. The clinical T category for AJCC 6 staging is assigned based on the value of CS Tumor Size/Ext Eval as shown in the Clinical Eval Extension AJCC 6 Table (eval codes 0,1, 5, 9) for this schema. The Clinical Eval Extension AJCC 6 Table is also used if the CS Tumor Size/Ext Eval code is blank and CS Site-Specific Factor 1 equals 998.",
- "last_modified" : "2015-05-27T16:19:09.655Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive\nMelanoma confined to conjunctival epithelium", "VALUE:Tis", "VALUE:T1", "VALUE:IS", "VALUE:IS" ], [ "005", "Melanoma confined to conjunctival epithelium with corneal extension", "VALUE:Tis", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:RE", "VALUE:RE" ], [ "100", "OBSOLETE DATA RETAINED V0200\nSS1977 and SS2000 derivation changed to In situ \n\nTumor(s) of bulbar conjunctiva confined to the epithelium occupying one quadrant or less", "ERROR:", "VALUE:T1", "VALUE:IS", "VALUE:IS" ], [ "120", "OBSOLETE DATA RETAINED V0200\nSS1977 and SS2000 derivation changed to In situ\n\nTumor(s) of bulbar conjunctiva confined to the epithelium occupying more than one quadrant", "ERROR:", "VALUE:T1", "VALUE:IS", "VALUE:IS" ], [ "150", "OBSOLETE DATA CONVERTED V0200\nSee code 330\n\nTumor(s) of bulbar conjunctiva, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Localized, NOS", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1a with no other information on extension ", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "315", "Stated as T1b with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T1c with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "325", "Stated as T1d with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "330", "Tumor(s) of bulbar conjunctiva NOS\n\nStated as T1 NOS with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "335", "Tumor(s) of bulbar conjunctiva, NOS WITH corneal extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:RE", "VALUE:RE" ], [ "400", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nRecoded to 330 or 335 depending on corneal involvement\n\nTumor of bulbar conjunctiva, thickness not stated, \nWITH invasion of substantia propria (or with corneal extension, NOS)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "410", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nRecoded to 415 or 425 depending on corneal involvement\n\nTumor of bulbar conjunctiva, not more than 0.8 mm in thickness, \nWITH invasion of substantia propria (or with corneal extension, NOS)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "415", "OBSOLETE DATA RETAINED V0200\nCSv2 code, data recoded from code 410\n\nTumor of bulbar conjunctiva, not more than 0.8 mm in thickness, \nWITHOUT corneal extension", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "420", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nRecoded to 430 or 435 depending on corneal involvement\n\nTumor of bulbar conjunctiva, more than 0.8 mm in thickness, \nWITH invasion of substantia propria (or with corneal extension, NOS)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "425", "OBSOLETE DATA RETAINED V0200\nCSv2 code, data recoded from code 410\n\nTumor of bulbar conjunctiva, not more than 0.8 mm in thickness, \nWITH corneal extension", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:RE", "VALUE:RE" ], [ "430", "OBSOLETE DATA RETAINED V0200\nCSv2 code, data recoded from code 420\n\nTumor of bulbar conjunctiva, more than 0.8 mm in thickness, \nWITHOUT corneal extension", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:L", "VALUE:L" ], [ "435", "OBSOLETE DATA RETAINED V0200\nCSv2 code, data recoded from code 420\n\nTumor of bulbar conjunctiva, more than 0.8 mm in thickness, \nWITH corneal extension", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns16", "VALUE:RE", "VALUE:RE" ], [ "440", "OBSOLETE DATA RETAINED V0200\nCSv1 code, data recoded from code 460\n\nTumor involves:\n Caruncle \n Conjunctival fornix\n Palpebral conjunctiva", "ERROR:", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "445", "Tumor involves:\n Conjunctival fornix\n Palpebral conjunctiva", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "450", "Tumor involves:\n Caruncle", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "460", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nTumors with involvement of sites in code 440 recoded to 440 or 465 depending on corneal involvement\n\n440 + any of (400 to 420)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "465", "OBSOLETE DATA RETAINED V0200\nCSv2 code, data recoded from code 460\n\n440 + Extension to cornea", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "470", "445 + Extension to cornea\n\nInvolvement of conjunctival fornix or palpebral conjunctiva\nWITH extension to cornea", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "475", "450 + Extension to cornea\n\nInvolvement of caruncle\nWITH extension to cornea", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "480", "Stated as T2a with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "485", "Stated as T2b with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "490", "Stated as T2c with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "495", "Stated as T2d with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "500", "Tumor of non-bulbar conjunctiva, NOS\n\nStated as T2 [NOS] with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns17", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "700", "OBSOLETE DATA RETAINED V0200\nSites separated for staging in V0200\n\nExtension to:\n Eyelid\n Globe\n Orbit", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "710", "Extension to Globe \n\nStated as T3a with no other information on extension", "JUMP:eval_extension_t3_ajcc7_xgh", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "720", "Extension to:\n Eyelid \n Nasolacrimal system\n\nStated as T3b with no other information on extension", "JUMP:eval_extension_t3_ajcc7_xgh", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "730", "Extension to Orbit \n\nStated as T3c with no other information on extension", "JUMP:eval_extension_t3_ajcc7_xgh", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "740", "Extension to Sinus\n\nStated as T3d with no other information on extension", "JUMP:eval_extension_t3_ajcc7_xgh", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Conjunctival melanoma with local invasion NOS\n\nStated as T3 NOS with no other information on extension", "VALUE:T3", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "800", "OBSOLETE DATA RETAINED V0200\nExtension to sinus moved to code 740 in V0200\n\nFurther contiguous extension, including:\n Central nervous system", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Tumor invades central nervous system\nFurther contiguous extension\n\nStated as T4 NOS with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension note stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bct.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bct.json
deleted file mode 100644
index 99c2a84e1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bct.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bct",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC considers \"in situ carcinoma of lacrimal gland\" an impossible diagnosis. Any case so coded is mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 2**: As noted by the AJCC, \"As the maximum size of the lacrimal gland is 2 cm, T2 and greater tumors will usually extend into the orbital soft tissue.\"\n\n**Note 3**: Periosteum is a fibrous membrane that wraps the outer surface of bones.",
- "footnotes" : "- For CS Extension codes 100, 300, and 600-630 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size AJCC 7 Table.\n- For CS Extension codes 100, 300, and 610-650 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size AJCC6 Table.",
- "last_modified" : "2015-05-27T16:19:09.710Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Tumor confined to lacrimal gland", "JUMP:extension_size_ajcc7_xej", "JUMP:extension_size_ajcc6_xat", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xej", "JUMP:extension_size_ajcc6_xat", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\nSee code 650\n\nInvading periosteum of fossa of lacrimal gland", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "Extension to any of the following WITHOUT bone invasion:\n Globe (eyeball)\n Optic nerve\n Orbital soft tissues", "JUMP:extension_size_ajcc7_xej", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xej", "JUMP:extension_size_ajcc6_xat", "VALUE:L", "VALUE:L" ], [ "620", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xej", "JUMP:extension_size_ajcc6_xat", "VALUE:L", "VALUE:L" ], [ "630", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xej", "JUMP:extension_size_ajcc6_xat", "VALUE:L", "VALUE:L" ], [ "650", "Invasion of periosteum\n\nStated as T4a with no other information on extension", "VALUE:T4a", "JUMP:extension_size_ajcc6_xat", "VALUE:RE", "VALUE:RE" ], [ "700", "Adjacent periorbital bone\n\nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "750", "Adjacent structures:\n Brain\n Pterygoid fossa\n Sinus\n Temporal fossa", "VALUE:T4c", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4c", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4c with no other information on extension", "VALUE:T4c", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcu.json
deleted file mode 100644
index 25d1a30a7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcu.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bcu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For correct calculation of derived staging fields for this schema, CS Extension and CS Site-Specific Factor 1, Extension Evaluated at Enucleation, must both be coded, whether or not an enucleation was performed. Information from enucleation is excluded from CS Extension and coded only in CS Site-Specific Factor 1.\n\n**Note 2**: If both eyes are involved, code the information for the most extensively involved eye in this field, and code the information for the second eye in CS Site-Specific Factor 6.\n\n**Note 3**: The mapping values for AJCC T, SS77, and SS2000 and the associated c, p, y, or a indicator (staging basis) are assigned based on the values in CS Extension (clinical extension), CS Tumor Size/Ext Eval, and CS Site-Specific Factor 1 - Extension Evaluated at Enucleation. Pathologic staging information from an enucleation always takes precedence over clinical staging, except in cases with neoadjuvant treatment where clinical disease is as extensive as or more extensive than disease at surgery.",
- "footnotes" : "For this site, extension is coded in two CS Fields: CS Extension (clinical extension) and CS Site-Specific Factor 1 - Extension Evaluated at Enucleation. The mapping values for the T category for AJCC stage, SS77, and SS2000 and the associated c, p, y, or a indicator are assigned based on the values in CS Extension, CS Tumor Size/Ext Eval, and CS Site-Specific Factor 1 as shown in the Special Calculation Table for AJCC T and Special Calculation Table for SEER Summary Stage.",
- "last_modified" : "2015-05-27T16:19:09.760Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77_d",
- "name" : "Summary Stage 1977 T",
- "type" : "DESCRIPTION"
- }, {
- "key" : "t2000_d",
- "name" : "Summary Stage 2000 T",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "110", "OBSOLETE DATA RETAINED V0200\n\nAny eye in which the largest tumor is less than or\nequal to 3 mm in height\nAND\nno tumor is located closer than 1 DD (1.5mm) to the optic nerve or fovea", "ERROR:", "VALUE:T1a", "L", "L" ], [ "120", "Volume no more than two-thirds of eye\nAND\nLargest dimension not greater than 3 millimeter (mm)\nAND\nLocation not closer than 1.5 mm to optic nerve or fovea\nAND\nTumor formation: No vitreous or subretinal seeding and no subretinal fluid beyond 5 mm from base of tumor\nAND\nRetinal detachment not present\n\nStated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1a", "L", "L" ], [ "130", "OBSOLETE DATA RETAINED V0200\n\nAll other eyes in which the tumor(s) are confined to retina\nregardless of location or size (up to half the volume of the eye)\nAND No vitreous seeding\nAND No retinal detachment or subretinal fluid greater than 5 mm from\nthe base of the tumor", "ERROR:", "VALUE:T1b", "L", "L" ], [ "140", "Volume no more than two-thirds of eye\nAND\n(Largest dimension greater than 3 mm \nOR location closer than 1.5 mm to optic nerve or fovea)\nAND\nTumor formation: No vitreous or subretinal seeding and no subretinal fluid beyond 5mm from base of tumor\nAND\nRetinal detachment not present\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1b", "L", "L" ], [ "160", "Volume no more than two-thirds of eye\nAND\n(Largest dimension greater than 3 mm \nOR location closer than 1.5 mm to optic nerve or fovea)\nAND\n(Tumor formation: Subretinal fluid beyond 5 mm from base of tumor \nOR retinal detachment present)\n\nStated as T1c with no other information on extension", "VALUE:T1c", "VALUE:T2a", "L", "L" ], [ "180", "Volume no more than two-thirds of eye\nAND\nTumor formation: No vitreous or subretinal seeding\n\nStated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "L", "L" ], [ "310", "OBSOLETE DATA RETAINED V0200\n\nTumor confined to retina (no vitreous seeding or significant retinal detachment), NOS", "ERROR:", "VALUE:T1NOS", "L", "L" ], [ "410", "OBSOLETE DATA RETAINED V0200\n\nMinimal tumor spread to vitreous and/or subretinal space.\nFine local or diffuse vitreous seeding and/or serous retinal\ndetachment up to total detachment may be present but no clumps,\nlumps, snowballs, or avascular masses are allowed\nin the vitreous or subretinal space. \nCalcium flecks in the vitreous or subretinal space are allowed.\nTumor may fill up to 2/3 the volume of the eye.", "ERROR:", "VALUE:T2a", "L", "L" ], [ "420", "Volume no more than two-thirds of eye\nAND\nTumor formation : Focal vitreous and/or subretinal seeding of fine aggregates of tumor cells but no large clumps or \"snowballs\" of tumor cells\nAND\nRetinal detachment may be present \n\nStated as T2a with no other information on extension", "VALUE:T2a", "VALUE:T2a", "L", "L" ], [ "430", "OBSOLETE DATA RETAINED V0200\n\nMassive tumor spread to vitreous and/or subretinal space.\nVitreous seeding and/or subretinal implantation may consist of\nlumps, clumps, snowballs, or avascular tumor masses.\nRetinal detachment may be total.\nTumor may fill up to 2/3 the volume of the eye.", "ERROR:", "VALUE:T2b", "L", "L" ], [ "440", "Volume no more than two-thirds of eye\nAND\nTumor formation: Massive vitreous and/or subretinal seeding defined as diffuse clumps or \"snowballs\" of tumor cells\nAND\nRetinal detachment may be present \n\nStated as T2b with no other information on extension", "VALUE:T2b", "VALUE:T2b", "L", "L" ], [ "450", "OBSOLETE DATA RETAINED V0200\nExtension reassigned to codes 500, 520\n\nUnsalvageable intraocular disease.\n Tumor fills more than 2/3 the eye\n No possibility of visual rehabilitation.\n\nOne or more of the following are present:\nTumor-associated glaucoma, either neovascular or angle closure\nAnterior segment extension of tumor\nCiliary body extension of tumor\nHyphema (significant)\nMassive vitreous hemorrhage\nTumor in contact with lens\nOrbital cellulitis-like clinical presentation", "ERROR:", "VALUE:T2c", "VALUE:L", "VALUE:L" ], [ "460", "Volume no more than two-thirds of eye\nAND\nTumor formation: Vitreous and/or subretinal seeding\nAND\nRetinal detachment may be present \n\nStated as T2 [NOS] with no other information on extension", "VALUE:T2NOS", "VALUE:T2NOS", "L", "L" ], [ "470", "OBSOLETE DATA RETAINED V0200\n\nTumor with contiguous spread to adjacent tissues\nor spaces (vitreous or subretinal space), NOS", "ERROR:", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "500", "Severe intraocular disease: \n Tumor occupies more than two-thirds volume of eye\n\nStated as T3a with no other information on extension", "VALUE:T3a", "VALUE:T2c", "L", "L" ], [ "520", "Severe intraocular disease:\n One or more complications present including:\n Tumor-associated neovascular or angle closure glaucoma \n Tumor extension into anterior segment\n Hyphema (blood in anterior chamber)\n Vitreous hemorrhage\n Orbital cellulitis\n\nStated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T2c", "L", "L" ], [ "540", "Severe intraocular disease NOS\n\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T2c", "L", "L" ], [ "590", "OBSOLETE DATA RETAINED V0200\n\nInvasion of optic nerve and/or optic coats, NOS", "ERROR:", "VALUE:T3", "RE", "RE" ], [ "680", "Extraocular disease detected by imaging studies:\n Invasion of optic nerve\n\nStated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T3", "RE", "RE" ], [ "700", "Extraocular disease detected by imaging studies:\n Invasion into orbit\n\nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "RE", "RE" ], [ "720", "Extraocular disease detected by imaging studies:\n Intracranial extension not past optic chiasm\n\nStated as T4c with on other information on extension", "VALUE:T4c", "VALUE:T4", "D", "D" ], [ "740", "Extraocular disease detected by imaging studies:\n Intracranial extension past optic chiasm\n\nStated as T4d with no other information on extension", "VALUE:T4d", "VALUE:T4", "D", "D" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nExtraocular tumor", "ERROR:", "VALUE:T4", "RE", "RE" ], [ "760", "Extraocular disease detected by imaging studies NOS\n\nStated as T4 [NOS]", "VALUE:T4NOS", "VALUE:T4", "RE", "RE" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:T4", "D", "D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "U", "U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "U", "U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcv.json
deleted file mode 100644
index af2eabb93..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcv.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bcv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC considers \"in situ carcinoma of salivary gland\" an impossible diagnosis. Any case so coded will be mapped to an unknown AJCC stage, in situ Summary Stage.\n\n**Note 2**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Mucoperiosteum is a compound structure of mucous membrane and periosteum. Cortical bone is the dense compact outer layer of bone.\n\n**Note 3**: The assignment of T1 and T2 categories for tumors of major salivary glands without extraparenchymal extension is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 305, 310, 410, 725, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100, 305, or 310.",
- "footnotes" : "- For CS Extension codes 100-350 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-350 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:09.807Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to gland/duct of origin\nMultiple foci confined to substance of parotid gland", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "305", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:L", "VALUE:L" ], [ "350", "Microscopic extraparenchymal extension ONLY to periglandular soft/connective tissue", "JUMP:extension_size_xpf", "JUMP:extension_size_xpf", "VALUE:RE", "VALUE:RE" ], [ "400", "Macroscopic extraparenchymal extension to:\n Periglandular soft/connective tissue\n Another major salivary gland (submaxillary, sublingual)\n Pharyngeal mucosa\n Skeletal muscle:\n Digastric\n Masseter\n Pterygoid\n Sternocleidomastoid\n Stylohyoid", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "402", "Maxillary artery\nFacial artery or vein", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "405", "Spinal accessory nerve", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "406", "405 + 402", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "408", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "420", "External auditory meatus\nSkin overlying gland", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "450", "Periosteum of mandible", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "500", "Auricular nerve\nMandible\nMastoid process", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "505", "(420, 450, 500) +402", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "510", "(420, 450, 500) + 405 \n\nAny structure in code 420, 450, or 500 plus spinal accessory nerve", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "700", "Facial (7th) nerve", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "705", "700 + 402", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "708", "700 + 405", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "720", "OBSOLETE DATA CONVERTED V0200\nSee code 405 \n\nSpinal accessory nerve", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "740", "Carotid artery (encased)\nJugular vein", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "750", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nRecode involved structures to 402, 406, 505, 705, 740, 755, 758 as appropriate.\n\nMajor blood vessel(s):\n Carotid artery (encased)\n Facial artery or vein \n Jugular vein\n Maxillary artery", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "755", "740 + 405 \n\nAny structure in code 740 plus spinal accessory nerve", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "758", "740 + 700 \n\nAny structure in code 740 plus facial nerve", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "760", "Base of skull\nSkull, NOS", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:D" ], [ "770", "Pterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcw.json
deleted file mode 100644
index 6202c1c1e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcw.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Impaired vocal cord mobility, also described as vocal cord paresis, may suggest invasion of intrinsic laryngeal muscle. Fixation of the vocal cord may be described as immobility of the arytenoids noted on endoscopy, vocal cord cord paralysis, or deviation of larynx to fixed side.\n\n**Note 2**: Use code 300 for localized tumor only if no information is available to assign codes 100, 200, or 310.\n\n**Note 3**: Use code 355, 435, 725, 810, or 815 if the physician's assignment of T category is the ONLY information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:09.858Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to anterior surface of epiglottis with normal vocal cord mobility\n\nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 305\n\nMucosa of adjacent subsite(s) of oropharynx", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "305", "Mucosa of adjacent subsite(s) of oropharynx", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "310", "Mucosa of vallecula without fixation of larynx", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "320", "Mucosa of adjacent subsite(s) of supraglottis (including posterior surface of epiglottis) \nWITHOUT fixation of larynx", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "330", "Larynx, glottic or NOS\nWITHOUT fixation of larynx", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "340", "Mucosa of pyriform sinus, medial wall or NOS\nWITHOUT fixation of larynx", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "350", "Mucosa of base of tongue \nWITHOUT fixation of larynx", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "355", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "360", "Any structure coded in 200 to 350 \nWITH vocal cord fixation", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "370", "Paraglottic space\nPre-epiglottic tissues", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "380", "Inner cortex of thyroid cartilage (minor erosion)", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "390", "Hypopharynx, NOS\nPostcricoid area\nPyriform sinus except medial wall \n(See code 340)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "430", "390 + 280\n\n Any structure in 390 plus minor thyroid cartilage erosion", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "435", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "450", "Soft palate, inferior surface including uvula\nSoft palate, NOS", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "470", "Nasopharynx, NOS\nSoft palate, superior (nasopharyngeal) surface", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "500", "Deep tissues of base of tongue\nBuccal mucosa (inner cheek)\nFloor of mouth\nGum (gingiva)", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "620", "Soft tissues of neck", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "650", "Pterygoid muscle", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "660", "(450 to 650) + (380 or 430) \n\nAny structure in 450 to 650 plus inner cortex of thyroid cartilage ", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "670", "Invasion of, through outer cortex of thyroid cartilage\nThyroid cartilage, NOS\n(See also code 380)", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "680", "Trachea", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "690", "Esophagus\nStrap muscles:\n Omohyoid\n Sternohyoid\n Thyrohyoid\nThyroid", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "700", "Extrinsic muscles of tongue:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "750", "Prevertebral fascia or muscle\nPrevertebral space", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "770", "750 + (660 - 700) \n\nAny structure in 750 plus any structure coded in 660 through 700", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension, including:\n Anterior 2/3 of tongue\n Bone\n Carotid artery (encased)\n Hard palate\n Mandible\n Mediastinal structures\n Parotid gland", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcx.json
deleted file mode 100644
index c79145f9b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcx.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bcx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:09.919Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, non invasive", "VALUE:NA", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Lamina propria\n Mucosa, NOS\n Submucosa (superficial invasion)", "VALUE:NA", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria", "VALUE:NA", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS\nTumor confined to bile duct", "VALUE:NA", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Perimuscular connective tissue\nTumor invades beyond the wall of the bile duct", "VALUE:NA", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "500", "Invasion of/through serosa", "VALUE:NA", "VALUE:T2", "VALUE:L", "VALUE:RE" ], [ "550", "500 + 400", "VALUE:NA", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "600", "Extension into liver, NOS", "VALUE:NA", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Extension into liver less than or equal to 2 cm", "VALUE:NA", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "Extension to ONE of the following:\n Ampulla of Vater\n Omentum, NOS\n Greater\n Lesser\n Pancreas\n Small intestine, NOS", "VALUE:NA", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "630", "Gallbladder\n Unilateral branches of the right or left hepatic artery\n Unilateral branches of the right or left portal vein", "VALUE:NA", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "640", "Extension into liver greater than 2 cm\nOR\nExtension to two or more adjacent organs listed in codes 600 - 630", "VALUE:NA", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "645", "Duodenum", "VALUE:NA", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "647", "645 + 640", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "650", "Extension to ONE of the following:\n Colon\n Stomach", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "660", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 645, 647, 670, and 675\n\nAbdominal wall\nDuodenum", "VALUE:NA", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "Abdominal wall", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "675", "670 + 640", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 640 and 675\n\nExtension into liver greater than 2 cm\nExtension to two or more adjacent organs listed in codes 600 - 630", "VALUE:NA", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "710", "Extension to two or more adjacent organs listed in codes 645, 650, and 670", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Common hepatic artery\nCystic artery/vein\nHepatic artery, NOS\nPortal vein or its branches bilaterally\nPortal vein, NOS", "VALUE:NA", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "760", "750 + (640, 645, 650, 670)\n\nInvolvement of structures in code 750 plus involvement of one or more structures in codes 640 645, 650, or 670", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcy.json
deleted file mode 100644
index 0d980bd81..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bcy.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bcy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note**: If CS Extension code is 000 or 050, Behavior ICD-O-3 must be coded as 2. If CS Extension code is 100 or greater, Behavior ICD-O-3 must be coded as 3.",
- "last_modified" : "2015-05-27T16:19:09.976Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "OBSOLETE DATA CONVERTED V0203\nSee code 060\n\nIn situ, intraepithelial, noninvasive (flat, sessile)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "050", "Noninvasive papillary, polypoid, or verrucous carcinoma", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "060", "In situ, intraepithelial, non invasive (flat, sessile)", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Subepithelial connective tissue (lamina propria, submucosa) invaded", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis invaded", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Corpus spongiosum\nPeriurethral muscle (sphincter)\nProstate", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Beyond the prostatic capsule\nBladder neck\nCorpus cavernosum\nVagina, anterior or NOS", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Other adjacent organs, including\n Bladder (excluding bladder neck)\n Seminal vesicle(s)", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bda.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bda.json
deleted file mode 100644
index 63d56e795..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bda.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bda",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Uveal melanomas arise most commonly in the choroid, less frequently in the ciliary body, and least often in the iris.\n\n**Note 2**: AJCC does not recognize in situ melanoma of the choroid. Any case so coded will be mapped to unknown AJCC stage and in situ Summary Stage.\n\n**Note 3**: The AJCC 7th Edition assigns a T value to combinations of measurements for basal diameter and thickness of tumor divided into four Tumor Size Categories in a charted format. The AJCC 6th Edition assigned T values based on three pairs of measurements for basal diameter and thickness, using the basal diameter for classification when the two measurements did not fit into the defined pairs.\n\n**Note 4**: According to the AJCC, \"In clinical practice the largest tumor basal diameter may be estimated in optic disc diameters (dd) (average: 1 dd = 1.5mm). Tumor thickness may be estimated in diopters (average: 2.5 diopters = 1 mm). However, techniques, such as ultrasonography and fundus photography are used to provide more accurate measurements.\"\n\n**Note 5**: Use codes 150 through 180 if measurements are available to record the largest tumor basal diameter and tumor thickness. Only use codes 205 through 445 or 640 if measurements are not available for coding. Note that code 635, mapped to T4e, is not based on a Tumor Size Category assignment.\n\n**Note 6**: Only use codes 245, 295, 345, and 445 if the tumor size category is the only information available about the tumor.",
- "footnotes" : "- For CS Extension codes 150-180, the T category for AJCC 7 staging is assigned based on the values of tumor basal diameter, recorded in CS Site-Specific Factor 2, and thickness, recorded in CS Site-Specific Factor 3. Basal diameter and thickness are mapped to Tumor Size Categories in the Tumor Size Category AJCC 7 Table, and the CS Extension codes and Tumor Size Categories are mapped to T in the Extension Size Category AJCC 7 Table.\n- For CS Extension codes 150-180, 635, and 640, the T category for AJCC 6 staging is assigned based on the values of tumor basal diameter, recorded in CS Site-Specific Factor 2, and thickness, recorded in CS Site-Specific Factor 3. Basal diameter and thickness are mapped to tumor size pairs in the Tumor Size Pair AJCC 6 Table, and the CS Extension codes and tumor size pairs are mapped to T in the Extension Size Pair AJCC 6 Table.",
- "last_modified" : "2015-05-27T16:19:10.027Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "150", "Tumor WITHOUT ciliary body involvement \nWITHOUT extraocular extension \n(Or ciliary body involvement and extraocular extension not stated)", "JUMP:tumor_size_category_ajcc7_xpk", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:L", "VALUE:L" ], [ "160", "Tumor WITH ciliary body involvement \nWITHOUT extraocular extension \n(Or extraocular extension not stated)", "JUMP:tumor_size_category_ajcc7_xpk", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:L", "VALUE:L" ], [ "170", "Tumor WITHOUT ciliary body involvement \n(Or ciliary involvement not stated)\nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)", "JUMP:tumor_size_category_ajcc7_xpk", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:RE", "VALUE:RE" ], [ "180", "Tumor WITH ciliary body involvement \nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)", "JUMP:tumor_size_category_ajcc7_xpk", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:RE", "VALUE:RE" ], [ "205", "Tumor WITHOUT ciliary body involvement \nWITHOUT extraocular extension\n(Or ciliary body involvement and extraocular extension not stated)\nAND stated as Tumor Size Category 1\n\nStated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "215", "Tumor WITH ciliary body involvement \nWITHOUT extraocular extension\n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 1\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "220", "OBSOLETE DATA RETAINED V0200\n\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness),\nAND extraocular invasion unknown", "ERROR:", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "225", "Tumor WITHOUT ciliary body involvement\n(Or ciliary involvement not stated)\nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 1\n\nStated as T1c with no other information on extension", "VALUE:T1c", "VALUE:T1b", "VALUE:RE", "VALUE:RE" ], [ "235", "Tumor WITH ciliary body involvement \nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 1\n\nStated as T1d with no other information on extension", "VALUE:T1d", "VALUE:T1b", "VALUE:RE", "VALUE:RE" ], [ "240", "OBSOLETE DATA RETAINED V0200\n\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness),\nWITHOUT microscopic extraocular extension", "ERROR:", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "245", "Tumor Size Category 1, NOS\n\nStated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "255", "Tumor WITHOUT ciliary body involvement \nWITHOUT extraocular extension\n(Or ciliary body involvement and extraocular extension not stated)\nAND stated as Tumor Size Category 2\n\nStated as T2a with no other information on extension", "VALUE:T2a", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "260", "OBSOLETE DATA RETAINED V0200\n\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness),\nWITH microscopic extraocular extension", "ERROR:", "VALUE:T1b", "VALUE:RE", "VALUE:RE" ], [ "265", "Tumor WITH ciliary body involvement \nWITHOUT extraocular extension\n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 2\n\nStated as T2b with no other information on extension", "VALUE:T2b", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "275", "Tumor WITHOUT ciliary body involvement \n(Or ciliary involvement not stated)\nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 2\n\nStated as T2c with no other information on extension", "VALUE:T2c", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "280", "OBSOLETE DATA RETAINED V0200\n\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness),\nWITH macroscopic extraocular extension", "ERROR:", "VALUE:T1c", "VALUE:RE", "VALUE:RE" ], [ "285", "Tumor WITH ciliary body involvement \nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 2\n\nStated as T2d with no other information on extension", "VALUE:T2d", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "295", "Tumor Size Category 2, NOS\n\nStated as T2 [NOS] with no other information on extension", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "305", "Tumor WITHOUT ciliary body involvement \nWITHOUT extraocular extension \n(Or ciliary body involvement and extraocular extension not stated)\nAND stated as Tumor Size Category 3\n\nStated as T3a with no other information on extension", "VALUE:T3a", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "315", "Tumor WITH ciliary body involvement \nWITHOUT extraocular extension \n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 3\n\nStated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "325", "Tumor WITHOUT ciliary body involvement \n(Or ciliary involvement not stated)\n WITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 3\n\nStated as T3c with no other information on extension", "VALUE:T3c", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "335", "Tumor WITH ciliary body involvement \nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 3\n\nStated as T3d with no other information on extension", "VALUE:T3d", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "345", "Tumor Size Category 3, NOS\n\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "405", "Tumor WITHOUT ciliary body involvement \nWITHOUT extraocular extension \n(Or ciliary body involvement and extraocular extension not stated)\nAND stated as Tumor Size Category 4\n\nStated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "415", "Tumor WITH ciliary body involvement \nWITHOUT extraocular extension \n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 4\n\nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "420", "OBSOLETE DATA RETAINED V0200\n\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness),\nAND extraocular invasion unknown", "ERROR:", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "425", "Tumor WITHOUT ciliary body involvement \n(Or ciliary involvement not stated)\nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 4\n\nStated as T4c with no other information on extension", "VALUE:T4c", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "435", "Tumor WITH ciliary body involvement \nWITH extraocular extension less than or equal to 5 mm in diameter\n(OR extraocular extension diameter not stated)\nAND stated as Tumor Size Category 4\n\nStated as T4d with no other information on extension", "VALUE:T4d", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "440", "OBSOLETE DATA RETAINED V0200\n\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness),\nWITHOUT microscopic extraocular invasion", "ERROR:", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "445", "Stated as Tumor Size Category 4, NOS", "VALUE:T4NOS", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "460", "OBSOLETE DATA RETAINED V0200\n\nTumor greater than 10 mm but not more than 16 mm in greatest\n basal diameter and between 2.5 mm and 10 mm in maximum height (thickness),\nWITH microscopic extraocular invasion", "ERROR:", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "480", "OBSOLETE DATA RETAINED V0200\n\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness),\nWITH macroscopic extraocular invasion", "ERROR:", "VALUE:T2c", "VALUE:RE", "VALUE:RE" ], [ "635", "Tumor WITH extraocular extension greater than 5 mm in diameter\n\nStated as T4e with no other information on extension", "VALUE:T4e", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:RE", "VALUE:RE" ], [ "640", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:L", "VALUE:L" ], [ "660", "OBSOLETE DATA RETAINED V0200\n\nTumor greater than 16 mm in greatest diameter and/or greater than 10 mm in maximum height (thickness)\nWITHOUT extraocular extension", "ERROR:", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "680", "OBSOLETE DATA RETAINED V0200\n\nTumor greater than 16 mm in greatest diameter and/or greater than 10 mm in maximum height (thickness)\nWITH extraocular extension", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdc.json
deleted file mode 100644
index 36219c8f1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdc.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Cortical bone is the dense compact outer layer of bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns the T category based on size when bone involvement is limited to the cortex. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2 , and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 778, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100, 200, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-535 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-535 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.100Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Labial mucosa (inner lip)\n Lamina propria\n Multiple foci\n Submucosa (superficial invasion)\n Vermilion surface\nSuperficial extension to:\n Skin of lip\n Subcutaneous soft tissue of lip", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "200", "Musculature", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:L", "VALUE:L" ], [ "500", "Buccal mucosa (inner cheek)\nCommissure\nOpposite lip (both lips)", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 510 defined as \"Gingiva\" in CSv1. Code 510 defined as \"Upper gingiva, Gingiva, NOS\" in CSv2:V0201, V0202. All cases should be reviewed and recoded to 515, 780, or 785 as appropriate.\n\nUpper gingiva\nGingiva, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "515", "Upper gingiva\nGingiva, NOS", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of maxilla\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xpa", "JUMP:extension_size_xpa", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 535 or 725 as appropriate.\n\nMaxilla", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Trabecular bone of maxilla", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "740", "Nose", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "750", "Tongue", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face/neck", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be reviewed and recoded to 775, 785, or 788 as appropriate.\n\nCortical bone (other than code 700)\nFloor of mouth\nInferior alveolar nerve", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Floor of mouth\nInferior alveolar nerve", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "778", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "780", "Lower gingiva", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "785", "780 + (740, 750, 760, or 775) \n\nLower gingiva plus any structure in codes 740, 750, 760, or 775", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "788", "Bone of mandible\nMandible, NOS\nSpecified bone \n(Other than maxilla and bones in codes 790 and 800)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including: \n Skull base \n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdd.json
deleted file mode 100644
index 407beb8c4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdd.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Connective tissues large enough to be given a specific name are considered adjacent structures. For example, prevertebral fascia and jugular vein have names. Continuous tumor growth from one organ into an adjacent named structure is coded to 600.",
- "last_modified" : "2015-05-27T16:19:10.167Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to site of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "More than one region of pharynx involved:\n Oropharynx\n Nasopharynx\n Hypopharynx", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "Pharynx and oral cavity involved", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Any of codes 100-500\nWITH fixation", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Extension to adjacent structures \n(See note)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension cannot be assessed\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bde.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bde.json
deleted file mode 100644
index f05ac5976..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bde.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bde",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note**: High-grade dysplasia is generally not reportable in cancer registries, but, if a registry does collect this, code 000 should be used.",
- "last_modified" : "2015-05-27T16:19:10.224Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined/limited to ampulla of Vater\nInvasive tumor extending to sphincter of Oddi", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS\n\nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "420", "Duodenal wall\n\nStated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "520", "Pancreas\n\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "Common bile duct", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Extrahepatic bile duct(s) \n(Other than common bile duct and sphincter of Oddi)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 710 and 760\n\nExtension to other adjacent organs or tissues:\n Blood vessel(s) (major):\n Hepatic artery\n Portal vein\n Gallbladder\n Hepatic flexure of colon\n Lesser omentum\n Liver, including porta hepatis\n Peripancreatic soft tissue\n Stomach, NOS:\n Distal\n Transverse colon", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "710", "Extension to other adjacent organs or tissues:\n Blood vessel(s) (major):\n Hepatic artery\n Portal vein\n Gallbladder\n Hepatic flexure of colon\n Lesser omentum\n Liver, including porta hepatis\n Stomach, NOS:\n Distal\n Transverse colon", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "750", "Stomach, proximal", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "760", "Peripancreatic soft tissue", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "765", "760 + 750", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "780", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdf.json
deleted file mode 100644
index 7c0570796..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdf.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Tumors of the body of the pancreas arise between the left edge of the superior mesenteric-portal vein confluence and the left edge of the aorta. Tumors of the tail of the pancreas arise to the left of the left edge of the aorta.\n\n**Note 2**: Islets of Langerhans are distributed throughout the pancreas; an islet tumor is coded according to the subsite of the pancreas in which the tumor arises if the information is available.\n\n**Note 3**: The assignment of T1 and T2 categories for tumors of the pancreas is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 150 and 200 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100, 150, 200, and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100, 150, 200, and 300 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.277Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive \nPancreatic Intraepithelial Neoplasia III (PanInIII) ", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to pancreas", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "150", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "200", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpe", "JUMP:extension_size_xpe", "VALUE:L", "VALUE:L" ], [ "400", "Extension to peripancreatic tissue, NOS\nFixation to adjacent structures, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 595\n\nStated as T3, NOS ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "440", "Duodenum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "480", "Ampulla of Vater\nExtrahepatic bile duct(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "500", "Spleen", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "560", "Blood vessel(s):\n Hepatic artery\n Portal vein\n Splenic artery/vein\n Superior mesenteric vein\nSplenic flexure of colon", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "570", "Kidney, NOS\nLeft adrenal (suprarenal) gland\nLeft kidney\nLeft ureter", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "580", "Mesenteric fat\nMesentery\nMesocolon\nPeritoneum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "590", "Retroperitoneal soft tissue (retroperitoneal space)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "595", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "Tumor is inseparable from the celiac axis or superior mesenteric artery\nAorta\nCeliac artery\nSuperior mesenteric artery", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "620", "Stomach", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "620 + (570, 580, or 590)", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:D" ], [ "670", "600 + (570, 580, or 590)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "700", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 650, 670\n\n[(600) or (620)] + [(570) or (580)]", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "710", "Ileum\nJejunum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "730", "Gallbladder\nLiver (including porta hepatis)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 650, 670, 760\n\n(590) + any of [(600) or (620) or (710) or (730)]", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "760", "(710 or 730) + 590", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "770", "Colon (other than splenic flexure)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "780", "Diaphragm\nRight adrenal (suprarenal) gland\nRight kidney\nRight ureter", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdg.json
deleted file mode 100644
index 7328aaf7c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdg.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In the case of multiple simultaneous tumors, code the tumor with greatest extension.\n\n**Note 2**: Skin ulceration does not alter the AJCC T category.\n\n**Note 3**: Presence of tumor at eyelid margin takes priority over depth of invasion in dermis/tarsal plate; i.e., code 250 takes priority over codes 100-200.\n\n**Note 4**: Metastatic skin lesions are coded in CS Mets at DX.",
- "footnotes" : "- For CS Extension codes 100-400 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, CS Extension, and Perineural Invasion recorded in CS Site-Specific Factor 6, as shown in the Extension Size, Perineural Invasion Negative or Unknown AJCC 7 Table, the Extension Size, Perineural Invasion Positive AJCC 7 Table, and the Extension Size, Perineural Invasion 888, 988 Table for this schema.\n- For cases coded in CSv1 (CS Version Input Original equals 01XXXX) and Year of Diagnosis is less than 2010 and CS-Site Specific Factor 6, Perineural Invasion = 988 or blank, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in the Extension Size AJCC 6 Table CSv1 for this schema.\nFor cases coded in CSv2 and cases coded in CSv1 with Year of Diagnosis less than 2010 and Perineural Invasion not coded to 988 or blank, using CS Extension codes 100-400 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, CS Extension, and Perineural Invasion recorded in CS Site-Specific Factor 6, as shown in the Extension Size, Perineural Invasion Negative or Unknown AJCC 6 Table CSv2, the Extension Size, Perineural Invasion Positive AJCC 6 Table CSv2, and the Extension Size, Perineural Invasion 888, 988 Table CSv2 for this schema.",
- "last_modified" : "2015-05-27T16:19:10.332Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive\nBowen disease", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Lesion(s) confined to dermis\nMinimal infiltration of dermis\n(Not invading tarsal plate, not at eyelid margin)", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "150", "Subcutaneous tissue \n(Through entire dermis, not invading tarsal plate, not at eyelid margin)", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "155", "Stated as T1 with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "200", "Tumor invades tarsal plate, not at eyelid margin", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "250", "Tumor at eyelid margin", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "270", "Stated as T2a with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "300", "Tumor involves full eyelid thickness", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T2b with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "340", "Stated as T2 [NOS] with no other information on extension", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "400", "Localized, NOS", "JUMP:determine_correct_table_for_ajcc7_t_ns38", "JUMP:determine_correct_table_for_ajcc6_t_ns39", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA CONVERTED V0200\nSee code 150\n\nSubcutaneous tissue (through entire dermis)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSee code 010, CS Site-Specific Factor 6 for perineural space involvement\n\nAdjacent structures, including:\n Bulbar conjunctiva\n Globe\n Perineural space\n Sclera\n Soft tissues of orbit", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "610", "Adjacent structures, including:\n Bulbar conjunctiva\n Globe\n Sclera\n Soft tissues of orbit", "VALUE:T3a", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "620", "Bone/periosteum of orbit\nSkeletal muscle\nUnderlying cartilage", "VALUE:T3a", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "650", "Stated as T3a with no other information on extension", "VALUE:T3a", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "670", "Complete resection requires enucleation, exenteration, or bone resection\n\nStated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "690", "Stated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "700", "OBSOLETE DATA CONVERTED V0200\nSee code 620\n\nBone/periosteum of orbit\nSkeletal muscle\nUnderlying cartilage", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "715", "Tumor unresectable, extensive invasion:\n Ocular structures\n Orbital structures", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "720", "Nasal cavity\nParanasal sinuses\nOther craniofacial structures", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "740", "Central nervous system", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA CONVERTED V0200\nSee CS Extension Code 999 and CS Mets at DX codes 20, 30, 55, 58\n\nMetastatic skin lesion(s)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdh.json
deleted file mode 100644
index 5b948a147..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdh.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: According to AJCC, \"Except for pTis and pT4, extent of primary tumor for TNM is classified by radical orchiectomy. TX is used for other categories in the absence of radical orchiectomy.\" For Collaborative Stage, this means that the categories of T1, T2, and T3 are derived only when CS Site Specific Factor 4 indicates that a radical orchiectomy is performed.\n\n**Note 2**: Involvement of para-testicular (hilar/mediastinal) soft tissues does not alter the extension code. Code the extension based on other criteria documented in the patient record.\n\n**Note 3**: Use code 300 (Localized, NOS) only when no further information is available to assign code 160, 200, 310, 320, or 330.\n\n**Note 4**: Use codes 320, 330, 550, or 810 if the only information regarding tumor extension is the physician's statement of the T category.",
- "footnotes" : "- For CS Extension codes 160-330 and 460-550 ONLY, the T category for AJCC 7 staging is assigned based on the values of CS Extension, CS Site-Specific Factor 4, Radical Orchiectomy Performed, and Lymph-vascular Invasion, as shown in the Extension Orchiectomy LVI AJCC 7 Table.\n- For cases coded under CSv1 (CS Version Input Original less than 020000) and Year of Diagnosis less than 2010 with CS Extension codes 100-550, the T category for AJCC 6 staging is assigned based on the values of CS Extension, Lymph-vascular Invasion, and CS Site-Specific Factor 4, Radical Orchiectomy Performed, as shown in the Extension Orchiectomy LVI AJCC 6 Table CSv1. For cases coded under CSv2 (CS Version Input Original greater than 020000) or Year of Diagnosis greater than 2009 with CS Extension codes 100-550, the T category for AJCC 6 staging is assigned based on the values of CS Extension, CS Site-Specific Factor 4, Radical Orchiectomy Performed, and Lymph-vascular Invasion, as shown in the Extension Orchiectomy LVI AJCC 6 Table CSv2.",
- "last_modified" : "2015-05-27T16:19:10.403Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive; \nIntratubular germ cell neoplasia", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\nSee code 160\n\nInvasive tumor WITHOUT vascular/lymphatic invasion, or presence of vascular/lymphatic invasion not stated\n Body of testis\n Rete testis\n Tunica albuginea", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA RETAINED V0200\nSee code 160\n\nInvasive tumor WITH vascular/lymphatic invasion\n Body of testis\n Rete testis\n Tunica albuginea", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "160", "Body of testis\nRete testis\nTunica albuginea", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "200", "Tunica vaginalis involved\nSurface implants (surface of tunica vaginalis)", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "310", "Tunica, NOS", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T1 with no other information on extension", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "330", "Stated as T2 with no other information on extension", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\nSee code 460\n\nEpididymis involved WITHOUT vascular/lymphatic invasion, or presence of vascular/lymphatic invasion not stated", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:RE", "VALUE:RE" ], [ "450", "OBSOLETE DATA RETAINED V0200\nSee code 460\n\nEpididymis involved WITH vascular/lymphatic invasion", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:RE", "VALUE:RE" ], [ "460", "Epididymis", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:RE", "VALUE:RE" ], [ "470", "460 + 200\n\nEpididymis plus tunica vaginalis or surface implants", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:RE", "VALUE:RE" ], [ "500", "Spermatic cord, ipsilateral\nVas deferens", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:RE", "VALUE:RE" ], [ "550", "Stated as T3 with no other information on extension", "JUMP:extension_orchiectomy_lviajcc7_xgs", "JUMP:determine_correct_table_for_ajcc6_t_ns34", "VALUE:RE", "VALUE:RE" ], [ "600", "Dartos muscle, ipsilateral\nScrotum, ipsilateral", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Extension to scrotum, contralateral\nUlceration of scrotum", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Penis", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown extension\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdi.json
deleted file mode 100644
index 58c38eaaa..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdi.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In case of multifocal noninvasive Ta and Tis tumors, use code 060, 070, or 080 in preference to code 050.\n\n**Note 2**: If CS Extension code is 050-080, Behavior Code ICD-O-3 must be coded as 2. If CS Extension code is 100 or greater, Behavior Code ICD-O-3 must be coded as 3.\n\n**Note 3**: The presence of muscle around the urethra varies between males and females and, in males, varies among the segments of the urethra. The outer muscular coat (muscularis) is absent in most of the male urethra except for the membranous portion. In females, the muscle coat is continuous from the bladder wall. In addition, in both males and females, there is sphincteric muscle, which may be smooth or skeletal muscle. Invasion of periurethral muscle is coded 200, unless it is specified as invasion of sphincter muscle, which is coded 400. Invasion of muscle at the neck of the bladder is coded with the bladder neck in 600. If the only information is \"invasion of muscle\", NOS, or \"invasion of periurethral muscle\", NOS, assign code 200.",
- "last_modified" : "2015-05-27T16:19:10.461Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "OBSOLETE DATA CONVERTED V0203\nSee code 060\n\nCarcinoma in situ, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "010", "OBSOLETE DATA CONVERTED V0203\nSee code 070\n\nCarcinoma in situ, involvement of prostatic urethra", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "020", "OBSOLETE DATA CONVERTED V0203\nSee code 080\n\nCarcinoma in situ, involvement of prostatic ducts", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "050", "Noninvasive papillary, polypoid, or verrucous carcinoma\n\nNote: Code 050 does not apply to transitional cell carcinoma of prostatic urethra or prostatic ducts , see codes 070 and 080", "VALUE:Ta", "VALUE:Ta", "VALUE:IS", "VALUE:IS" ], [ "060", "In situ, intraepithelial, noninvasive (flat, sessile), NOS", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "070", "In situ, intraepithelial, noninvasive:\n Involvement of prostatic urethra", "VALUE:Tispu", "VALUE:Tispu", "VALUE:IS", "VALUE:IS" ], [ "080", "In situ, intraepithelial, noninvasive:\n Involvement of prostatic ducts", "VALUE:Tispd", "VALUE:Tispd", "VALUE:IS", "VALUE:IS" ], [ "100", "Subepithelial connective tissue (lamina propria, submucosa) invaded\n\nStated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis invaded", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Corpus spongiosum\nProstate\nSphincter muscle; periurethral muscle specified as sphincter", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "450", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "600", "Beyond the prostatic capsule\nBladder neck\nCorpus cavernosum\nVagina, anterior or NOS\n\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "700", "Other adjacent organs, including\n Bladder (excluding bladder neck)\n Seminal vesicle(s)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdj.json
deleted file mode 100644
index 433bf5bbe..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdj.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Cortical bone is the dense compact outer layer of bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 2**: AJCC assigns T value based on size when bone involvement is limited to the cortex. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 3**: The assignment of T1, T2, and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 778, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign codes 100, 200, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100 through 535 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100 through 535 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.525Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Labial mucosa (inner lip)\n Lamina propria\n Multiple foci\n Submucosa (superficial invasion)\n Vermilion surface\nSuperficial extension to:\n Skin of lip\n Subcutaneous soft tissue of lip", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:L", "VALUE:L" ], [ "200", "Musculature", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:L", "VALUE:L" ], [ "500", "Buccal mucosa (inner cheek)\nCommissure\nOpposite (both) lip(s)", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:RE", "VALUE:RE" ], [ "510", "Gingiva", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of maxilla\nMaxilla, NOS\nCortical bone of mandible\nMandible, NOS\nCortical bone, NOS (not specified in higher codes)\nBone, NOS (not specified in higher codes)", "JUMP:extension_size_xjh", "JUMP:extension_size_xjh", "VALUE:RE", "VALUE:RE" ], [ "725", "Trabecular bone:\n Mandible\n Maxilla", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "740", "Nose", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:D" ], [ "750", "Tongue", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face/neck", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCSv2 codes differentiate between involvement of cortical bone and trabecular bone. All CSv1 cases should be rev iewed and recoded to 535, 725, 775, or 788 as appropriate.\n\nCortical bone\nFloor of mouth\nInferior alveolar nerve", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Floor of mouth\nInferior alveolar nerve", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "778", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "788", "Specified bone \n(Other than mandible, maxilla, or bones in codes 790 and 800)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including: \n Skull base \n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdk.json
deleted file mode 100644
index 25a3dd8ad..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdk.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note**: Involvement of or extension to bone includes any type of tumor extension to the bone, such as erosion, invasion, extension, penetration, or destruction.",
- "last_modified" : "2015-05-27T16:19:10.579Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa of one of the following:\n Frontal sinus\n Sphenoid sinus", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "More than one accessory sinus invaded\nDestruction of bony wall of sinus", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "Hard palate\nNasal cavity:\n Floor\n Lateral wall\n Nasal cavity, NOS\n Septum\n Turbinates", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Bone:\n Facial bones\n Maxilla\n Orbital structures\n Pterygoid fossa\n Zygoma", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Brain\nCranial nerves\nMuscles:\n Masseter\n Pterygoid\nNasopharynx\nOrbital contents, including eye\nSoft tissue\nSkin", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdl.json
deleted file mode 100644
index e457fad05..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdl.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Superficial erosion alone of bone/tooth socket by gingival primary is not sufficient to code as bone involvement (code 700).\n\n**Note 2**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Mucoperiosteum is a compound structure of mucous membrane and periosteum. Cortical bone is the dense compact outer layer of bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 3**: AJCC assigns the T category based on size for involvement of cortical bone. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 4**: The assignment of T1, T2 , and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 775, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 5**: Use code 300 for localized tumor only if no information is available to assign codes 100, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-650 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-650 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.648Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to lamina propria (mucoperiosteum) (stroma)", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 500 defined as \"Buccal mucosa (inner cheek), Floor of mouth, Labial mucosa (inner lip), lip, Tongue\" in CSv1. Code 500 defined as \"Buccal mucosa (inner cheek), Floor of mouth, Labial mucosa (inner lip), lower lip, Labial mucosa (inner lip), lower lip, Labial mucosa (inner lip), lip, NOS, Tongue mucosa\" in CSv2:V0201, V0202. All cases should be reviewed and recoded to 510, 780, or 785 as appropriate.\n\nBuccal mucosa (inner cheek)\nFloor of mouth\nLabial mucosa (inner lip), lower lip\nLabial mucosa (inner lip), lip, NOS\nTongue mucosa", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "510", "Buccal mucosa (inner cheek)\nFloor of mouth\nLabial mucosa (inner lip), lower lip\nLabial mucosa (inner lip), lip, NOS\nTongue mucosa", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of mandible\nMandible, NOS\nCortical bone, NOS\nCartilage, NOS\nBone, NOS", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "550", "Facial muscle, NOS\nSubcutaneous soft tissue of face", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "600", "Lateral pharyngeal wall \nTonsillar pillars and fossae\nTonsils", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "650", "Soft palate including uvula", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 700 defined as \"Mandible\" in CSv1. All CSv1 cases should be reviewed and recoded to 535 or 725 as appropriate.\n\nMandible", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "720", "Deep (extrinsic) muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "725", "Trabecular bone of mandible", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "Bone of maxilla\nMaxilla, NOS", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "780", "Labial mucosa (inner lip), upper lip ", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "785", "780 + (760 or 770)\n\nMucosa upper lip plus any structure in code 760 or 770", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "788", "Specified bone\n (Other than mandible, maxilla, and bones in codes 795 and 805)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA CONVERTED V0200\nSee code 805\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "795", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension, including:\n Masticator space\n Pterygoid plates\n Skull base\n Encases internal carotid artery ", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "805", "Further contiguous extension, including:\n Base of skull\n Internal carotid artery (encased)\n Skull", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdm.json
deleted file mode 100644
index 10818d010..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdm.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Superficial erosion alone of bone/tooth socket by gingival primary is not sufficient to code as bone involvement (code 700).\n\n**Note 2**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Mucoperiosteum is a compound structure of muccous membrane and periosteum. Cortical bone is the dense compact outer layer of bone. . Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 3**: AJCC assigns the T category based on size when bone involvement is limited to the cortex. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 4**: The assignment of T1, T2 , and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 775, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 5**: Use code 300 for localized tumor only if no information is available to assign code 100, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-650 ONLY, the T category for AJCC 7staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-650 ONLY, the T category for AJCC 6 Edition staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.702Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situintraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to lamina propria (mucoperiosteum) (stroma)", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 500 defined as \"Buccal mucosa (inner cheek), Floor of mouth, Labial mucosa (inner lip), lip, Tongue\" in Csv1. Code 500 defined as \"Buccal mucosa (inner cheek), Floor of mouth, Labial mucosa (inner lip), upper lip, Labial mucosa (inner lip), lip, NOS\" in CSv2: V0201, V0202. All cases should be reviewed and recoded to 510, 780, or 785 as appropriate.\n\nBuccal mucosa (inner cheek)\nFloor of mouth\nLabial mucosa (inner lip), upper lip\nLabial mucosa (inner lip), lip , NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "510", "Buccal mucosa (inner cheek)\nFloor of mouth\nLabial mucosa (inner lip), upper lip\nLabial mucosa (inner lip), lip , NOS", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "535", "Cortical bone of maxilla\nMaxilla , NOS\nCortical bone, NOS (not specified in higher codes)\nBone , NOS (not specified in higher codes)", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "550", "Facial muscle, NOS\nSubcutaneous soft tissue of face", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "600", "Lateral pharyngeal wall \nTonsillar pillars and fossae \nTonsils", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "650", "Hard palate including cortical palatine bone\nSoft palate including uvula", "JUMP:extension_size_xpb", "JUMP:extension_size_xpb", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 700 defined as \"Maxilla\" in CSv1. All CSv1 cases should be reviewed and recoded to 535 or 725 as appropriate.\n\nMaxilla", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "720", "Deep (extrinsic) muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "725", "Trabecular bone of maxilla or palatine bone", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "740", "Maxillary (sinus) antrum \nNasal cavity", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "Bone of mandible \nMandible, NOS", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "780", "Labial mucosa (inner lip), lower lip", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "785", "780 + (740, 760, or 770) \n\nMucosa lower lip plus any structure in code 740, 760, or 770", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "788", "Specified bone\n(Other than maxilla, mandible, and bones in codes 795 and 805)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA CONVERTED V0200\nSee code 805\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "795", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension, including:\n Masticator space\n Pterygoid plates\n Skull base\n Encases internal carotid artery ", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "805", "Further contiguous extension, including:\n Skull\n Skull base\n Internal carotid artery (encased)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdn.json
deleted file mode 100644
index 5a969a8b7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdn.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Superficial erosion alone of bone/tooth socket by gingival primary is not sufficient to code as bone involvement (code 700).\n\n**Note 2**: Periosteum is a fibrous membrane that wraps the outer surface of bones. Mucoperiosteum is a compound structure of mucous membrane and periosteum. Cortical bone is the dense compact outer layer of bone. Trabecular, cancellous, or spongy bone (spongiosa) is a porous network of tissue filling the interior of bone, decreasing weight and allowing room for blood vessels and marrow.\n\n**Note 3**: AJCC assigns the T category based on size for involvement of cortical bone. Involvement through cortical bone is required for assignment of T4a.\n\n**Note 4**: The assignment of T1, T2 , and T3 categories for tumors of the lip and oral cavity is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 405, 410, 415, 775, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 5**: Use code 300 for localized tumor only if no information is available to assign code 100, 405, 410, or 415.",
- "footnotes" : "- For CS Extension codes 100-650 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-650 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.766Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to lamina propria (mucoperiosteum) (stroma)", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:L", "VALUE:L" ], [ "405", "Stated as T1 with no other information on extension", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:L", "VALUE:L" ], [ "415", "Stated as T3 with no other information on extension", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:L", "VALUE:L" ], [ "500", "Buccal mucosa (inner cheek)\nLabial mucosa (inner lip), lip\nTongue (mucosa)", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:RE", "VALUE:RE" ], [ "535", "Cartilage of mandible or maxilla\nCortical bone of mandible or maxilla\nMandible, NOS\nMaxilla, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:RE", "VALUE:RE" ], [ "550", "Facial muscle, NOS\nSubcutaneous soft tissue of face", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:RE", "VALUE:RE" ], [ "600", "Lateral pharyngeal wall \nTonsillar pillars and fossae \nTonsils", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:RE", "VALUE:RE" ], [ "650", "Soft palate including uvula", "JUMP:extension_size_xjg", "JUMP:extension_size_xjg", "VALUE:RE", "VALUE:RE" ], [ "720", "Deep (extrinsic) muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "725", "Trabecular bone: \n Mandible\n Maxilla\n Palatine bone", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "770", "Maxillary sinus (antrum)", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "788", "Specified bone\n(Other than maxilla, mandible, or bones in codes 795 and 805)", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA CONVERTED V0200\nSee code 805\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "795", "Masticator space\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension, including:\n Masticator space\n Pterygoid Plates\n Skull base\n Encases internal carotid artery ", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "805", "Further contiguous extension including:\n Base of skull\n Internal carotid artery (encased)\n Skull", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdo.json
deleted file mode 100644
index dd29b64c2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdo.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC 7th Edition T1 and T2 categories are based on size and high risk features and not depth of invasion or extension. AJCC 7th Edition does not include a T3 category for scrotum.\n\n**Note 2**: The assignment of the T1 category for cutaneous squamous cell carcinomas with one or no high-risk features is based on tumor size. A physician's statement of the T1 category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 310, 320, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: Use code 300 (Localized, NOS) when no further information is available to assign code 100, 305, 310, or 320.",
- "footnotes" : "- For CS Extension codes 100-310 and 400-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Site-Specific Factor 12, High Risk Features, as shown in the Extension Size High Risk Table for this schema.\n- For CS Extension codes 100-310, 400, and 450 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.819Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive\nBowen disease", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Confined to scrotum", "JUMP:extension_size_high_risk_xfa", "JUMP:extension_size_ajcc6_xqb", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_high_risk_xfa", "JUMP:extension_size_ajcc6_xqb", "VALUE:L", "VALUE:L" ], [ "305", "Subcutaneous tissue", "JUMP:extension_size_high_risk_xfa", "JUMP:extension_size_ajcc6_xqb", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1 with no other information on extension", "JUMP:extension_size_high_risk_xfa", "JUMP:extension_size_ajcc6_xqb", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 450 and 500\n\nAdjacent connective tissue\n(See definition of connective tissue in General Rules, Part I)", "JUMP:extension_size_high_risk_xfa", "JUMP:extension_size_ajcc6_xqb", "VALUE:RE", "VALUE:RE" ], [ "450", "Adjacent connective tissue excluding skeletal muscle", "JUMP:extension_size_high_risk_xfa", "JUMP:extension_size_ajcc6_xqb", "VALUE:RE", "VALUE:RE" ], [ "500", "Skeletal muscle", "JUMP:extension_size_high_risk_xfa", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures:\n Male genital organs:\n Epididymis\n Penis\n Prostate\n Spermatic cord\n Testis", "JUMP:extension_size_high_risk_xfa", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Underlying cartilage", "JUMP:extension_size_high_risk_xfa", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension:\n Other organs and structures in male pelvis:\n Bladder\n Rectum\n Urethra", "JUMP:extension_size_high_risk_xfa", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "805", "Bone:\n Axial or appendicular skeleton", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension ", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdp.json
deleted file mode 100644
index 20f74c2c0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdp.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC considers \"in situ carcinoma of the adrenal gland\" an impossible diagnosis. Any case so coded is mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 2**: The assignment of T1 and T2 categories for tumors limited to the adrenal gland is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 200, 250, 400, or 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: Use code 300 (Localized, NOS) when no further information is available to assign code 100, 200, or 250.",
- "footnotes" : "- For CS Extension codes 100-300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.869Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED V0200\n\nCode used in EndocrineOther schema, CSv1\n\nFor C75.1 pituitary gland, C75.2 craniopharyngeal duct and C75.3 pineal gland ONLY:\n Benign or borderline tumors", "ERROR:", "VALUE:NA", "VALUE:NA", "VALUE:NA" ], [ "100", "Invasive carcinoma confined to adrenal gland", "JUMP:extension_size_xde", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Stated as T1 with no other information on extension", "JUMP:extension_size_xde", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Stated as T2 with no other information on extension", "JUMP:extension_size_xde", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xde", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue \n(See definition in General Rules, Part I):\n Gerota's fascia\n\nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA CONVERTED V0203\nSee code 605\n\nAdjacent organs/structures:\n Kidney \n Retroperitoneal structures", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "605", "Adjacent organs/structures:\n Kidney, ipsilateral or NOS\n Retroperitoneal structures including:\n Great vessels:\n Aorta\n Inferior vena cava", "VALUE:T4", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "750", "Pancreas", "VALUE:T4", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including:\n Diaphragm\n Liver\n Spleen", "VALUE:T4", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdr.json
deleted file mode 100644
index e28142ad2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdr.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For this site, AJCC defines Tis as high-grade dysplasia, which includes \"all non-invasive neoplastic epithelium that was previously called carcinoma in situ.\" Cancers stated to be noninvasive or in situ are classified as Tis. High-grade dysplasia is generally not reportable in cancer registries, but if a registry does collect it, code 000 should be used.\n\n**Note 2**: Use codes 110, 120, and 160 in preference to code 150 if information about the depth of invasion into the layers of the polyp is available.\n\n**Note 3**: Ignore intraluminal extension to adjacent segment(s) of esophagus or to more distal parts of stomach and code depth of invasion or extra-gastric spread as indicated.\n\n**Note 4**: If the diagnosis states linitis plastica and no other information regarding extension is available, use code 350. Linitis plastica is defined as diffuse involvement of the entire stomach wall.\n\n**Note 5**: Codes 600-700 are used for contiguous extension from the site of origin. Discontinuous involvement is coded in CS Mets at DX, except for implants within the stomach (code 300).",
- "last_modified" : "2015-05-27T16:19:10.917Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, non-invasive; high-grade dysplasia", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "(Adeno)carcinoma, noninvasive, in a polyp", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS, (including intramucosal, NOS)", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Invades muscularis mucosae", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "125", "Stated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED V0200\nCardia/GE Junction (EGJ), and the proximal 5 cm of the fundus and body of the stomach have been moved into this schema from the Stomach schema in CSv2, and the detailed polyp information is not required\n\nConfined to head of polyp\nExtension to stalk", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED V0200\nCardia/EGJ and the proximal 5 cm of the fundus and body of the stomach have been moved into this schema from Stomach schema in CSv2, and detailed polyp information is not required\n\nConfined to stalk of polyp", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Tumor in polyp NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion)\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Invades into but not through muscularis propria", "VALUE:T2", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "300", "Implants inside stomach \nLocalized, NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "350", "Linitis plastica (and no other information regarding extension available) \n(See Note 4)", "VALUE:T2", "VALUE:T2a", "VALUE:RE", "VALUE:L" ], [ "360", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS \nInvasion through muscularis propria or muscularis, NOS\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded", "VALUE:T3", "VALUE:T2b", "VALUE:L", "VALUE:L" ], [ "420", "Adventitia and/or soft tissue invaded\nEsophagus is described as \"FIXED\"", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "430", "OBSOLETE DATA CONVERTED V0203 See code 480 Stated as T3 [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Extension to adjacent (connective) tissue \nWITHOUT perforation of visceral peritoneum covering these structures:\n Gastric artery\n Ligaments: \n Gastrocolic\n Gastrohepatic\n Gastrosplenic\n Omentum, NOS\n Greater\n Lesser\n Perigastric fat", "VALUE:T3", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "480", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T2b", "VALUE:L", "VALUE:RE" ], [ "500", "Invasion of/through serosa (mesothelium) (tunica serosa) (visceral peritoneum), including perforation of visceral peritoneum covering the gastric ligaments or the omentum WITHOUT invasion of adjacent structures", "VALUE:T4a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "500 + 450", "VALUE:T4a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "570", "Pericardium\nPleura\nDiaphragm", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "580", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 570, 605, and 615\n\nDiaphragm\nDuodenum via serosa or NOS\nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon (including flexures)", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "605", "Duodenum via serosa \nDuodenum, NOS\nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon (including flexures)", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA REVIEWED V0203\nSee codes 570 and 615\n\nPleura \nPericardium", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "615", "605 + 570", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Abdominal wall\nAdrenal gland\nKidney\nRetroperitoneum", "VALUE:T4a", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "710", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4 [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "720", "OBSOLETE DATA CONVERTED V0203\nSee code 580\n\nStated as T4a [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension including but not limited to:\n Aorta\n Vertebral body\n Trachea\nStated as unresectable, NOS", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "805", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "820", "OBSOLETE DATA CONVERTED V0203\nSee code 805\n\nStated as T4b [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bds.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bds.json
deleted file mode 100644
index 7cb60d2cd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bds.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bds",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In the case of multiple simultaneous tumors, code the tumor with the greatest extension.\n\n**Note 2**: Skin ulceration does not alter the AJCC T category.\n\n**Note 3**: In-transit metastasis is coded in CS Lymph Nodes.\n\n**Note 4**: The assignment of the T1, T2, and T3 categories for Merkel cell carcinomas is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 600, 610, 620, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100, 400, 500, 600, 610, and 620 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100, 400, 500, 600, 610, and 620 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:10.973Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Lesion(s) confined to dermis", "JUMP:extension_size_xdb", "JUMP:extension_size_xdb", "VALUE:L", "VALUE:L" ], [ "400", "Localized, NOS", "JUMP:extension_size_xdb", "JUMP:extension_size_xdb", "VALUE:L", "VALUE:L" ], [ "500", "Subcutaneous tissue (through entire dermis)", "JUMP:extension_size_xdb", "JUMP:extension_size_xdb", "VALUE:L", "VALUE:L" ], [ "600", "Stated as T1 with no other information on extension", "JUMP:extension_size_xdb", "JUMP:extension_size_xdb", "VALUE:L", "VALUE:L" ], [ "610", "Stated as T2 with no other information on extension", "JUMP:extension_size_xdb", "JUMP:extension_size_xdb", "VALUE:L", "VALUE:L" ], [ "620", "Stated as T3 with no other information on extension", "JUMP:extension_size_xdb", "JUMP:extension_size_xdb", "VALUE:L", "VALUE:L" ], [ "680", "Fascia", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "700", "Underlying cartilage, bone, skeletal muscle", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdt.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdt.json
deleted file mode 100644
index 65da7ef7f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdt.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdt",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 400-450 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 520.\n\n**Note 5**: Use code 470, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.021Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to:\n Labial mucosa (inner lip)\n Lamina propria\n Multiple foci\n Submucosa (superficial invasion)\n Vermilion surface\nSuperficial extension to:\n Skin of lip\n Subcutaneous soft tissue of lip", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of upper lip:\n Labial mucosa (inner lip)\n Vermilion surface", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 520\n\nMusculature", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension involving mucosa only:\n Inner cheek (buccal mucosa)\n Commissure\n Opposite lip (both lips)", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "410", "Extension involving mucosa only:\n Upper gingiva\n Gingiva, NOS", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "440", "Extension involving mucosa only:\n Lower gingiva", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "450", "Extension involving mucosa only:\n Floor of mouth\n Tongue", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBuccal mucosa (inner cheek) \nCommissure \nOpposite (both) lip(s)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA RETAINED V0200\n\nGingiva", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "Involvement of deep soft tissue or musculature of upper lip\nSoft tissue NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "530", "520 + (400 or 410)\n\nInvolvement of deep soft tissue or musculature of upper lip plus mucosal involvement of any structure in code 400 or 410", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "540", "Involvement of deep soft tissue or musculature of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Involvement of deep tissue or periosteum of upper gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Cartilage of maxilla\nCortical bone of maxilla\nMaxilla, NOS\nCartilage NOS\nCortical bone, NOS\nBone, NOS except base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "705", "(520 -700) + 440\n\nInvolvement of any structure in codes 520 - 700 plus mucosa of lower gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "710", "Deep tissue or periosteum of lower gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "740", "Skin of nose", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "743", "740 + (440 or 710)\n\nSkin of nose plus mucosa or deep tissue lower gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "745", "(520 - 740) + 450\n\nInvolvement of any structure in codes 520 - 740 plus mucosa of floor of mouth or tongue", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "748", "Involvement of deep tissue or musculature of floor of mouth or tongue\nInferior alveolar nerve", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nTongue", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "755", "Extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face/neck", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "765", "Cartilage of mandible\nCortical bone of mandible\nMandible, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA RETAINED V0200\n\nCartilage of mandible\nCortical bone of mandible\nFloor of mouth\nInferior alveolar nerve", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdu.json
deleted file mode 100644
index 38c1bbe9c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdu.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bdu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include an in situ category for carcinoid tumors of appendix. Any case so coded will be mapped to TX for AJCC 7 stage and in situ Summary Stage. Cases coded with 000 will continue to map to Tis if AJCC 6 staging is applicable.\n\n**Note 2**: The assignment of T1, T1a, and T1b categories for carcinoid of appendix is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use code 320, 330, or 335, 410, 490, or 850 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: Codes 405-750 are used for contiguous extension from the site of origin. Discontinuous involvement is coded in CS Mets at DX.\n\n**Note 4**: Tumor that is adherent to other organs or structures, macroscopically, is classified cT4b. If tumor is present in adhesion(s) upon microscopic examination, the tumor is classified as pT4b. Use code 565 for macroscopic adhesions if no pathologic confirmation, and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesion(s) upon microscopic examination, the classification is based upon extent of tumor invasion into or through the wall; use codes 000, 100, 160, 200, 370, 451, and 470 as appropriate to describe the microscopically confirmed depth of tumor invasion for these cases. Use codes 601-650, 670, 701, and 751-800 to code invasion of underlying structures from the adherent tumor.",
- "footnotes" : "- For CS Extension codes 100-120, 160-300, 320-335, 370, 401-410, and 451 ONLY, the T category is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:11.079Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "(Adeno)carcinoma, noninvasive, in a polyp or adenoma", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS (including intramucosal, NOS)", "JUMP:extension_size_ajcc7_xdj", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria", "JUMP:extension_size_ajcc7_xdj", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "120", "Invades muscularis mucosae", "JUMP:extension_size_ajcc7_xdj", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED V0200 \n\nConfined to head of polyp, NOS", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED V0200\n \nConfined to stalk of polyp, NOS", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor in polyp, NOS", "ERROR:", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion)", "JUMP:extension_size_ajcc7_xdj", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Invades muscularis propria ", "JUMP:extension_size_ajcc7_xdj", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Confined to appendix, NOS \nLocalized, NOS", "JUMP:extension_size_ajcc7_xdj", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "310", "OBSOLETE DATA CONVERTED V0203\nSee code 335\n\nStated as T1, NOS with no other \ninformation on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "320", "Stated as T1a with no other information on extension", "JUMP:extension_size_ajcc7_xdj", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "330", "Stated as T1b with no other information on extension", "JUMP:extension_size_ajcc7_xdj", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "335", "Stated as T1 [NOS] with no other information on extension", "JUMP:extension_size_ajcc7_xdj", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "340", "OBSOLETE DATA CONVERTED V0203\nSee code 410\n\nStated as T2 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "350", "OBSOLETE DATA CONVERTED V0203\nSee code 490\n\nStated as T3 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "370", "Extension to cecum", "JUMP:extension_size_ajcc7_xdj", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA REVIEWED AND CHANGED V0203 \nCode 400 was defined as \"Extension through wall, NOS, Non-peritonealized pericolic tissues invaded, Perimuscular tissue invaded, Subserosal tissue/(sub)serosal fat invaded, Transmural, NOS in CSv1. Code 400 was defined as \"Extension to cecum\" in CSv2: V0201, V0202. All cases should be reviewed and recoded to appropriate codes; see codes 370, 401.\n\nExtension to cecum", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "401", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS", "JUMP:extension_size_ajcc7_xdj", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xdj", "VALUE:TX", "VALUE:L", "VALUE:L" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n \nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "OBSOLETE DATA REVIEWED AND CHANGED V0203 \nCode 450 was defined as \"Extension to: Adjacent tissue(s), NOS, Connective tissue, Mesenteric fat, Mesentery, Mesoappendix, Mesocolon, Pericolic fat\" in CSv1. Code 450 was defined as \"Extension to ileum\" in CSv2: V0201, V0202. All cases should be reviewed and recoded to appropriate codes; see codes 451, 470. \n\nExtension to ileum", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "451", "Extension to:\n Adjacent tissue(s), NOS\n Connective tissue\n Mesenteric fat\n Mesentery\n Mesoappendix\n Mesocolon\n Pericolic fat", "JUMP:extension_size_ajcc7_xdj", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "JUMP:extension_size_ajcc7_xdj", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED V0200 \n\nAdherent to other organs or structures, but no microscopic tumor found in adhesion(s)", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "470", "Extension to ileum", "VALUE:T3", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "490", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:TX", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 500 was defined as \"Invasion of/through serosa (mesothelium) (visceral peritoneum)\" in CSv1. Code 500 was defined as \"Abdominal wall, Skeletal muscles\" in CSv2: V0201, V0202. All cases should be reviewed and recoded to appropriate codes; see codes 501, 650, and 670\n\nAbdominal wall\nSkeletal muscles", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "501", "OBSOLETE DATA RETAINED V0203\n\nInvasion of/through serosa (mesothelium) (visceral peritoneum)", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED V0200 \n\nAny of [(420) to (451)] + (501)", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "565", "Adherent to other organs or structures clinically with no microscopic examination\nTumor found in adhesion(s) if microscopic examination performed", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to other organs or structures, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA REVIEWED AND CHANGED V0203 Code 600 was defined as \"Small intestine, Greater omentum\" in CSv1. Code 600 was defined as \"Perineum, Vulva\" in CSv2: V0201, V0202. All cases should be reviewed and recoded to appropriate codes; see codes 601, 800.\n\nPerineum\nVulva", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "601", "Small intestine\nGreater omentum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Abdominal wall \nRetroperitoneum (excluding fat)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED V0200 \n\nAscending colon:\n Right kidney\n Right ureter\nDescending colon:\n Left kidney\n Left ureter", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "Skeletal muscle", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203 Code 700 was defined as \"Bladder, Pelvic peritoneum, Urethra, Vagina\" in CSv1. Code 700 was defined as \"Fallopian tube, Ovary, Uterus\" in CSv2: V0201, V0202. All cases should be reviewed and recoded to appropriate codes; see codes 701, 800.\n\nBladder\nPelvic peritoneum\nUrethra\nVagina", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "701", "Bladder\nPelvic peritoneum\nUrethra\nVagina", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA REVIEWED AND CHANGED V0203 Code 750 was defined as \"Adrenal (suprarenal) gland, Bladder, Diaphragm, Fistula to skin, Gallbladder, Other segment(s) of colon via serosa\" in CSv1. Code 750 was defined as \"Broad ligament(s), Cervix uteri, Corpus uteri, Prostate\" in CSv2: V0201, V0202. All cases should be reviewed and recoded to appropriate codes; see codes 751, 800.\n\nBroad ligament(s)\nCervix uteri\nCorpus uteri\nProstate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "751", "Adrenal (suprarenal) gland\nDiaphragm\nFistula to skin\nGallbladder\nOther segment(s) of colon via serosa", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension:\n Kidney\n Liver\n Ureter\n Other contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdv.json
deleted file mode 100644
index 851e2e897..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdv.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 305 and 315 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 310 for localized tumor only if no information is available to assign code 105, 115, 125, 305, 320, 340, or 350.\n\n**Note 5**: Use code 320, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.135Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n \nInvasive tumor with normal vocal cord mobility \nConfined to glottis, NOS; intrinsic larynx; laryngeal commissure(s) anterior, posterior; vocal cord(s), NOS, true vocal cord(s), true cord(s)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa only:\n Glottis, NOS\n Intrinsic larynx\n Laryngeal commissure(s), anterior, posterior\n Vocal cord(s), NOS, true vocal cord(s), true cord(s)\nWITH normal vocal cord mobility", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED V0200\n\nOne vocal cord", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "115", "Mucosal tumor confined to one vocal cord", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED V0200\n\nBoth vocal cords", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "125", "Mucosal tumor involving both vocal cords", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nTumor involves adjacent regions(s) of larynx\n Subglottis\n Supraglottis\n False vocal cord(s)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "305", "Extension involving mucosa only of adjacent region(s) of larynx:\n Subglottis\n Supraglottis:\n Aryepiglottic fold\n Arytenoid cartilage:\n Corniculate tubercle\n Cuneiform tubercle\n Ventricular bands (false vocal cord(s))", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "315", "Extension involving mucosa only of adjacent regions:\n Base of tongue\n Hypopharynx, NOS\n Pre-epiglottic tissues\n Postcricoid area\n Pyriform sinus\n Vallecula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "320", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "340", "Involvement of deep tissues of any structures in codes 105, 115, 125, or 305\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "Involvement of any structures in codes 105, 115, 125, or 305 \nWITH impaired vocal cord mobility", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nTumor limited to larynx WITH vocal cord fixation\nInvolvement of intrinsic muscle(s):\n Aryepiglottic\n Corniculate tubercle\n Cuneform tubercule\n Arytenoid\n Cricoarytenoid\n Cricothyroid\n Thyroepiglottic\n Thyroarytenoid\n Vocalis", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "450", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "460", "(340, 350, or 400) + 315\n\nInvolvement of any structures in codes 340, 350, or 400 plus mucosal involvement of any structures in code 315", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "480", "Involvement of deep tissue or musculature of any structure in code 315 \nWITH or WITHOUT vocal impairment or fixation of larynx or NOS", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Paraglottic space", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "Minor thyroid cartilage erosion (inner cortex)", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nBase of tongue\nHypopharynx, NOS\nPre-epiglottic tissues\nPostcricoid area\nPyriform sinus\nVallecula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "520 + 480\n\nMinor thyroid cartilage erosion plus nvolvement of any structure in code 480", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "680", "Extension to/through:\n Cricoid cartilage\n Thyroid cartilage except minor erosion, see code 520", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "700", "Extension to/through tissues beyond larynx:\n Strap muscles:\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Oropharynx\n Skin\n Soft tissue of neck\n Thyroid gland\n Trachea", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "Cervical esophagus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "730", "Deep extrinsic muscle(s) of tongue", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Contiguous extension, including:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdw.json
deleted file mode 100644
index f271e4982..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdw.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a T category or stage grouping for in situ melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA, and AJCC stage group is derived as NA. \n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 305 and 315 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 310 for localized tumor only if no information is available to assign code 105, 205, 305, 340, 345, or 400.\n\n**Note 5**: Use code 320, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.194Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to site of origin", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of site of origin", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nTumor involves more than one subsite,\nWITHOUT fixation or NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "205", "Extension involving mucosa only of more than one subsite of supraglottis, glottis, or subglottis \nWITHOUT impairment of vocal cord mobility or fixation of larynx or NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nTumor involves adjacent regions(s) of larynx", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "305", "Extension involving mucosa only of adjacent region(s) of larynx \nWITHOUT impairment of vocal cord mobility or fixation of larynx or NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "315", "Extension involving mucosa only of adjacent regions:\n Base of tongue\n Hypopharynx, NOS\n Pre-epiglottic tissues\n Postcricoid area\n Pyriform sinus\n Vallecula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "320", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "340", "Involvement of deep tissues of any structures in code 105, 205, or 305\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "345", "Involvement of any structure in code 105, 205, or 305 WITH impaired vocal cord mobility", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "OBSOLETE DATA RETAINED V0200\n\nImpaired vocal cord mobility", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Tumor limited to larynx \nWITH vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "450", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "460", "(340, 345, or 400) + 315\n\nInvolvement of any structures in code 340, 345, or 400 plus mucosal involvement of any structures in code 315", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "Involvement of deep tissue or musculature of any structure in code 315 \nWITH or WITHOUT vocal impairment or fixation of larynx or NOS", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nHypopharynx, NOS\nPostcricoid area\nPre-epiglottic tissues\nPyriform sinus (pyriform fossa)\nVallecula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "680", "Extension to/through:\n Cricoid cartilage\n Thyroid cartilage", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "700", "Extension to/through:\n Cervical esophagus\n Deep muscle of tongue\n Extrinsic (strap) muscles:\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Oropharynx\n Skin\n Soft tissues of neck\n Thyroid gland\n Trachea", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "Contiguous extension, including:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdx.json
deleted file mode 100644
index 218c105af..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdx.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 200 and 315 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 310 for localized tumor only if no information is available to assign code 105, or 200, 340, 345, or 400.\n\n**Note 5**: Use code 320, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.249Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor with normal vocal cord mobility confined to subglottis", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of subglottis \nWITH normal vocal cord mobility", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Extension involving mucosa only of adjacent region(s) or of larynx:\n Supraglottis \n Glottis\nWITH normal vocal cord mobility", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nTumor involves adjacent regions(s) of larynx\nVocal cords with normal or impaired mobility", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "Localized , NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "315", "Extension involving mucosa only of adjacent regions:\n Base of tongue\n Hypopharynx, NOS\n Postcricoid area\n Pre-epiglottic tissues \n Pyriform sinus\n Vallecula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "320", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "340", "Involvement of deep tissues of any structure in code 105 or 200", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "345", "Involvement of any structures in code 105 or 200 \nWITH impaired vocal cord mobility", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Tumor limited to larynx \nWITH vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "450", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "460", "(340, 345, 400) + 315 \n\nInvolvement of any structures in code 340, 345, or 400 plus involvement of any structure in code 315", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "Involvement of deep soft tissues or musculature of any structure in code 315 \nWITH or WITHOUT vocal cord impairment or fixation of larynx or NOS", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nBase of tongue\nHypopharynx, NOS\nPostcricoid area\nPre-epiglottic tissues\nPyriform sinus (pyriform fossa)\nVallecula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "680", "Extension to/through:\n Cricoid cartilage \n Thyroid cartilage", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "700", "Extension to/through:\n Cervical esophagus\n Deep muscle of tongue\n Strap muscles:\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Oropharynx\n Skin\n Soft tissues of neck\n Thyroid gland\n Trachea", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "730", "OBSOLETE DATA RETAINED V0200\n\nContiguous extension to other tissues beyond larynx not specified in codes 700 or 800", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "Contiguous extension:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain\n Dura \n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdy.json
deleted file mode 100644
index 76b0beeac..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bdy.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bdy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA. \n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites. \n\n**Note 3**: Use codes 250 and 305 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 275 for localized tumor only if no information is available to assign code 105, 205, 250, 370, 375, or 405. \n\n**Note 5**: Use code 340, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.298Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n \nInvasive tumor with normal vocal cord mobility confined to:\n Supraglottis (one subsite):\n Aryepiglottic fold\n Arytenoid cartilage\n Corniculate cartilage\n Cuneiform cartilage\n Epilarynx, NOS\n False cords\n Ventricular bands\n Ventricular cavity\n Ventricular fold\n Infrahyoid epiglottis\n Laryngeal cartilage, NOS\n Laryngeal (posterior) surface of epiglottis\n Suprahyoid epiglottis (including tip, lingual {anterior} and laryngeal surfaces)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of supraglottis: \n Supraglottis (one subsite):\n Aryepiglottic fold\n Arytenoid cartilage:\n Corniculate cartilage\n Cuneiform cartilage\n Epilarynx, NOS\n False cords:\n Ventricular bands\n Ventricular cavity\n Ventricular fold\n Infrahyoid epiglottis\n Laryngeal cartilage, NOS\n Laryngeal (posterior) surface of epiglottis\n Suprahyoid epiglottis (including tip, lingual {anterior} and laryngeal surfaces)\nWITH normal vocal cord mobility", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nTumor involves more than one subsite of supraglottis\nWITHOUT fixation or NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "205", "Extension involving mucosa only of more than one subsite of supraglottis listed in code 105 \nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Extension involving mucosa only of glottic larynx or subglottis \nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "275", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nTumor involves adjacent regions(s) of larynx ", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "305", "Extension involving mucosa only of adjacent regions(s) outside supraglottis including: \n Mucosa of base of tongue\n Vallecula\n Medial wall of pyriform sinus\nWITHOUT impaired vocal cord mobility or fixation of larynx or NOS", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "340", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "OBSOLETE DATA RETAINED V0200\n \nImpaired vocal cord mobility", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "370", "Involvement of deep tissues of any structure in code 105, 205, or 250 ", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "375", "Involvement of any structures in code 105, 205, or 250 \nWITH impaired vocal cord mobility", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nTumor limited to larynx WITH vocal cord fixation", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "405", "Involvement of any structures in supraglottic larynx larynx, and subglottic larynx \nWITH vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "410", "(370, 375, 405) + 305 \n\nInvolvement of any structures in code 370, 375, or 405 plus mucosal involvement of any structure in code 305", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "420", "Involvement of deep tissue of any structure in code 305", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "425", "Involvement of any structure in code 305 \nWITH impaired vocal cord mobility", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "450", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "Paraglottic space \nWITHOUT vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "530", "Minor thyroid cartilage erosion (inner cortex) \nWITHOUT vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nTumor involves region outside the supraglottis\nWITHOUT fixation, including:\n Medial wall of pyriform sinus\n Mucosa of base of tongue\n Vallecula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "605", "Tumor involves further regions outside the supraglottis including:\n Deep tissues or musculature:\n Base of tongue\n Medial wall pyriform sinus\n Vallecula\n Hypopharynx, NOS\n Pre-epiglottic tissues\n Postcricoid area\n Pyriform sinus. NOS\nWITHOUT vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "Involvement of any structures in codes 520, 530, and 605 \nWITH vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "630", "605 + 530 \n\nAny structure in code 605 plus minor thyroid cartilage erosion", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "650", "OBSOLETE DATA CONVERTED V0200\nSee code 605\n\nHypopharynx, NOS\nPostcricoid area\nPre-epiglottic tissues", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "660", "OBSOLETE DATA CONVERTED V0200\nSee code 605\n\nDeep base of tongue", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "670", "Cricoid cartilage", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "675", "670 + 530", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "680", "OBSOLETE DATA CONVERTED V0200\nSee code 530\n\nMinor thyroid cartilage erosion (e.g., inner cortex)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "Extension to/through:\n Esophagus\n Oropharynx\n Soft tissues of neck\n Thyroid cartilage (except minor erosion, see code 530)\n Thyroid gland", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "Extension to/through:\n Strap muscle(s):\n Omohyoid\n Sternohyoid\n Sternothyroid\n Thyrohyoid\n Skin", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "730", "Extension to/through:\n Deep extrinsic muscles of tongue\n Trachea", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "Contiguous extension, including:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain \n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beb.json
deleted file mode 100644
index d73ffabc7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beb.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_beb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Use code 360 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 2**: Use code 300 for localized tumor only if no information is available to assign code 105 or 360.",
- "last_modified" : "2015-05-27T16:19:11.352Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to mucosa of one of the following\n Frontal sinus\n Sphenoid sinus", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of one of the following:\n Frontal sinus\n Sphenoid sinus", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "320", "Tumor confined to mucosa of more than one accessory sinus", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "330", "Tumor confined to mucosa of adjacent structure:\n Nasal cavity:\n Floor\n Lateral wall\n Septum\n Turbinates\n Nasal cavity, NOS \n Nasopharynx", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "340", "OBSOLETE DATA CONVERTED V0203\nSee code 105\n\nStated as T3 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "360", "Involvement of deep soft tissues of single accessory sinus", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "365", "360 +330\n\nInvolvement of deep soft tissues of single accessory sinus plus mucosal involvement of any structure in code 330", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "370", "Involvement of deep soft tissues of more than one accessory sinus", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "380", "Involvement of deep soft tissues of adjacent structures in code 330", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "390", "Destruction of bony wall of sinus", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nMore than one accessory sinus invaded\nDestruction of bony wall of sinus", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nPalate\nNasal cavity, NOS:\n Floor\n Lateral wall\n Septum\n Turbinates", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Involvement of hard palate", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Bone, cartilage:\n Facial bones\n Maxilla\n Orbital structures\n Pterygoid fossa\n Zygoma", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "Anterior orbital contents\nSkin of nose\nSkin of cheek\nMuscles:\n Masseter\n Pterygoid", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA RETAINED V0200\n\nBrain\nCranial nerves\nMuscles:\n Masseter\n Pterygoid\nNasopharynx\nOrbital contents, including eye\nSoft tissue\nSkin", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "725", "OBSOLETE DATA CONVERTED V0203\nSee code 360\n\nStated as T4a with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "750", "Anterior cranial fossa\nBase of skull\nClivus\nCribriform plate\nMiddle cranial fossa", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "790", "Contiguous extension:\n Brain\n Lower cranial nerves (IX, X, XI, XII)\n Dura\n Middle cranial fossa\n Orbital apex", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "OBSOLETE DATA REVIEWED V0203\nSee codes 790, 805\n\nFurther contiguous extension:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Prevertebral space\n Mediastinal structures", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "805", "Further contiguous extension:\n Carotid artery (encased)\n Masticator space\n Mediastinal structures\n Prevertebral space", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "OBSOLETE DATA CONVERTED V0203\nSee code 750\n\nStated as T4b with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "815", "OBSOLETE DATA CONVERTED V0203\nSee code 360\n\nStated as T4 NOS with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bed.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bed.json
deleted file mode 100644
index fae8c4226..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bed.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bed",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 200, 315, 320, 335, 345, 350, and 351 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 200, 315, 345, or 363.\n\n**Note 5**: Use code 352, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.406Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to anterior surface of epiglottis with normal vocal cord mobility", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of anterior surface of epiglottis with normal vocal cord mobility", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Tumor confined to mucosa of adjacent subsite(s) of oropharynx", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "OBSOLETE DATA RETAINED V0200\n\nVallecula without fixation of larynx", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "315", "Tumor confined to mucosa of vallecula \nWITHOUT fixation of larynx", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "320", "Mucosa of adjacent subsite(s) of supraglottis (including posterior surface of epiglottis) \nWITHOUT fixation of larynx", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "330", "OBSOLETE DATA RETAINED V0200\n\nLarynx, glottic or NOS, without fixation of larynx", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "335", "Mucosa of larynx, glottis or NOS\nWITHOUT fixation of larynx", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "340", "OBSOLETE DATA RETAINED V0200\n\nPyriform sinus, medial wall or NOS, without fixation of larynx", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "345", "Mucosa of pyriform sinus, medial wall or NOS\nWITHOUT fixation of larynx", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "Mucosa of base of tongue \nWITHOUT fixation of larynx", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "351", "Buccal mucosa\nMucosa of floor of mouth\nMucosa of gum (gingival)", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "352", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "360", "OBSOLETE DATA CONVERTED V0200\nSee code 365\n\nAny of (100) to (350) with vocal cord fixation", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "363", "Involvement of deep tissue or musculature of any structure in codes 100 - 315\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "365", "Involvement of any structure in codes 100 - 350 \nWITH vocal cord fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "368", "Involvement of deep tissue or musculature of any structure in codes 320 - 351", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "370", "Paraglottic space\nPre-epiglottic tissues", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "380", "Minor thyroid cartilage erosion (inner cortex)", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "390", "Hypopharynx, NOS\nPostcricoid area\nPyriform sinus except medial wall (see code 340)", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "430", "390 + 280 \n\nAny structure in 390 + Minor thyroid cartilage erosion", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "450", "Soft palate, inferior surface including uvula, or soft palate, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "470", "Nasopharynx, NOS\nSoft palate, superior (nasopharyngeal) surface", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA RETAINED V0200\n \nBase of tongue, except mucosa (see code 350)\n Buccal mucosa (inner cheek)\n Floor of mouth\n Gum (gingiva)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "Soft tissues of neck", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "Pterygoid muscle", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "450- to 650 +380 or 430 \n\nAny structure in 450 to 650 plus minor thyroid cartilage erosion coded in 380 or 430", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "670", "Invasion through thyroid cartilage (see also code 380)\nThyroid cartilage, NOS\nCartilage, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "680", "Trachea", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "690", "Esophagus\nStrap muscles:\n Omohyoid \n Sternohyoid\n Sternothyroid\n Thyrohyoid\nThyroid", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "Extrinsic muscles of tongue:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "Bone excluding base of skull\nBone, NOS\nOverlying skin\nHard palate\nAnterior two-thirds of tongue\nParotid gland", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "750", "Prevertebral fascia or muscle\nPrevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "750 + 660 to 700 \n\nAny structure in 750 plus any structure coded in 660 through 700", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "790", "Contiguous extension:\n Carotid artery (encased)\n Mediastinal structures", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension, including:\n Anterior 2/3 of tongue\n Bone\n Encases carotid artery \n Hard palate\n Mandible\n Mediastinal structures\n Parotid gland", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bee.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bee.json
deleted file mode 100644
index b670aa983..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bee.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bee",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 205 and 310 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 205, or 320.\n\n**Note 5**: Use code 320, 638, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.478Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to one of the following subsites:\n Laryngopharynx\n Postcricoid area\n Posterior pharyngeal wall\n Pyriform sinus", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of one of the following subsites:\n Laryngopharynx\n Postcricoid area\n Posterior pharyngeal wall\n Pyriform sinus", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA CONVERTED V0200\nSee code 420\n\nCode 100 with tumor fixation", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nTumor invades more than one subsite of hypopharynx (listed in code 100) WITHOUT fixation", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "205", "Tumor involves mucosa of more than one subsite of hypopharynx (listed in code 105) \nWITHOUT fixation", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "Involvement of mucosa only:\n Larynx\n Nasopharynx\n Oropharynx", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "320", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n \nOropharynx", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "410", "Involvement of deep soft tissue or musculature of any structure in code 105 or 205\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "415", "410 + 310\n\nInvolvement of deep soft tissue or musculature of any structure in code 105 or 205 plus mucosal involvement of any structure in code 310", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "420", "Involvement of any structure in code 105 or 205 \nWITH tumor fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "430", "Involvement of deep soft tissue or musculature of any structure in code 310", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "450", "OBSOLETE DATA RETAINED V0200\n\nCode 200, 300, or 400 with tumor fixation", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA RETAINED V0200\n \nLarynx", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA CONVERTED V0104\nSee code 450\n\nAny of codes 100-400 WITH fixation of tumor or fixation, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "550", "Fixation of hemilarynx or larynx", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Central compartment soft tissues of neck including:\n Prelaryngeal strap muscles\n Subcutaneous fat", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "610", "Esophagus", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "Thyroid gland", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "630", "Cricoid cartilage\nThyroid cartilage\nCartilage, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "635", "Hyoid bone\nBone excluding base of skull\nBone, NOS \nOverlying skin", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "638", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "640", "Prevertebral fascia/muscle(s)", "VALUE:T4b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "645", "640 + 635 \n \nPrevertebral fascia/muscles plus any structure in code 635", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "650", "Carotid artery (encased)", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "655", "650 + 635\n\nCarotid artery plus any structure in code 635", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "660", "OBSOLETE DATA CONVERTED V0200\nSee code 635\n\nHyoid bone", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "Mediastinal structures", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n \nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bef.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bef.json
deleted file mode 100644
index 44d3fdd7d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bef.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bef",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The intrinsic muscles of tongue are four paired muscles within the tongue which control its shape. The extrinsic muscles originate from structures outside the tongue and control its positioning.\n\n**Note 2**: AJCC does not include a Tis or TX for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 3**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 4**: Use codes 460-495 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 5**: Use code 305 for localized tumor only if no information is available to assign code 110, 405, 510, or 520.\n\n**Note 6**: Use code 510, 785, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.531Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor on one side confined to posterior 1/3 of tongue:\n Lamina propria\n Submucosa", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "OBSOLETE DATA REVIEWED V0203\nSee codes 110, 405\n\nTumor confined to mucosa on one side of posterior one-third of tongue", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "Tumor involving mucosa:\n Base of tongue (posterior one-third of tongue):\n Confined to one side\n Midline tumor\n Lingual tonsil", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nMusculature, intrinsic or NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS\nMidline tumor", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "305", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "OBSOLETE DATA CONVERTED V0203\nSee code 110\n\nMidline tumor confined to mucosa", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nTumor crosses midline", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "405", "Extension involving mucosa only across midline of tongue\nExtension involving mucosa only of lingual tonsil on both sides of tongue", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "460", "Extension involving mucosa only: \n Anterior two-thirds of tongue for base of tongue \n Base of tongue for lingual tonsil\n Floor of mouth\n Lower gingiva", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "470", "Extension involving mucosa only:\n Epiglottis, lingual (pharyngeal) surface\n Glossoepiglottic fold\n Glossopharyngeal fold\n Lateral pharyngeal wall\n Pharyngoepiglottic fold\n Tonsillar pillars and fossae\n Tonsils\n Vallecula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "480", "Extension involving mucosa only:\n Soft palate including uvula", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "490", "Extension involving mucosa only:\n Larynx\n Hypopharynx", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "495", "Extension involving mucosa only:\n Hard palate", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nAnterior 2/3 of tongue for base of tongue\nBase of tongue for lingual tonsil\nFloor of mouth\nLower gingiva", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "Deep soft tissue or musculature of base of tongue or lingual tonsil\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "523", "520+ (460 or 470)\n\nInvolvement of deep soft tissue or musculature of base of tongue or lingual tonsil plus mucosal involvement of any structure in code 460 or 470", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "525", "520 + 480\n\nInvolvement of deep soft tissue or musculature of base of tongue or lingual tonsil plus mucosal involvement of soft palate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "527", "520 + (490 or 495) \n\nInvolvement of deep soft tissue or musculature of base of tongue or lingual tonsil plus mucosal involvement of any structure in code 490 or 495", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "530", "Sublingual gland", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Involvement of deep soft tissue or musculature of any structure in code 470", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nEpiglottis, lingual (pharyngeal) surface\nGlossoepiglottic fold\nGlossopharyngeal fold\nLateral pharyngeal wall\nPharyngoepiglottic fold\nTonsillar pillars and fossae\nTonsils\nVallecula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "(530 or 550) + 480\n\nInvolvement of sublingual gland or deep soft tissue or musculature of any structure in code 470 plus mucosal involvement of soft palate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "612", "(530 or 550) + (490 or 495)\n\nInvolvement of sublingual gland or deep soft tissue or musculature of any structure in code 470 plus mucosal involvement of any structure in code 490 or 495", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "620", "Deep soft tissue or musculature of soft palate, inferior surface or NOS, including uvula", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "710", "Mandible for lingual tonsil", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "715", "710 + (480 or 620) \n\nMandible plus any involvement of soft palate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "Mandible for base of tongue", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "740", "OBSOLETE DATA RETAINED V0200\n\nMedial pterygoid \nHard palate", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "Musculature, extrinsic of tongue:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "Deep soft tissue or musculature of:\n Larynx\n Hypopharynx", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Bone excluding base of skull and mandible\nLateral nasopharynx\nPterygoid muscle\nPterygoid plates\nPalatine bone\nCartilage, NOS\nBone, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "780", "Overlying skin", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "785", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "Contiguous extension to:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nContiguous extension to:\n Base of skull\n Carotid artery\n Hypopharynx\n Lateral nasopharynx\n Lateral pterygoid muscle\n Pterygoid plates\n Uvula", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII) \n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "820", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beg.json
deleted file mode 100644
index 83a6d1903..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beg.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_beg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Extension to structures in codes 180, 185, and 400 and higher may be from one or both ethmoid sinuses.\n\n**Note 4**: Use codes 180 and 185 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 5**: Use code 170 for localized tumor only if no information is available to assign codes 105, 165, 190, 200, or 210.\n\n**Note 6**: Use code 190, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.582Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "105", "Tumor confined to mucosa of left or right ethmoid sinus", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to left or right ethmoid sinus without bone involvement", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED V0200\n\nConfined to both ethmoid sinuses without bone involvement", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "160", "OBSOLETE DATA RETAINED V0200\n\nConfined to ethmoid, NOS without bone involvement", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "165", "Confined to mucosa of ethmoid sinus, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "170", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "175", "Confined to mucosa of both ethmoid sinuses", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "180", "Extension involving mucosa only of nasal cavity including:\n Floor\n Lateral wall\n Nasal vestibule\n Nasal cavity, NOS\n Septum\n Turbinates", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "185", "Extension to mucosa only of adjacent structures: \n Frontal sinus\n Maxillary sinus\n Nasopharynx\n Sphenoid sinus", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "190", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Extension to deep soft tissue of left or right ethmoid sinus", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "210", "Extension to deep soft tissue of ethmoid sinus , NOS\nSoft tissue NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "215", "(200 or 210) + (180 or 185)\n\nExtension to deep soft tissue of left or right ethmoid sinus or ethmoid sinus, NOS with mucosal involvement of structures in code 180 or 185", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "218", "Extension to deep soft tissue of both ethmoid sinuses", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "220", "Invasive tumor confined to either left or right ethmoid sinus with bony invasion \n(Involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "240", "OBSOLETE DATA CONVERTED V0200\nSee code 270\n\nConfined to both ethmoid sinuses WITH bony invasion \n(involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "260", "Confined to ethmoid sinus, NOS with bony invasion\n(Involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "265", "(220 or 260) + (180 or 185)\n\nConfined to left or right ethmoid sinus or ethmoid sinus, NOS with bony invasion plus mucosal involvement of structures in code 180 or 185", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "270", "Confined to both ethmoid sinuses with bony invasion\n(Involvement of perpendicular plate of ethmoid bone or ethmoid air cells)", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "300", "OBSOLETE DATA CONVERTED V0200\nSee code 170\n\nLocalized, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nExtension to nasal cavity with or without bony invasion \n(involvement of perpendicular plate of ethmoid bone or ethmoid air cells)\n Floor\n Lateral wall\n Nasal vestibule\n Nasal cavity, NOS\n Septum\n Turbinates", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "450", "Extension to deep tissues of adjacent structures with or without bony invasion:\n Frontal sinus\n Maxillary sinus\n Nasopharynx\n Sphenoid sinus", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA CONVERTED V0200\n See code 750\n\nBase of skull, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "630", "OBSOLETE DATA CONVERTED V0200\nSee code 750\n\nCribriform plate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "640", "Medial wall or floor of orbit\nOrbital plate", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\n\nMaxillary sinus", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "Hard palate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA RETAINED V0200\n\nAnterior orbital contents\nFrontal sinus\nMaxillary nerve (the second division of the 5th cranial nerve)\nMinimal extension to anterior cranial fossa \nPterygoid plates\nSkin of external nose or cheek\nSphenoid sinus", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "710", "Anterior orbital contents\nSkin of nose\nSkin of cheek\nPterygoid plates", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "720", "OBSOLETE DATA RETAINED V0200\n\n(660) + (700)", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "750", "Anterior cranial fossa \nBase of skull\nClivus\nCribriform plate\nMiddle cranial fossa", "VALUE:T4b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "760", "OBSOLETE DATA RETAINED V0200\n\nBrain\nClivus\nCranial nerves other than the maxillary nerve (the second division of the 5th cranial nerve)\nDura\nMiddle cranial fossa\nNasopharynx\nOrbital apex or roof", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "770", "(710 or 750) + 660 \n\nInvolvement of any structure in code 710 or 750 plus hard palate", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "780", "OBSOLETE DATA RETAINED V0200\n\n(660) + (760)", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Contiguous extension: \n Brain \n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Middle cranial fossa\n Orbital apex", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension :\n Carotid artery (encased)\n Masticator space\n Mediastinal structures \n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beh.json
deleted file mode 100644
index 0b410f491..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beh.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_beh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 320 and 325 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information Is available to assign code 100, 350, or 360.\n\n**Note 5**: Use code 350, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.630Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Tumor confined to mucosa of maxillary antrum (sinus)", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "320", "Extension involving mucosa only:\n Frontal sinus\n Sphenoid sinus\n Ethmoid sinus", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "325", "Extension involving mucosa only:\n Nasal cavity\n Nasopharynx", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "350", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "360", "Involvement of deep tissue or mucoperiosteum of maxillary sinus", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "365", "360 + (320 or 325)\n\nInvolvement of deep tissue or mucoperiosteum of maxillary sinus \nplus mucosal involvement of any structure in code 320 or 325", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nInvasion of infrastructure:\n Hard palate except extension to posterior wall of sinus and pterygoid plates (code 680)\n Middle nasal meatus, except extension to posterior wall of sinus and pterygoid plates (code 680)\n Nasal cavity (floor, lateral wall, septum, turbinates)\n Palatine bone\nTumor causing bone erosion or destruction, except for the posterior antral wall", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "Involvement of deep tissues, mucoperiosteum, cartilage, or bony wall of any structures in code 320", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep soft tissues, cartilage, or bony wall of any structures in code 325", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "Involvement of palatine bone", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nInvasion of suprastructure:\n Ethmoid sinus, anterior\n Floor or medial wall of orbit\n Floor or posterior wall of maxillary sinus\n Subcutaneous tissues", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\n\nBone of the posterior wall of maxillary sinus\nInvasion of maxilla, NOS", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED V0200\n\nEthmoid sinus\nPosterior ethmoid, NOS\nPterygoid sinus", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "670", "Infratemporal fossa\nPterygoid plates\nPterygoid fossa", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "675", "Subcutaneous tissues\nSkin of cheek\nSkin of nose", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "680", "OBSOLETE DATA RETAINED V0200\n\nAnterior orbital contents\nCribriform plate\nFrontal sinus\nInfratemporal fossa\nPterygoid plates\nSkin of cheek\nSphenoid sinus", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "690", "Orbital contents including eye\nSoft palate", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA RETAINED V0200\n\nBase of skull\nOrbital contents, including eye\nPterygomaxillary (temporal) fossa\nSoft palate", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "740", "Anterior cranial fossa \nBase of skull\nClivus\nCribriform plate\nMiddle cranial fossa\nOrbital apex\nPterygomaxillary (temporal) fossa", "VALUE:T4b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nBrain\nClivus\nCranial nerves other than (V2)\nDura\nMiddle cranial fossa\nNasopharynx\nOrbital apex", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "790", "Contiguous extension to:\n Dura\n Brain\n Lower cranial nerves (IX, X, XI, XII)\n Middle cranial fossa", "VALUE:T4b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension :\n Carotid artery (encased)\n Masticator space\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_behavior_xci.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_behavior_xci.json
deleted file mode 100644
index 39d3e82db..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_behavior_xci.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_behavior_xci",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Behavior",
- "title" : "Extension Behavior Table",
- "notes" : "**Note**: For CS Extension codes 050 and 070 ONLY, Summary Stage 1977 and Summary Stage 2000 are assigned based on the value of Behavior Code ICD-0-3, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:11.689Z",
- "definition" : [ {
- "key" : "behavior",
- "name" : "Behavior Code ICD-O-3",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "SS77",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "SS2000",
- "type" : "ENDPOINT"
- }, {
- "key" : "description",
- "name" : "Comment",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "0", "ERROR:", "ERROR:", "Behavior code of 0 should not be used with CS Extension code 050 or 070." ], [ "1", "ERROR:", "ERROR:", "Behavior code of 1 should not be used with CS Extension code 050 or 070." ], [ "2", "VALUE:IS", "VALUE:IS", "" ], [ "3", "VALUE:L", "VALUE:L", "" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bei.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bei.json
deleted file mode 100644
index 564ab2c52..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bei.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bei",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: The bones of the lateral wall of the nasal cavity include the maxilla, the perpendicular plate of the palatine bone, the medial pterygoid plate, the labyrinth and inferior concha of the ethmoid. The roof of the nasal cavity is formed by the nasal bone. The floor of the nasal cavity, which forms the roof of the mouth, is composed of the bones of the hard palate: the horizontal plate of the palatine bone posteriorly and the palatine process of the maxilla anteriorly.\n\n**Note 4**: \"Bony invasion\" does not include extension to palate, cribriform plate, or pterygoid plates. Extension to these structures is coded separately.\n\n**Note 5**: Use codes 330 and 340 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 6**: Use code 300 for localized tumor only if no information is available to assign code 105, 110, 200, 350, or 380.\n\n**Note 7**: Use code 350, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.745Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to site of origin\nMeatus (superior, middle, inferior)\nNasal chonchae (superior, middle, inferior)\nSeptum\nTympanic membrane", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of one of the following subsites:\n Septum\n Floor\n Lateral wall, including:\n Meatus (superior, middle, inferior) \n Nasal conchae (superior, middle, inferior)\n Vestibule (edge of naris to mucocutaneous junction)", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "Confined to mucosa of nasal cavity, NOS ", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Tumor confined to mucosa of two or more subsites listed in code 105 ", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "330", "Extension involving mucosa only:\n Ethmoid sinus\n Choana\n Frontal sinus\n Nasopharynx", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "340", "Extension involving mucosa only:\n Maxillary sinus\n Sphenoid sinus", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "350", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "380", "Involvement of deep tissues of any structure in code 105 or 110", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "385", "380 + 330\n\nInvolvement of deep tissues of any structure in code 105 or 110 plus mucosal involvement of any structure in code 330", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "390", "Involvement of any structure in code 105, 110 \nWITH bony invasion", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "400", "Extending to adjacent connective tissue within the nasoethomoidal complex\nNasolacrimal duct", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "450", "Hard palate", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "490", "(385 - 450) + 340 \n\nInvolvement of any structure in codes 385 - 450 plus mucosal involvement of any structure in code 340", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "500", "Involvement of deep tissues or bony involvement of any structure in code 340", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "600", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nExtension to frontal sinus and extension to nasopharynx were each included in two codes in CSv1. All structures in code 600 should be reviewed and recoded to 610 or 690 as appropriate.\n \nAdjacent organs/structures including:\n Bone of skull\n Choana\n Frontal sinus\n Hard palate\n Nasopharynx", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "610", "OBSOLETE DATA RETAINED V0203\n\nAdjacent organs/structures including:\n Bone of skull\n Choana\n Frontal sinus\n Hard palate", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA CONVERTED V0200\nSee code 750\n\nCribiform plate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "660", "OBSOLETE DATA RETAINED V0200 \n\nMaxillary sinus", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "670", "Medial wall or floor of the orbit", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "690", "OBSOLETE DATA RETAINED V0203\n\nNasopharynx", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nFrontal sinus included in codes 600 and 700 in CSv1. Review and recode involvement of frontal sinus to code 610, other structures to code 705.\n\nTumor invades:\n Anterior orbital contents\n Skin of nose\n Skin of cheek\nMinimal extension to:\n Anterior cranial fossa\n Pterygoid plates\n Sphenoid or frontal sinuses", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "705", "OBSOLETE DATA RETAINED V0203\n\nAnterior orbital contents\nSkin of nose\nSkin of cheek\nAnterior cranial fossa (minimal extension)\nPterygoid plates\nSphenoid sinus", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nNasopharynx included in codes 600 and 710 in CSv1. Review and recode involvement of nasopharynx to code 690, other structures to code 750 or 795\n\nTumor invades:\nOrbital apex\nDura\nBrain\nMiddle cranial fossa\nCranial nerves other than (V2), nasopharynx, or clivus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "715", "Anterior orbital contents\nSkin of nose\nSkin of cheek\nPterygoid plates", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "750", "Anterior cranial fossa\nBase of skull\nCribriform plate\nClivus\nMiddle cranial fossa", "VALUE:T4b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "760", "750 + (340, 500, 670, or 705) \n\nInvolvement of structures in code 750 plus mucosal or deep involvement of structures in code 340 or involvement of structures in code 670 or 705 ", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "795", "Contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nMiddle cranial fossa included in codes 750 and 800 in CSv2:V0201, V0202. Review and recode involvement of middle cranial fossa to code 750 or 760, other structures to code 795. \n\nContiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Middle cranial fossa\n Orbital apex ", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "801", "Further contiguous extension including:\n Carotid artery (encased)\n Masticator space\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bej.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bej.json
deleted file mode 100644
index ca87edec8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bej.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bej",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CSExtension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 310 and 315 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 205, 250, 440, or 510.\n\n**Note 5**: Use code 440, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.817Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to one of the following subsites:\n Inferior wall (superior surface of soft palate)\n One lateral wall\n Posterior superior wall (vault)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor involving mucosa only of one of the following subsites:\n Inferior wall (superior surface of soft palate)\n One lateral wall\n Posterior superior wall (vault)", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nInvolvement of two or more subsites:\n Lateral wall extending into eustachian tube/middle ear\n Posterior, inferior, or lateral wall(s)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "205", "Tumor involving mucosa only of two or more subsites:\n Lateral wall extending into Eustachian tube/middle ear\n Posterior, inferior, or lateral wall(s)", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Tumor involving mucosa only of nasopharynx, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nConfined to nasopharynx\nLocalized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "305", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "Tumor involving mucosa only:\n Nasal cavity\n Oropharynx\n Soft palate including uvula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "315", "Tumor involving mucosa only:\n Hard palate\n Paranasal sinus ", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nOropharynx\nSoft palate, ", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "440", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n \nNasal cavity ", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep soft tissues or musculature of any structure in code 105 or 250", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "515", "510 + 310 \n\nInvolvement of deep soft tissues or musculature of any structure in code 105 or 250 plus involvement of mucosa of any structure in code 310", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "OBSOLETE DATA CONVERTED V0203\nSee code 545\n\n510 + 315\n\n(Involvement of deep soft tissues or musculature of any structure in code 105, 205, or 250 + Involvement of mucosa of any structure in code 315)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "530", "Involvement of deep soft tissues or musculature of any structure in code 310", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "535", "Involvement of any structure in codes 105 to 310 \nWITH tumor described as FIXED", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "540", "Involvement of any structure in codes 105 to 310 \nWITH parapharyngeal extension", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "545", "(510 - 540) + 315\n\nInvolvement of deep soft tissues or musculature of any structure in codes 510 - 540 with involvement of mucosa of any structure in code 315", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED V0200\n\nAny extension coded in 100-500 WITH fixation or tumor \nDescribed only as FIXED", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "555", "Bony involvement of any structure in code 315", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "560", "OBSOLETE DATA RETAINED V0200\n\nAny extension coded in 100-500 WITH parapharyngeal extension", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "570", "OBSOLETE DATA RETAINED V0200\n\nHard palate", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "580", "Pterygopalatine fossa \nWITHOUT bone invasion", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n \nBone, including Skull", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "Bone excluding base of skull\nCartilage, NOS\nBone, NOS ", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA RETAINED V0200\n \nParanasal sinus", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "630", "(580 or 610) + (315 or 555)\n\nInvolvement of any structure in code 580 or 610 plus any involvement of structures in code 315", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "650", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nIn CSv1 extension to the orbit was included in both codes 650 and 700. In addition the instructions for coding invasion of orbital bone were not clear. Codes 650 and 700 should be reviewed for orbital involvement. Involvement of bone of floor of orbit should be coded 760, and other orbit involvement should be coded 790.\n\nOrbit", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "670", "Hypopharynx\nOverlying skin\nSoft tissues of neck", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nSee note in code 650\n\nBrain\nCranial nerves\nHypopharynx\nInfratemporal fossa\nOrbit\nIntracranial extension, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nCode 710 included in error in CSv2: V0200, V0202 with the tag OBSOLETE DATA RETAINED V0200. Code 710 should not be entered on any case. See note in code 650; see codes 670, 760, 790.\n\nBrain\nCranial nerves\nHypopharynx\nInfratemporal fossa\nOrbit\nIntracranial extension, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "750", "OBSOLETE DATA CONVERTED V0200 \nSee code 790\n\nMasticator space", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "760", "Skull base including floor of orbit", "VALUE:T4b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "765", "760 + (315, 555)\n\nBase of skull including floor of orbit plus any involvement of structures in code 315 or 555", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "770", "760 + 670\n\nBase of skull including floor or orbit plus any involvement of structures in code 670", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "790", "Contiguous extension:\n Brain\n Dura\n Intracranial extension, NOS\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space/infratemporal fossa\n Orbit", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n \nFurther contiguous extension\n Soft tissues of the neck", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bek.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bek.json
deleted file mode 100644
index 6cfac91ab..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bek.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bek",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 405, 415, 425, 430, 505, 510, and 515 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105 or 205, 520, or 540.\n\n**Note 5**: Use code 520, 705, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.897Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to one of the following subsites:\n Anterior wall (including vallecula and lingual (anterior) surface of epiglottis)\n One lateral wall\n Posterior wall", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of one of the following subsites:\n Anterior wall: \n Lingual (anterior surface of epiglottis)\n Vallecula \n One lateral wall\n Posterior wall", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nInvolvement of two or more subsites:\n Posterior, anterior or lateral wall(s)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "205", "Involvement of mucosa only of two or more subsites: \n Anterior wall:\n Lingual (anterior) surface of epiglottis\n Vallecula\n Lateral wall(s)\n Posterior wall", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nSoft palate, inferior surface including uvula, or soft palate, NOS", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "405", "Involvement of mucosa only: \n Soft palate, inferior surface, including uvula\n Soft palate, NOS", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "410", "OBSOLETE DATA RETAINED V0200\n\nHypopharynx NOS\nPyriform sinus", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "415", "Involvement of mucosa only: \n Hypopharynx, NOS\n Pyriform sinus", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "420", "OBSOLETE DATA RETAINED V0200\n\nSoft palate, superior (nasopharyngeal) surface", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "425", "Involvement of mucosa only of soft palate, superior (nasopharyngeal) surface", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "430", "Involvement of mucosa only:\n Nasopharynx \n Larynx\n Posterior surface of epiglottis", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBase of tongue\nBuccal mucosa (inner cheek)\nFloor of mouth\nGum (gingiva)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "505", "Involvement of mucosa only: \n Base of tongue\n Buccal mucosa (inner cheek)\n Floor of mouth\n Gum (gingiva)", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of mucosa only of both lateral walls through soft palate or base of tongue", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "515", "Involvement of mucosa only: \n Anterior two-thirds of tongue\n Hard palate", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "520", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "540", "Involvement of deep soft tissue or musculature of any structure in code 105", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "545", "540 + (405, 415, 425, 430, or 505)\n\nInvolvement of deep soft tissue or musculature of any structure in code 105 plus mucosal involvement of any structure in code 405, 415, 425, 430, or 505", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Any extension coded in 105 - 505 \nWITH fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "555", "Involvement of deep soft tissue or musculature of any structure in codes 405, 415, 425, 430, and 505", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "560", "(540 - 555) + 510\n\nAny involvement in codes 540 - 555 plus mucosal involvement of the structures in code 510", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "565", "(540 - 560) + 515\n\nAny involvement in codes 540 - 560 plus mucosal involvement of hard palate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "570", "Involvement of deep soft tissue or musculature of both lateral walls, soft palate, or base of tongue with contiguous involvement through all four sites", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "575", "570 + 515\n\nInvolvement in 570 plus mucosal involvement of anterior tongue or hard palate ", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nPrevertebral fascia or muscle\nSoft tissue of neck", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "Soft tissue of neck, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA RETAINED V0200\n\nNasopharynx, lateral, or NOS", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\n\nLarynx, NOS\nMedial pterygoid muscle, or pterygoid muscle, NOS\nPosterior surface of epiglottis", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "670", "Maxilla\nMaxillary sinus (antrum)\nNasal cavity\nMedial pterygoid muscle, \nPterygoid muscle, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "675", "(610 or 670) + (510, 560, or 570)\n\nInvolvement of any structure in codes 610 or 670 plus any involvement of both lateral walls through soft palate or base of tongue", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "678", "(610,670, or 675) + (515, 565, 575)\n\nInvolvement of any structure in codes 610, 670, and 675 plus mucosal involvement of anterior tongue or hard palate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "680", "Deep extrinsic muscles of tongue: \n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus\nParotid Gland", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "685", "Deep soft tissue or musculature of anterior tongue\nDeep tissue or periosteum of hard palate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "690", "Bone excluding base of skull\nLateral pterygoid muscle\nOverlying skin\nPalatine bone\nPterygoid plates\nCartilage, NOS\nBone, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA RETAINED V0200\n\nDeep extrinsic muscles of tongue: \n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus\nHard palate\nMandible", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "705", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "710", "Prevertebral fascia/muscle", "VALUE:T4b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "715", "710 + (510, 560, 670, 675, or 678) \n\nPrevertebral fascia/muscle plus any involvement of both lateral walls through soft palate or base of tongue", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "718", "710 + (515, 565, 575, 680, 685, or 690) \n\nPrevertebral fascia/muscle plus involvement of any structure in codes 680 and 690 or any involvement of anterior tongue or hard palate", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA CONVERTED V0200\n \nSee code 690\nLateral pterygoid muscle\nPterygoid plates", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "750", "Base of skull\nBone of skull", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "760", "OBSOLETE DATA CONVERTED V0200\n\nSee code 690\nBone", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "770", "Carotid artery (encased)", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "790", "Contiguous extension:\n Mediastinal structures", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension:\n Anterior 2/3 of tongue\n Parotid gland", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bel.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bel.json
deleted file mode 100644
index 2d73e4187..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bel.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bel",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 350, 450, 610, and 620 for extension involving the mucosa only of adjacent sites. Use higher codees for extension involving deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 150, 640, or 660.\n\n**Note 5**: Use code 640, 735, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:11.961Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor on one side confined to:\n Lamina propria\n Submucosa", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of soft palaate or uvula on one side", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Tumor confined to mucosa of soft palate or uvula crossing midline", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nMusculature invaded", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "Extension involving mucosa only:\n Buccal mucosa (inner cheek)", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "400", "OBSOLETE DATA RETAINED V0200\n \nTumor crosses midline", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "450", "Extension involving mucosa only:\n Lateral pharyngeal wall\n Tonsillar pillars and fossae\n Tonsils", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBuccal mucosa (inner cheek)\nGum (gingiva), upper", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nLateral pharyngeal wall\nTonsillar pillars and fossae\nTonsils", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "Tumor involving mucosa only:\n Hard palate", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "Tumor involving mucosa only:\n Nasopharynx", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "640", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "650", "OBSOLETE DATA RETAINED V0200\n\nHard palate", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "Involvement of deep soft tissue or musculature of soft palate or uvula", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "665", "660 + (350, 450, or 610)\n\nInvolvement of deep soft tissue or musculature of soft palate or uvula plus mucosal involvement of any structure in code 350, 450, or 610", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "670", "Involvement of deep soft tissue or musculature of any structure in code 350, 450, or 610", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "675", "Nasal cavity", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "680", "Pterygoid muscle lateral\nPterygoid plates ", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "685", "(665 - 680) + 620\n\nInvolvement in code 660 - 680 plus mucosal involvement of nasopharynx", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "690", "Involvement of deep soft tissue or musculature of nasopharynx", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "Mandible\nMaxilla \nMaxillary sinus (antrum)\nPalatine bone (bone of hard palate)\nBone excluding pterygoid plates, base of skull\nCartilage, NOS\nBone, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "Pterygoid muscle, medial or NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "Tongue, NOS\nDeep (extrinsic) muscle of tongue:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "730", "Larynx\nHypopharynx", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "735", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "740", "OBSOLETE DATA RETAINED V0200\n\nMaxillary antrum (sinus) \nNasopharynx, lateral or NOS", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA CONVERTED V0200\nSee code 675\n\nNasal cavity", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "780", "OBSOLETE DATA CONVERTED V0200\nSee code 680\n\nPterygoid muscle, lateral\nPterygoid plates\nNote: For medial pterygoid muscle or pterygoid muscle, NOS, see code 710", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "790", "OBSOLETE DATA RETAINED V0200\n\n770 or 780 with any of 700 to 760", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Base of skull\nCarotid artery (encased)", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Masticator space\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bem.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bem.json
deleted file mode 100644
index 365a2be68..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bem.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bem",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Connective tissues large enough to be given a specific name are considered adjacent structures. For example, prevertebral fascia and jugular vein have names.\n\n**Note 2**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 3**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 4**: Use codes 405 and 430 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 5**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 530.\n\n**Note 6**: Use code 470, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.011Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to site of origin", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of site of origin", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nMore than one region of pharynx involved (oropharynx, nasopharynx, hypopharynx)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "405", "Mucosa only of more than one region of pharynx involved:\n Oropharynx\n Nasopharynx\n Hypopharynx", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "430", "Mucosa only of pharynx and oral cavity involved", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nPharynx and oral cavity involved", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "530", "Involvement of deep soft tissue or musculature of any structure in code 105", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "535", "530 + (400 or 500)\n\nInvolvement of deep soft tissue or musculature of any structure in code 105 with mucosal involvement of any structure in code 405 or 430", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "540", "Involvement of deep soft tissue or musculature of any structure in code 405 or 430", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Any of codes 105-430 WITH fixation", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Extension to adjacent structures \n(See Note 1)", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "Contiguous extension:\n Carotid artery (encased)\n Mediastinal structures\n Prevertebral space ", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Base of skull\n Brain\n Dura \n Lower cranial nerves (IX, X, XI, XII)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS ] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ben.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ben.json
deleted file mode 100644
index 00ad3efa2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ben.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_ben",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 400 and 420 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105 or 550.\n\n**Note 5**: Use code 550, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.058Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to:\n Lamina propria\n Submucosa", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to buccal mucosa", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 610\n\nMusculature (buccinator)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension involving mucosa only:\n Lateral pharyngeal wall\n Lip(s) including commissure\n Gingiva\n Tonsillar pillars and fossae\n Tonsils", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "420", "Extension involving mucosa only:\n Hard palate\n Soft palate", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nLip(s) including commissure", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA RETAINED V0200\n\nGingiva", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nLateral pharyngeal wall\nTonsillar pillars and fossae\nTonsils", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "610", "Involvement of deep soft tissue or musculature of cheek (buccinators)\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:L" ], [ "615", "610 + 400\n\nInvolvement of deep soft tissue or musculature of cheek plus mucosal involvement of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "Involvement of deep soft tissue or musculature of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "Subcutaneous soft tissue of cheek", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "Skin of check WITH or WITHOUT ulceration", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "665", "(610 - 660) + 420\n\nInvolvement of any structure in codes 610 - 660 plus mucosal involvement of any structure in code 420", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "670", "OBSOLETE DATA CONVERTED V0200\nSee code 700\n\nMaxillary sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "690", "Deep soft tissue involvement:\n Nasal cavity\n Soft palate\nPalatine bone", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "Cartilage:\n Mandible\n Maxilla\nCortical bone:\n Mandible\n Maxilla\nMandible, NOS\nMaxilla, NOS\nMaxillary sinus (antrum)\nCartilage, NOS\nCortical bone, NOS\nBone, NOS excluding palatine bone, base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "730", "OBSOLETE DATA CONVERTED V0200\nSee code 790\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "750", "Deep extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension:\n Hard palate\n Soft palate", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beo.json
deleted file mode 100644
index 79d7bd430..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beo.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_beo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use code 450 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 405, 460, or 510.\n\n**Note 5**: Use code 460,775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.108Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intrapeithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor on one side confined to:\n Lamina propria\n Submucosa", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of floor of mouth", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nTumor crosses midline", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "405", "Tumor confined to mucosa of floor of mouth crossing midline", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "450", "Extension involving mucosa only:\n Anterior two-thirds of tongue\n Base of tongue\n Epiglottis\n GIngiva (alveolar ridge), lower\n Glossoepiglottic fold\n Glossopharyngeal sulcus\n Lateral pharyngeal wall\n Pharyngeal (lingual) surface\n Pharyngoepiglottic fold\n Tonsillar pillars and fossae\n Tonsils\n Vallecula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "460", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nAnterior 2/3 of tongue\nBase of tongue\nGingiva (alveolar ridge), lower", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep soft tissue or musculature of floor of mouth\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "510 + 450\n\nInvolvement of deep soft tissue or musculature of floor of mouth plus mucosal involvement of structures in code 450", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "530", "Sublingual gland, including ducts\nSubmandibular (submaxillary) glands, including ducts", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nEpiglottis\nGlossoepiglottic fold\nGlossopharyngeal sulcus\nLateral pharyngeal wall\nPharyngeal (lingual) surface\nPharyngoepiglottic fold\nTonsillar pillars and fossae\nTonsils\nVallecula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "Extension to deep extrinsic muscle of tongue:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "625", "620 + 450 \n\nInvolvement of any structure in code 620 with mucosal involvement of any structure in code 450", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "628", "620 + 530\n\nInvolvement of any structure in code 620 with involvement of any structure in code 530", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "630", "OBSOLETE DATA RETAINED V0200\n\n(620) + any of (500, 530, or 600)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "635", "Involvement of deep soft tissue or musculature of any structure in code 450", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "640", "OBSOLETE DATA CONVERTED V0200\nSee code 740\n\nSubcutaneous soft tissue of chin/neck", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "Cortical bone:\n Mandible\n Maxilla\nCartilage:\n Mandible\n Maxilla\nMandible, NOS\nMaxilla, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS excluding base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "740", "Subcutaneous soft tissue of chin/neck", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "760", "Skin of undersurface of chin/neck", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "770", "OBSOLETE DATA CONVERTED V0200\nSee code 700\n\nFurther contiguous extension:\n Maxillary sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bep.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bep.json
deleted file mode 100644
index e194b9d55..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bep.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bep",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA. \n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites. \n\n**Note 3**: Use codes 400 and 440 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites. \n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 510. \n\n**Note 5**: Use code 470, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.177Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to lamina propria (mucoperiosteum) (stroma)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of lower gum", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension involving mucosa only:\n Buccal mucosa (inner cheek) \n Floor of mouth\n Lateral pharyngeal wall\n Lip, NOS (labial mucosa)\n Lower lip (labial mucosa)\n Soft palate including uvula\n Tongue mucosa\n Tonsillar pillars and fossae\n Tonsils", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "440", "Extension involving mucosa only to upper lip (labial mucosa)", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBuccal mucosa (inner cheek)\nFloor of mouth\nLabial mucosa (inner lip), lip\nTongue", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep tissue or periosteum of lower gum", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "510 + 400\n\nInvolvement of deep tissue of lower gum plus mucosal involvement of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "530", "Involvement of deep soft tissue or musculature of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Facial muscle, NOS\nSubcutaneous soft tissue of face", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nLateral pharyngeal wall (tonsillar pillars and fossae, tonsils)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\n\nSoft palate including uvula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Cartilage of mandible \nCortical bone of mandible\nMandible, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS except base of skull, maxilla", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "720", "Extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "725", "(510 -720) + 440\n\nInvolvement of any structure in codes 510-720 plus mucosal involvement of upper lip", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "730", "Deep soft tissues or musculature of upper lip", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "Cartilage of maxilla\nCortical bone of maxilla\nMaxilla, NOS\nMaxillary sinus (antrum)", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "OBSOLETE DATA CONVERTED V0200\nSee Code 800\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Contiguous extension :\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including :\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beq.json
deleted file mode 100644
index 4839e9fbb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_beq.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_beq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 400 and 400 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary of adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 510.\n\n**Note 5**: Use code 470, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.228Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intrapeithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to lamina propria (mucoperiosteum) (stroma)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of gum", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension involving mucosa only:\n Buccal mucosa (inner cheek)\n Labial mucosa (inner lip), lip\n Lateral pharyngeal wall\n Soft palate including uvula\n Tonsillar pillars\n Tonsillar fossae\n Tonsils", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "440", "OBSOLETE DATA CONVERTED V0203\nSee code 400\n\nExtension via mucosa to upper lip (labial mucosa)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBuccal mucosa (inner cheek)\nLabial mucosa (inner lip), lip", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep tissue or periosteum of gum", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "510 + 400\n\nInvolvement of deep tissue of gum plus mucosal involvement of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "530", "Involvement of deep soft tissue or musculature of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Facial muscle, NOS\nSubcutaneous soft tissue of face", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nLateral pharyngeal wall (tonsillar pillars and fossae, tonsils)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Cartilage of mandible or maxilla\nCortical bone of mandible or maxilla\nMandible, NOS\nMaxilla, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS except base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "720", "Extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "765", "Maxillary sinus (antrum)", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 700, 765\n\nCartilage of maxilla\nCortical bone of maxilla\nMaxilla NOS\nMaxillary sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "OBSOLETE DATA CONVERTED V0200\nSee Code 800\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates ", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space\n Mediastinal structures", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ber.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ber.json
deleted file mode 100644
index 9d048c86a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ber.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_ber",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA. \n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites. \n\n**Note 3**: Use code 400 and 440 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites. \n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 510.\n\n**Note 5**: Use code 470, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.283Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive;", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to lamina propria (mucoperiosteum) (stroma)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of upper gingiva", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension involving mucosa only:\n Buccal mucosa (inner cheek) \n Floor of mouth\n Hard palate\n Lateral pharyngeal wall\n Lip, NOS (labial mucosa)\n Lower lip (labial mucosa)\n Soft palate including uvula \n Tongue mucosa\n Lateral pharyngeal wall\n Tonsillar pillars and fossae \n Tonsils", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "440", "Extension via mucosa to upper lip (labial mucosa)", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBuccal mucosa (inner cheek)\nFloor of mouth\nLabial mucosa (inner lip), lip\nTongue", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep tissue or periosteum of lower gum", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "510 + 400\n\nInvolvement of deep tissue of lower gum plus mucosal involvement of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "530", "Involvement of deep soft tissue or musculature of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Facial muscle, NOS\nSubcutaneous soft tissue of face", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nLateral pharyngeal wall (tonsillar pillars and fossae, tonsils)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 710 and 765\n\nCartilage of mandible\nCartilage NOS\nCortical bone of mandible\nCortical bone NOS\nMandible NOS\nBone NOS except maxilla, skull base", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "Cartilage of maxilla or palatine bone\nCortical bone of maxilla or palatine bone\nMaxilla, NOS\nPalatine bone, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS except mandible, base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "720", "Extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "725", "(510-720) + 440\n\nInvolvement of any structure in codes 510-720 plus mucosal involvement of upper lip", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "730", "Deep soft tissues or musculature of upper lip", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "740", "Maxillary sinus (antrum)\nNasal cavity", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "765", "Cartilage of mandible\nCortical bone of mandible\nMandible, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA CONVERTED V0203\nSee code 710\n\nCartilage of maxilla\nCortical bone of maxilla\nMaxilla NOS\nMaxillary sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "OBSOLETE DATA CONVERTED V0200\nSee Code 800\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bes.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bes.json
deleted file mode 100644
index b2f5632c9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bes.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bes",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 400-450 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 520.\n\n**Note 5**: Use code 470, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.343Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intrapeithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to:\n Labial mucosa (inner lip)\n Lamina propria\n Multiple foci\n Submucosa (superficial invasion)\n Vermilion surface\nSuperficial extension to:\n Skin of lip\n Subcutaneous soft tissue of lip", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of lower lip:\n Labial mucosa (inner lip)\n Vermilion surface", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 520\n\nMusculature", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension involving mucosa only:\n Buccal mucosa (inner cheek)\n Commissure (for lower lip)\n Opposite lip (both lips)", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "410", "Extension involving mucosa only:\n Lower gingiva\n Gingiva, NOS", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "440", "Extension involving mucosa only:\n Upper gingiva", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "450", "Extension involving mucosa only:\n Floor of mouth\n Tongue", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBuccal mucosa (inner cheek) \nCommissure \nOpposite (both) lip(s)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA RETAINED V0200\n\nGingiva", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "Involvement of deep soft tissue or musculature of lower lip\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "530", "520 + (400 or 410)\n\nInvolvement of deep soft tissue or musculature of lower lip plus mucosal involvement of any structure in code 400 or 410", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "540", "Involvement of deep soft tissue or musculature of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Involvement of deep tissue or periosteum of lower gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Cartilage of mandible\nCortical bone of mandible\nMandible, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS except maxilla, base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "705", "(520, 540, or 700) + 440\n\nInvolvement of any structure in codes 520 - 700 plus mucosa of upper gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "710", "Deep tissue or periosteum of upper gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "740", "Skin of nose", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "743", "740 + (440 or 710)\n\nSkin of nose plus mucosa or deep tissue of upper gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "745", "(520 - 740) + 450\n\nInvolvement of any structure in codes 520 - 740 plus mucosa of floor of mouth or tongue", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "748", "Involvement of deep soft tissue or musculature of floor of mouth or tongue\nInferior alveolar nerve", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nTongue", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "755", "Extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face/neck", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "765", "Cartilage of maxilla\nCortical bone of maxilla\nMaxilla, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA RETAINED V0200\n\nCortical bone (other than code 700)\nFloor of mouth\nInferior alveolar nerve", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bet.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bet.json
deleted file mode 100644
index 78662f49e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bet.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bet",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 400 and 410 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involvling the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 520.\n\n**Note 5**: Use code 470, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.399Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to:\n Labial mucosa (inner lip)\n Lamina propria\n Multiple foci\n Submucosa (superficial invasion)\n Vermilion surface\nSuperficial extension to:\n Skin of lip\n Subcutaneous soft tissue of lip", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of lip:\n Labial mucosa (inner lip)\n Vermilion surface", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 520\n\nMusculature", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension involving mucosa only:\n Buccal mucosa (Inner cheek) \n Commissure \n Opposite lip (both lips)", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "410", "Extension involving mucosa only:\n Lower gingiva\n Gingiva, NOS", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nInner cheek (buccal mucosa)\nCommissure\nOpposite (both) lip(s)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA RETAINED V0200\n\nGingiva", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "Involvement of deep soft tissue or musculature of lip\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "530", "520 + (400 or 410)\n\nInvolvement of deep soft tissue or musculature of lip plus mucosal involvement of any structure in code 400 or 410", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "540", "Involvement of deep soft tissue or musculature of any structure in code 400", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Involvement of deep tissue or periosteum of gingiva", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Cartilage of mandible or maxilla\nCortical bone of mandible or maxilla\nMandible, NOS\nMaxilla, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS except base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "748", "Involvement of deep tissue or musculature of floor of mouth or tongue\nInferior alveolar nerve", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nTongue", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "755", "Extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face/neck", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "765", "OBSOLETE DATA CONVERTED V0203\nSee code 700\n\nCartilage NOS\nCortical bone NOS\nBone NOS excluding skull base", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "770", "OBSOLETE DATA RETAINED V0200\n\nCortical bone \nFloor of mouth\nInferior alveolar nerve", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bev.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bev.json
deleted file mode 100644
index 0b6fd32aa..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bev.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bev",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use codes 350-370 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 470, or 510.\n\n**Note 5**: Use code 470, 725, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.462Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to:\n Lamina propria\n Submucosa", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of oral site", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA CONVERTED V0200\nSee code 510\n\nMusculature invaded", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "Extension involving mucosa only to adjacent sites in oral cavity including tongue", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "370", "Extension involving mucosa only:\n Inferior surface of soft palate including uvula\n Lateral pharyngeal wall\n Lingual surface of epiglottis\n Oropharynx, NOS\n Vallecula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nAdjacent oral cavity", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep soft tissue or musculature of structure in code 105\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "510 + (350 or 370)\n\nInvolvement of deep soft tissue or musculature of structure in code 105 plus mucosal involvement of any structure in code 350 or 370", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Deep soft tissue or musculature of any structure in code 350", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "570", "Deep soft tissue or musculature of any structure in code 370", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nExtension to oropharynx\nInferior surface of soft palate\nLateral pharyngeal wall\nLingual surface of epiglottis\nVallecula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "690", "Cortical bone of mandible\nCortical bone of maxilla\nMandible, NOS\nMaxilla, NOS\nMaxillary antrum (sinus)\nCortical bone, NOS\nCartilage, NOS\nBone, NOS excluding base of skull", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA RETAINED V0200\n\nExtension to adjacent structures:\nMandible\nMaxilla\nMaxillary antrum (sinus)\nNasal cavity\nSkin of face/neck\nTongue", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "705", "Nasal cavity\nSkin of face/neck", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "Deep (extrinsic) muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Styloglossus ", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA CONVERTED V0200\nSee code 750\n\nSkull", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "725", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "750", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates ", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bew.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bew.json
deleted file mode 100644
index 792e69dac..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bew.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bew",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis or TX category for melanoma of mucosa of head and neck sites. CS Extension codes 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 2**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 3**: Use code 410 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 105, 405, or 470.\n\n**Note 5**: Use code 470, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.512Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive ", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor on one side confined to mucoperiosteum (stroma)", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Tumor confined to mucosa of hard palate on one side", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nTumor crosses midline", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "405", "Tumor confined to mucosa of hard palate and crossing midline", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "410", "Extension involving mucosa only:\n Buccal mucosa (inner cheek)\n Gingiva, upper\n Glossopalatine arch\n Pharyngopalatine arch\n Soft palate\n Uvula", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBuccal mucosa (inner cheek)\nGingiva, upper\nGlossopalatine arch\nPharyngopalatine arch\nSoft palate\nUvula", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "Involvement of deep tissue or periosteum of hard palate", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "520", "510 + 410\n\nInvolvement of deep tissue hard palate plus mucosal involvement of any structure in code 410", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "530", "Involvement of deep soft tissue or musculature of any structure in code 410", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Cartilage of maxilla or palatine bone\nCortical bone of maxilla or palatine bone\nMaxilla, NOS \nPalatine bone, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS except base of skull ", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "730", "Floor of nose\nMaxillary sinus (antrum) \nNasal cavity\nNasopharynx\nSkin of face\nPterygoid plate", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "740", "OBSOLETE DATA RETAINED V0200\n\nDeep muscle of tongue\nFloor of nose\nMaxillary antrum (sinus)\nNasal cavity\nNasopharynx\nSkin of face\nSphenoid bone", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "Extrinsic muscle of tongue:\n Genioglossus\n Hyoglossus\n Palatoglossus\n Pharyngoglossus\n Styloglossus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "760", "OBSOLETE DATA CONVERTED V0200\nSee code 730\n\nPterygoid plate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "Contiguous extension:\n Base of skull base (including sphenoid bone other than pterygoid plates)\n Carotid artery (encased)\n Masticator space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bex.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bex.json
deleted file mode 100644
index 9756e9d62..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bex.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bex",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The intrinsic muscles of tongue are four paired muscles within the tongue which control its shape. The extrinsic muscles originate from structures outside the tongue and control its positioning.\n\n**Note 2**: AJCC does not include a Tis or TX for melanoma of mucosa of head and neck sites. CS Extension codes of 000 and 999 are mapped to NA and AJCC stage group is derived as NA.\n\n**Note 3**: AJCC does not include a T1 or T2 category for mucosal melanoma of head and neck sites.\n\n**Note 4**: Use codes 410 and 420 for extension involving the mucosa only of adjacent sites. Use higher codes for extension involving the deeper tissues of the primary or adjacent sites.\n\n**Note 5**: Use code 305 for localized tumor only if no information is available to assign code 110, 405, 440, or 520.\n\n**Note 6**: Use code 440, 775, 810, or 815 if the physician's assignment of T category is the only information available about the extent of the tumor.",
- "last_modified" : "2015-05-27T16:19:12.571Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor on one side confined to:\n Lamina propria\n Submucosa", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "OBSOLETE DATA REVIEWED V0203\nSee codes 110, 405\n\nTumor confined to mucosa of anterior tongue: \n Tumor confined to one side\n Midline tumor\n Tumor crosses midline", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "Tumor involving mucosa only of anterior tongue:\n Confined to one side\n Midline tumor", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nMusculature, intrinsic or NOS", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS\nMidline tumor", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "305", "Localized, NOS", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "OBSOLETE DATA CONVERTED V0203\nSee code 110\n\nMidline tumor confined to mucosa", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nTumor crosses midline", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "405", "Extension involving mucosa only across midline of tongue", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "410", "Extension involving mucosa only:\n Base of tongue\n Floor of mouth\n Gingiva, lower\n Retromolar trigone", "VALUE:T3", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "420", "Extension involving mucosa only:\n Lateral pharyngeal wall\n Soft palate, inferior surface\n Tonsillar pillars and fossae\n Tonsils", "VALUE:T3", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "440", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "OBSOLETE DATA RETAINED V0200\n\nBase of tongue\nFloor of mouth\nGingiva, lower\nRetromolar trigone", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "Involvement of deep soft tissue or musculature of tongue\nSoft tissue, NOS", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "530", "Sublingual gland", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "540", "520 + 500\n\nInvolvement of deep soft tissue or musculature of tongue plus mucosal involvement of any structure in code 410", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Involvement of deep soft tissue or musculature of any structure in code 410", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "560", "(520 - 550) + 420\n\nInvolvement of any structure in codes 520 - 550 plus mucosal involvement of any structure in code 420", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "570", "Involvement of deep soft tissue or musculature of any structure in code 420", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nLateral pharyngeal wall\nSoft palate, inferior surface \nTonsillar pillars and fossae\nTonsils", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "700", "Cartilage of mandible\nCortical bone of mandible\nMandible, NOS\nCartilage, NOS\nCortical bone, NOS\nBone, NOS excluding maxilla and base of skull base", "VALUE:T4a", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "710", "700 + (560 or 570)\n\nInvolvement of any structure in code 700 plus any structure in code 560 or 570", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "OBSOLETE DATA RETAINED V0200 \n\n(600) + (700) ", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "740", "OBSOLETE DATA CONVERTED V0200\nSee code 770\n\nMaxilla\nMaxillary sinus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "750", "Musculature of tongue, extrinsic:\n Genioglossus\n Geniohyoid\n Hyoglossus\n Mylohyoid \n Palatoglossus\n Styloglossus", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "760", "Skin of face", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "770", "Cartilage of maxilla\nCortical bone of maxilla\nMaxilla, NOS\nMaxillary sinus (antrum)", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "775", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "790", "Contiguous extension:\n Base of skull\n Carotid artery (encased)\n Masticator space\n Pterygoid plates", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\n\nFurther contiguous extension", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "801", "Further contiguous extension including:\n Brain\n Dura\n Lower cranial nerves (IX, X, XI, XII)\n Mediastinal structures\n Prevertebral space", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "950", "OBSOLETE DATA RETAINED V0200\n\nNo evidence of primary tumor", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bey.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bey.json
deleted file mode 100644
index 1c3e40b5d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bey.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bey",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC stages carcinoma of pharyngeal tonsil using schema for oropharynx.\n\n**Note 2**: The assignment of T1 and T2 categories for tumors of the oropharynx is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 330, 350, 575, 665, 810, or 815 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: Use code 305 for localized tumor only if no information is available to assign code 100, 200, 305, or 310.",
- "footnotes" : "- For CS Extension codes 105, 205, 305, 330, 350, 400, 500, 530, 555, and 565 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table AJCC 7 for this schema.\n- For CS Extension codes 100 through 568, 575, and 580 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size Table AJCC 6 for this schema.",
- "last_modified" : "2015-05-27T16:19:12.622Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nInvasive tumor confined to one of the following subsites:\n Inferior wall (superior surface of soft palate)\n One lateral wall\n Posterior superior wall (vault)", "ERROR:", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "105", "Invasive tumor confined to:\n Pharyngeal tonsil (nasopharyngeal tonsil)\n Adenoid \n Posterior superior wall (vault)", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\n\nInvolvement of two or more subsites:\n Lateral wall extending into Eustachian tube/middle ear\n Posterior, inferior, or lateral wall(s)", "ERROR:", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "205", "Involvement of inferior wall of nasopharynx (superior surface of soft palate)", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nConfined to nasopharynx\nLocalized, NOS", "ERROR:", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "305", "Confined to pharyngeal tonsil \nLocalized, NOS", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "330", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "400", "Oropharynx\nSoft palate, inferior surface including uvula", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "500", "Nasal cavity", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "530", "Pterygopalatine fossa ", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED V0200\n\nAny extension coded in 100-500 WITH fixation or tumor\nDescribed only as FIXED", "ERROR:", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "555", "Any extension coded in 105, 205, 305, 400, 500, or 530 \nWITH fixation or tumor described only as FIXED", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "560", "OBSOLETE DATA RETAINED V0200\n\nAny extension coded in 100-500 WITH parapharyngeal extension", "ERROR:", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "565", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 566\n\nAny extension coded in 100, 200, 400, 500, or 530 \nWITH parapharyngeal extension", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "566", "Any extension coded in 105, 205, 305, 400, 500, or 530\nWITH parapharyngeal extension", "JUMP:extension_size_ajcc7_xdl", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "568", "Lingual surface of epiglottis", "VALUE:T3", "JUMP:extension_size_ajcc6_xdk", "VALUE:D", "VALUE:D" ], [ "570", "OBSOLETE DATA CONVERTED V0200\nSite/histology moved to new schema V0200\nSee code 610\n\nHard palate", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "575", "Stated as T3 with no other information on extension", "VALUE:T3", "JUMP:extension_size_ajcc6_xdk", "VALUE:L", "VALUE:L" ], [ "580", "OBSOLETE DATA RETAINED V0200\nSite/histology moved to new schema V0200\nSee code 530\n\nPterygopalatine fossa", "ERROR:", "JUMP:extension_size_ajcc6_xdk", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSite/histology moved to new schema V0200\nSee code 760\n\nBone including skull", "ERROR:", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "610", "Hard palate", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:RE" ], [ "620", "Paranasal sinus", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:RE" ], [ "640", "(610, 620) + 568\n\nAny structure in code 610 or 620 plus lingual surface of epiglottis", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "645", "Larynx\nHypopharynx\nExtrinsic muscle of tongue\nMedial pterygoid muscle\nMandible", "VALUE:T4a", "VALUE:T4a", "VALUE:D", "VALUE:D" ], [ "650", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nIn CS version 1, extension to the orbit was included in both codes 650 and 700. In addition, the isntructions for coding invasion of orbital bone were not clear. Codes 650 and 700 should be reviewed for orbital involvement. Involvement of bone of floor of orbit should be coded 760, and other orbit involvement should be coded 780.\n\nOrbit", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "665", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4a", "VALUE:RE", "VALUE:RE" ], [ "700", "OBSOLETE DATA REVIEWED AND CHANGED V0200\nSee note in code 650\n\nBrain\nCranial nerves\nHypopharynx\nInfratemporal fossa\nOrbit\nIntracranial extension, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "Lateral nasopharynx", "VALUE:T4b", "VALUE:T4b", "VALUE:L", "VALUE:L" ], [ "715", "710 + (400 - 550) \n\nLateral nasopharynx plus any structure in codes 400 through 530", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "718", "710 + (610, 620) \n\nLateral nasopharynx plus hard palate or paranasal sinus", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "730", "710 + 568 \n\nLateral nasopharynx plus lingual surface of epiglottis", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "740", "Lateral pterygoid muscle\nPterygoid plates", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED V0200\nSite/histology moved to new schema V0200\nSee code 780\n\nMasticator space", "ERROR:", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "760", "Bony structures of skull base \nFloor of orbit", "VALUE:T4b", "VALUE:T4b", "VALUE:RE", "VALUE:RE" ], [ "765", "760 + (610, 620) \n\nAny structure in 760 plus hard palate or paranasal sinus", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:RE" ], [ "770", "760 + 568 \n\nAny structure in 760 plus lingual surface of epiglottis", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "780", "Brain\nCranial nerve involvement\nHypopharynx\nInfratemporal fossa/Masticator space\nOrbit", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "790", "Carotid artery (encased", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including:\n Soft tissues of the neck", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4b", "VALUE:D", "VALUE:D" ], [ "815", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4NOS", "VALUE:L", "VALUE:L" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bez.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bez.json
deleted file mode 100644
index 56c727d92..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bez.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bez",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Ocular adnexal lymphomas (OAL) originate in conjunctiva, eyelids, lacrimal gland, lacrimal drainage apparatus, and other orbital tissues surrounding the eye. This schema should not be used for secondary lymphomatous involvement of ocular adnexa or for intraocular lymphomas.\n\n**Note 2**: Preseptal eyelid involvement includes infiltration of the outer three layers of the eyelid:skin, subcutaneous connective tissue, and orbicularis oculi muscle.\n\n**Note 3**: The orbit is the bony cavity containing the eye, lacrimal gland, lacrimal sac, nasolacrimal duct, extraocular muscles, fat. arteries, veins, and nerves, but no lymphatics.\n\n**Note 4**: Unknown extension is coded 989. Code 999, used for lymphoma staging in CS Version1, is an obsolete code for this schema.",
- "footnotes" : "- Stage grouping for AJCC 6 staging of ocular adnexal lymphoma for cases using obsolete codes is derived directly from the CS Extension code as shown in the AJCC TNM 6 Stage CSv1 table. A or B classification is appended to Stage I-IV based on coding of CS Site-Specific Factor 2, Systemic Symptoms at Diagnosis.\n- Stage grouping for AJCC 6 staging of ocular adnexal lymphoma is derived from a combination of CS Extension, CS Lymph Nodes, and CS Mets at DX codes as shown in the AJCC TNM 6 Stage table. A or B classification is appended to Stage I-IV based on coding of CS Site-Specific Factor 2, Systemic Symptoms at Diagnosis.",
- "last_modified" : "2015-05-27T16:19:12.695Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of a single lymph node region \nStage I", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "105", "Lymphoma involving bulbar conjunctiva only\nWITHOUT orbital involvement\n \nStated as T1a with no other information on extension", "VALUE:T1a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nLocalized involvement of a single extralymphatic organ/site in the absence of any lymph node involvement\nMultifocal involvement of one extralymphatic organ/site\nStage IE", "ERROR:", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "115", "Palpebral conjunctiva \nWITHOUT orbital involvement: \n With or without involvement of the fornix \n With or without involvement of the caruncle\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of spleen only\nStage IS", "ERROR:", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "125", "Extensive conjunctival involvement\n\nStated as T1c with no other information on extension", "VALUE:T1c", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Conjunctiva alone \nWITHOUT orbital involvement, \nConjunctiva, NOS\n\nStated as T1[NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of two or more lymph node regions on the SAME side of the diaphragm\nStage II", "ERROR:", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "210", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nLocalized involvement of a single extralymphatic organ/site \nWITH involvement of its regional lymph node(s) or \nWITH or without involvement of other lymph node(s) on the SAME site of the diaphragm\nDirect extension to adjacent organs or tissues\nStage IIE", "ERROR:", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "220", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of spleen PLUS lymph node(s) BELOW the diaphragm\nStage IIS", "ERROR:", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "230", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of spleen PLUS involvement of a single extralymphatic organ/site BELOW the diaphragm \nWITH/WITHOUT involvement of lymph node(s) BELOW the diaphragm\nStage IIES", "ERROR:", "VALUE:NA", "VALUE:RNOS", "VALUE:RNOS" ], [ "300", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of lymph node regions on BOTH sides of the diaphragm\nStage III", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "305", "Anterior orbit \n With or without conjunctival involvement\n \nStated as T2a with no other information on extension", "VALUE:T2a", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "310", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of an extralymphatic organ/site PLUS involvement of lymph node(s) on the OPPOSITE side of the diaphragm\nStage IIIE", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "315", "Anterior orbit\nWITH lacrimal involvement:\n With or without conjunctival involvement \n \nStated as T2b with no other information on extension", "VALUE:T2b", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "320", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nInvolvement of the spleen PLUS lymph node(s) ABOVE the diaphragm\nInvolvement of spleen PLUS lymph nodes on both sides of the diaphragm\nStage IIIS", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "325", "Posterior orbit: \n With or without conjunctival involvement \n With or without anterior involvement\n With or without extraocular muscle involvement\n \nStated as T2c with no other information on extension", "VALUE:T2c", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "330", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\n(310 + 320) OR\nInvolvement of the spleen PLUS a single extralymphatic site ABOVE the diaphragm\nWITH/WITHOUT involvement of lymph node(s)\nInvolvement of the spleen PLUS involvement of lymph node region(s) ABOVE the diaphragm \nPLUS involvement of a single extralymphatic organ/site on either side of the diaphragm\nStage IIIES", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "335", "Nasolacrimal drainage system: \n With or without conjunctival involvement\n Without nasopharynx involvement\n\nStated as T2d with no other information on extension", "VALUE:T2d", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "Orbital involvement:\n With or without conjunctival involvement\n \nStated as T2 [NOS] with no other information on extension", "VALUE:T2NOS", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "500", "Pre-septal eyelid involvement:\n With or without orbital involvement\n With or without conjunctival involvement\n \nStated as T3 with no other information on extension", "VALUE:T3", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "700", "Nasopharynx\n \nStated as T4a with no other information on extension", "VALUE:T4a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "Osseous involvement including periosteum\n \nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "Maxillofacial, ethmoidal, and/or frontal sinuses\n \nStated as T4c with no other information on extension", "VALUE:T4c", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "730", "Intracranial spread\n \nStated as T4d with no other information on extension", "VALUE:T4d", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "Extension beyond orbit to adjacent structures, NOS\n \nStated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nDiffuse or disseminated (multifocal) involvement of ONE OR MORE extralymphatic organ(s)/site(s) \nWITH OR WITHOUT associated lymph node involvement\nMultifocal involvement of MORE THAN ONE extralymphatic organ/site\nInvolvement of isolated extralymphatic organ in absence of involvement of adjacent lymph nodes, but in conjunction with disease in distant sites\nMetastasis/involvement:\n Bone marrow\n Liver\n Nodular involvement of lung(s)\nStage IV", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "805", "Further contiguous extension beyond any structure in codes 700 - 730", "VALUE:T4NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "989", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "OBSOLETE DATA RETAINED V0200\nNew schema for site/histology V0200\n\nUnknown extension\nPrimary tumor cannot be assessed\nNot documented in patient record", "ERROR:", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfa.json
deleted file mode 100644
index d9a0efcf7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfa.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: \"Multiple (satellite) nodules/tumors\" include satellitosis, multifocal tumors, and intrahepatic metastases.\n\n**Note 2**: Major vascular invasion is defined as invasion of the branches of the main portal vein (right or left portal vein, not including sectoral or segmental branches) or as invasion of one or more of the three hepatic veins (right, middle, or left). Invasion of the hepatic artery or vena cava is coded to 660. \n\n**Note 3**: Extension to gallbladder is not considered in AJCC staging for intrahepatic bile ducts but does affect Summary Stage. Use appropriate combination codes when gallbladder is involved.\n\n**Note 4**: All tumors with a periductal infiltrating growth pattern, a diffuse longitudinal growth pattern along the bile duct, are considered T4 by AJCC. For tumors with periductal infiltrating growth pattern, code the most specific information available about the extent of the tumor in CS Extension, and code periductal infiltrating growth pattern in CS Site-Specific Factor 10.",
- "footnotes" : "- For CS Extension codes 100-520, 580, 620, 631-650, 660-665, 675-755, 765-800, and 999 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Site-Specific Factor 10, as shown in the Extension Periductal Invasion AJCC 7 Table for this schema. \n- For CS Extension codes 300, 400, 420, 460, 465, 560, and 650 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:12.746Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive \n", "VALUE:Tis", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Single lesion in one lobe of liver\nWITHOUT intrahepatic vascular invasion, including vascular invasion not stated", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Single lesion in more than one lobe of liver (contiguous growth) \nWITHOUT vascular invasion, including vascular invasion not stated", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "140", "Extension to gallbladder, extent within liver not stated", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "160", "140 + (100 or 120) \n\nExtension to gallbladder plus single lesion in one or more lobes of liver (contiguous growth)\nWITHOUT vascular invasion ", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Single lesion in one lobe of liver \nWITH intrahepatic vascular invasion", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "220", "Single lesion in more than one lobe of liver (contiguous growth) \nWITH vascular invasion", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "240", "(200 or 220) + 140\n\nSingle lesion in one or more lobes of liver (contiguous growth) \nWITH vascular invasion plus extension to gallbladder", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "250", "Single tumor \nWITH major vascular invasion: major branch(es) of portal or hepatic vein(s)\n(See Note 2)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "260", "250 + 140\n\nSingle tumor with major vascular invasion plus extension to gallbladder", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "270", "Stated as T2a with no other information on extension", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Multiple (satellite) nodules/tumors in one lobe of liver \nWITHOUT intrahepatic vascular invasion, including vascular invasion not stated", "JUMP:extension_periductal_invasion_ajcc7_xks", "JUMP:extension_size_ajcc6_xda", "VALUE:L", "VALUE:L" ], [ "400", "Multiple (satellite) nodules/tumors in one lobe of liver( \nWITH intrahepatic vascular invasion", "JUMP:extension_periductal_invasion_ajcc7_xks", "JUMP:extension_size_ajcc6_xda", "VALUE:L", "VALUE:L" ], [ "420", "(300 or 400) + 140\n\nMultiple (satellite) nodules/tumors in one lobe of liver \nWITH or WITHOUT intrahepatic vascular invasion plus extension to gallbladder", "JUMP:extension_periductal_invasion_ajcc7_xks", "JUMP:extension_size_ajcc6_xda", "VALUE:RE", "VALUE:RE" ], [ "450", "Multiple (satellite) nodules/tumor(s) \nWITH major vascular invasion: major branch(es) of portal or hepatic vein(s) \n(See Note 2)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "455", "450 + 140\n\nMultiple (satellite) nodules/tumor(s) with major vascular invasion plus extension to gallbladder", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "Multiple (satellite) nodules/tumors in more than one lobe of liver\nSatellite nodules, NOS", "JUMP:extension_periductal_invasion_ajcc7_xks", "JUMP:extension_size_ajcc6_xda", "VALUE:D", "VALUE:RE" ], [ "465", "460 + 140\n\nMultiple (satellite) nodules/tumors in more than one lobe of liver plus extension to gallbladder", "JUMP:extension_periductal_invasion_ajcc7_xks", "JUMP:extension_size_ajcc6_xda", "VALUE:D", "VALUE:RE" ], [ "470", "(460 or 465) + any of (250, 260, 450, 455)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "475", "Stated as T2b with no other information on extension", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "480", "Stated as T2 [NOS] with no other information on extension", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "500", "Confined to liver, NOS\nLocalized, NOS", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "510", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 120 and 160\n\nMore than one lobe involved by contiguous growth (single lesion)\nWITHOUT vascular invasion, including vascular invasion not stated", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "520", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 220 and 240\n\nMore than one lobe involved by contiguous growth (single lesion)\nWITH vascular invasion", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "530", "OBSOLETE DATA CONVERTED V0203\nSee code 140\n\nExtension to gallbladder, extent within liver not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "540", "OBSOLETE DATA CONVERTED V0203\nSee code 160\n\nExtension to gallbladder 530 + (100 or 510)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "545", "OBSOLETE DATA CONVERTED V0203\nSee code 170\n\nStated as T1 [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "550", "OBSOLETE DATA CONVERTED V0203\nSee code 240\n\nExtension to gallbladder 530 + (200 or 520)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "560", "OBSOLETE DATA CONVERTED V0203\nSee code 420\n\nExtension to gallbladder 530 + (300 or 400)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "570", "OBSOLETE DATA CONVERTED V0203\nSee code 480\n\nStated as T2 [NOS] with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "580", "Extrahepatic bile ducts", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "590", "OBSOLETE DATA CONVERTED V0203\nSee code 270\n\nStated as T2a with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "620", "580 + (460 or 465) \n\nExtrahepatic bile ducts plus satellite nodules in more than one lobe or multiple tumors with major vascular invasion", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "630", "OBSOLETE DATA RETAINED V0200 \nSee codes 631 and 632\n\nMajor vascular invasion: major branch(es) of portal or hepatic vein(s) (see Note 2)", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "631", "OBSOLETE DATA REVIEWED V0203\nSee codes 250 and 260\n\nSingle tumor with major vascular invasion: major branch(es) of portal or hepatic vein(s) (see Note 2)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "632", "OBSOLETE DATA REVIEWED V0203\nSee codes 450, 455, and 470\n\nMultiple tumor(s) with major vascular invasion: major branch(es) of portal or hepatic vein(s) (see Note 2)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "640", "Direct extension/perforation of visceral peritoneum", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "643", "640 + (460, 465, 470)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "645", "Multiple (satellite) nodules on surface of liver parenchyma", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 460, 465, 470, 620, 643, and 645 \n\nMultiple (satellite) nodules/tumors in more than one lobe of liver or on surface of parenchyma\nSatellite nodules, NOS", "JUMP:extension_periductal_invasion_ajcc7_xks", "JUMP:extension_size_ajcc6_xda", "VALUE:D", "VALUE:RE" ], [ "655", "OBSOLETE DATA CONVERTED V0203\nSee code 475\n\nStated as T2b with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "660", "Extension to hepatic artery or vena cava", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "665", "660 + (460, 465, 470)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "670", "OBSOLETE DATA RETAINED V0200 \nSee code 675\n\n650 + 630 ", "ERROR:", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "675", "OBSOLETE DATA REVIEWED V0203\nSee codes 470, 643, and 665\n\n650 + (631 or 632)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "700", "Diaphragm", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "750", "OBSOLETE DATA RETAINED AND REVIEWED V0204\nPerforation of visceral peritoneum included in 2 codes in CSv2: V0201, V0202. Any cases coded 750 for perforation of visceral peritoneum in V0201, V0202 should be recoded to 640. See codes 640, 755. The V0201, V0202 definition for code 750 is restored here. Code 750 did not include perforation of visceral peritoneum in V0203. Any cases coded 750 in V0203 should be recoded to 755. \n\nLesser omentum\nLigament(s):\n Coronary\n Falciform\n Hepatoduodenal\n Hepatogastric\n Round (of liver)\n Triangular\nPerforation of visceral peritoneum\nParietal peritoneum", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "755", "Lesser omentum Ligament(s): \n Coronary \n Falciform \n Hepatoduodenal \n Hepatogastric \n Round (of liver) \n Triangular \n Parietal peritoneum", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "760", "OBSOLETE DATA RETAINED V0200 \nSee code 765\n\n(650 or 670) + any of [(640) or (660) or (700) or (750)]", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "765", "OBSOLETE DATA REVIEWED V0203\nSee codes 643, 665, 770\n\n(650 or 675) + any of [(640) or (660) or (700) or (750)]", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "770", "(700 or 750) + (460, 465, 470)", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "780", "Stated as T3 with no other information on extension", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension:\n Pancreas\n Pleura\n Stomach\nOther contiguous extension", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee Note 4 and CS Site-Specific Factor 10 code 010\n\nTumor(s) with periductal invasion \nDiffuse periductal infiltrating tumor", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "855", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "JUMP:extension_periductal_invasion_ajcc7_xks", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfc.json
deleted file mode 100644
index 304b61c9b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfc.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for gastrointestinal stromal tumors (GIST). Any case with a CS Extension code of 000 is mapped to TX for AJCC 7 stage and in situ Summary Stage.\n\n**Note 2**: Intraluminal or intramural extension to esophagus and duodenum is classified by the depth of greatest invasion in any of these sites, including stomach.\n\n**Note 3**: The assignment of T categories for GISTs is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 340, 390, 395, and 398 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 150 only if GIST is described as arising in a polyp. Do not use this code for GIST described as arising in the wall of the appendix and extending into the lumen with a polypoid appearance.\n\n**Note 5**: Use code 300 for localized cases only if no information is available to assign a more specific code.",
- "footnotes" : "- For CS Extension codes -100-800 ONLY, the T category is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:12.810Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma, noninvasive, in a polyp", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasive tumor confined to mucosa, NOS (including intramucosal, NOS)", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades lamina propria", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades muscularis mucosae", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to head of polyp\nExtension to stalk of polyp", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to stalk of polyp", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor in polyp, NOS", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "155", "Tumor confined to muscular wall", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "160", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades submucosa (superficial invasion)", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "165", "Tumor invades through submucosa and muscularis mucosae to involve mucosa", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades into but not through muscularis propria", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Implants inside stomach\nLocalized, NOS", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "340", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "350", "OBSOLETE DATA RETAINED V0200\n\nLinitis plastica and no other information regarding extension is available", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:L" ], [ "390", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "395", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "398", "Stated as T4 with no other information on extension", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Invasion through muscularis propria or muscularis, NOS\nExtension through wall, NOS\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\n\nNote: In V0203 ONLY, code 400 had a different meaning, but the original description of the code has been restored in V0204.", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "440", "Intraluminal extension to esophagus or duodenum", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:L" ], [ "450", "Extension to adjacent (connective) tissue \nWITHOUT perforation of visceral peritoneum:\n Gastric artery\n Ligaments: \n Gastrocolic\n Gastrohepatic\n Gastrosplenic\n Omentum, NOS:\n Greater\n Lesser\n Perigastric fat", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "480", "OBSOLETE DATA CONVERTED V0203\nSee code 395\n\nStated as T3 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 398\n\nStated as T4 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) \n(tunica serosa) (visceral peritoneum), including perforation of visceral peritoneum covering the gastric ligaments or the omentum \nWITHOUT invasion of adjacent structures", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "500 + 450", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "560", "Invasion of/through serosa with invasion of/through mucosa", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 610 and 650\n\nDiaphragm\nDuodenum via serosa or NOS\nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon/mesocolon (including flexures)\nCeliac axis \nAorta", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "Diaphragm\nDuodenum via serosa Duodenum, NOS\nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon/mesocolon (including flexures)", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "Aorta\nCeliac axis", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "Abdominal wall\nAdrenal gland\nKidney\nRetroperitoneum", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "JUMP:extension_size_ajcc7_xed", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfd.json
deleted file mode 100644
index e6a7496dd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfd.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for gastrointestinal stromal tumors (GIST). Any case with a CS Extension code of 000 is mapped to TX for AJCC 7 stage and in situ Summary Stage. \n\n**Note 2**: Give priority to coding depth of invasion or spread outside the small intestine for tumor with intraluminal or lateral extension to adjacent segment(s) of small intestine.\n\n**Note 3**: The assignment of T categories for GISTs is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 170, 210, 250, and 270 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 150 only if GIST is described as arising in a polyp. Do not use this code for GIST described as arising in the wall of the appendix and extending into the lumen with a polypoid appearance.\n\n**Note 5**: Use code 300 for localized cases only if no information is available to assign a more specific code.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this site.",
- "last_modified" : "2015-05-27T16:19:12.863Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasive tumor confined to mucosa, NOS, including intramucosal, NOS", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasion of lamina propria", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 155 and 165\n\nInvasion of muscularis mucosae", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to head of polyp", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to stalk of polyp", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Invasion of polyp, NOS", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "155", "Tumor confined to muscular wall", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "160", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasion of submucosa (superficial invasion)", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "165", "Tumor invades through submucosa and muscularis mucosae to involve mucosa", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 155 and 165\n\nMuscularis propria invaded", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "270", "Stated as T4 with no other information on extension", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Intraluminal spread to other segments of small intestine or cecum\n(See Note 2)\nLocalized, NOS", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Invasion through muscularis propria or muscularis, NOS\nExtension through wall, NOS\nSubserosal tissue/(sub) serosal fat invaded\nTransmural, NOS", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 250\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Adjacent connective tissue\nMesentery, including mesenteric fat, invaded less than or equal to 2 cm in depth or invaded, NOS\nNonperitonealized perimuscular tissue invaded less than or equal to 2 cm in depth or invaded, NOS\nRetroperitoneum invaded less than or equal to 2 cm in depth or NOS", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "500", "Invasion of/through serosa (mesothelium) (tunica serosa) (visceral peritoneum)", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:L", "VALUE:RE" ], [ "550", "500 + (420 or 450)\n\nInvasion of/through serosa plus invasion of structures in codes 420 or 450", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "560", "Invasion of/through serosa with invasion of/through mucosa", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "For duodenum primary only:\n Ampulla of Vater\n Diaphragm\n Extrahepatic bile duct(s)\n Gallbladder\n Pancreas\n Pancreatic duct", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "For duodenum primary only:\n Blood vessel(s), major:\n Aorta\n Gastroduodenal artery\n Portal vein\n Renal vein\n Superior mesenteric artery or vein\n Vena cava\n Greater omentum\n Hepatic flexure\n Kidney, NOS\n Kidney, right\n Liver, NOS\n Liver, quadrate lobe\n Liver, right lobe\n Omentum, NOS\n Transverse colon\n Ureter, right\nFor jejunum or ileum primaries only:\n Colon, including appendix", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "For duodenum primary only:\n Stomach", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "670", "Abdominal wall\nMesentery invaded greater than 2 cm in depth\nNon-peritonealized perimuscular tissue invaded greater than 2 cm in depth\nRetroperitoneum invaded greater than 2 cm in depth", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "680", "Other segments of the small intestine via serosa", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "690", "OBSOLETE DATA CONVERTED V0203\nSee code 270\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "For jejunum or ileum primary only:\n Bladder\n Fallopian tube(s)\n Ovary(ies)\n Uterus", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "JUMP:extension_size_ajcc7_xef", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown extension\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfe.json
deleted file mode 100644
index 7328a378f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfe.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for gastrointestinal stromal tumors (GIST). Any case with a CS Extension code of 000 is mapped to TX for AJCC 7 stage and in situ Summary Stage.\n\n**Note 2**: Ignore intraluminal extension to adjacent segment(s) of colon/rectum or to the ileum from the cecum; code depth of invasion or extracolonic spread as indicated.\n\n**Note 3**: The assignment of T categories for GISTs is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 170, 210, 250, and 270 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 150 only if GIST is described as arising in a polyp. Do not use this code for GIST described as arising in the wall of the colon and extending into the lumen with a polypoid appearance.\n\n**Note 5**: Use code 300 for localized cases only if no information is available to assign a more specific code.\n\n**Note 6**: Use code 570 for tumor with macroscopic adhesions to other organs or structures and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesion(s) upon microscopic examination, use lower codes to describe the microscopically confirmed depth of tumor invasion for these cases (excluding adherence to liver, see Note 7).\n\n**Note 7**: Adherence to the liver capsule is not considered distant metastasis. Use code 570 for any adherence to the liver capsule.\n\n**Note 8**: Codes 600-800 are used for contiguous extension from the site of origin. Discontinuous involvement is coded in CS Mets at DX.Code",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:12.927Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp or adenoma noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasive tumor confined to mucosa, NOS (includes intramucosal, NOS)", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nLamina propria", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to and not through the muscularis mucosae", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to head of polyp, NOS", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to stalk of polyp, NOS", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor in polyp, NOS", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "155", "Tumor confined to muscular wall", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "160", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades submucosa (superficial invasion)", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "165", "Tumor invades through submucosa and muscularis mucosae to involve mucosa", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 155 and 165\n\nMuscularis propria invaded", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "270", "Stated as T4 with no other information on extension", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Confined to colon, NOS\nLocalized, NOS ", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS\nWall, NOS", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 250\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "For all colon sites:\n Adjacent tissue(s), NOS\n Connective tissue\n Mesenteric fat\n Mesentery \n Mesocolon\n Pericolic fat\nFor ascending and descending colon :\n Retroperitoneal fat \nFor transverse colon and flexures :\n Gastrocolic ligament\n Greater omentum", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 6 and code 570\n\nAdherent to other organs or structures, but no microscopic tumor found in adhesion(s)", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 270\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "500 + (420 or 450)", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "560", "Invasion of/through serosa with invasion of/through mucosa", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to liver capsule\nAdherent to other organs or structures, NOS", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "For all colon sites:\n Small intestine\nFor cecum:\n Greater omentum\nFor ascending colon:\n Greater omentum\n Liver, right lobe\nFor transverse colon and flexures:\n Bile ducts\n Gallbladder\n Kidney\n Liver\n Pancreas\n Spleen\n Stomach\nFor descending colon:\n Greater omentum\n Pelvic wall\n Spleen\nFor sigmoid colon:\n Greater omentum\n Pelvic wall", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", " Abdominal wall \n Retroperitoneum (excluding fat) ", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "For ascending colon:\n Kidney, right\n Ureter, right\nFor descending colon:\n Kidney, left\n Ureter, left", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "For cecum, ascending colon, descending colon , and sigmoid colon:\n Fallopian tube\n Ovary\n Uterus", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "For all colon sites unless otherwise listed above:\n Adrenal (suprarenal) gland\n Bladder\n Diaphragm\n Fistula to skin\n Gallbladder\n Other segment(s) of colon via serosa", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including:\n For cecum:\n Kidney, right\n Liver\n Ureter, right\n For transverse colon and flexures:\n Ureter\n For sigmoid colon:\n Cul de sac (rectouterine pouch)\n Ureter", "JUMP:extension_size_ajcc7_xeb", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bff.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bff.json
deleted file mode 100644
index 5bb40c6a0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bff.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bff",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for gastrointestinal stromal tumors (GIST). Any case with a CS Extension code of 000 is mapped to TX for AJCC 7 stage and in situ Summary Stage.\n\n**Note 2**: For rectosigmoid, ignore intraluminal extension to adjacent segment(s) of colon and rectum; code depth of invasion or extra-rectosigmoidal spread as indicated.\n\n**Note 3**: The assignment of T categories for GISTs is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 170, 210, 250, and 270 as appropriate to code CS Extension based on a statement of T when no other extension information is available. \n\n**Note 4**: Use code 150 only if GIST is described as arising in a polyp. Do not use this code for GIST described as arising in the wall of the rectum and extending into the lumen with a polypoid appearance.\n\n**Note 5**: Use code 300 for localized cases only if no information is available to assign a more specific code\n\n**Note 6**: Use code 570 for tumor with macroscopic adhesions to other organs or structures and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesion(s) upon microscopic examination, use lower codes to describe the microscopically confirmed depth of tumor invasion for these cases (excluding adherence to liver, see Note 7). \n\n**Note 7**: Adherence to the liver capsule is not considered distant metastasis. Use code 570 for any adherence to the liver capsule.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:12.985Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp or adenoma, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasive tumor confined to mucosa, NOS, including intramucosal, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nLamina propria", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to and not through the muscularis mucosaee", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to head of polyp, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to stalk of polyp, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor in polyp, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "155", "Tumor confined to muscular wall", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "160", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155, 165\n\nSubmucosa (superficial invasion)", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "165", "Tumor invades through submucosa and muscularis mucosae to involve mucosa", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nMuscularis propria invaded", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "270", "Stated as T4 with no other information on extension", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Confined to rectosigmoid (junction), NOS\nConfined to rectum, NOS\nLocalized, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS\nWall, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 250\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "440", "For rectum:\n Intraluminal extension to rectosigmoid\n Intraluminal extension to anus", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:L" ], [ "450", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 440, 455, and 610\n\nAdjacent (connective) tissue:\n For all sites:\n Perirectal fat\n For rectosigmoid:\n Mesentery (including mesenteric fat, mesocolon)\n Pericolic fat\n For rectum:\n Extension to anus\n Rectovaginal septum", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "455", "Adjacent (connective) tissue:\n For all sites:\n Perirectal fat\n For rectosigmoid:\n Mesentery (including mesenteric fat, mesocolon)\n Pericolic fat\n For rectum:\n Rectovaginal septum", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 6 and code 570\n\nAdherent to other organs or structures but no tumor found in adhesion(s)", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 270\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 555 and 610\n\n500 with (420 or 450)", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "555", "500 + (440, 455 or 458)", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "560", "Invasion of/through serosa with invasion of/through mucosa", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to liver capsule\nAdherent to other organs or structures, NOS", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA CONVERTED V0203\nSee code 610\n\nRectosigmoid:\n Cul de sac (rectouterine pouch)\n Pelvic wall\n Small intestine\nRectum:\n Bladder for males only\n Cul de sac (rectouterine pouch)\n Ductus deferens\n Pelvic wall\n Prostate\n Rectovesical fascia for male only\n Seminal vesicle(s)\n Skeletal muscle of pelvic floor\n Vagina", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "610", "For all sites:\n Cul de sac (rectouterine pouch)\n Pelvic wall\nFor rectosigmoid: \n Pelvic plexuses\n Small intestine\nFor rectum:\n Anus (excluding intraluminal extension)\n Bladder for males only\n Colon\n Ductus deferens\n Prostate\n Rectovesical fascia for males only\n Seminal vesicle(s)\n Skeletal muscle of pelvic floor\n Vagina", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "For rectosigmoid:\n Bladder\n Colon via serosa\n Fallopian tube(s)\n Ovary(ies)\n Prostate\n Ureter(s)\n Uterus\nFor rectum:\n Bladder for females only\n Bone(s) of pelvis\n Urethra\n Uterus", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including:\n For all sites:\n Other segments of colon via serosa\n For rectosigmoid:\n Skeletal muscles of pelvic floor\n Vagina\n For rectum:\n Sacral plexus\n Sacrum\n Ovary(ies)\n Perineum, perianal skin", "JUMP:extension_size_ajcc7_xec", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfg.json
deleted file mode 100644
index f5bb12466..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfg.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bfg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Ignore intraluminal extension to adjacent segment(s) of colon; code depth of invasion or extracolonic spread as indicated.\n\n**Note 2**: Mucinous tumors are identified by morphology codes 8480, 8481, and 8490.\n\n**Note 3**: One or more malignant satellite peritumoral nodules or tumor deposits (TD) in the periappendiceal adipose tissue of a primary carcinoma without histologic evidence of residual lymph node in the nodule may represent discontinuous spread, venous invasion with extravascular spread, or a totally replaced lymph node. Replaced nodes are counted as positive nodes and coded in CS Lymph Nodes. TD representing discontinuous spread or venous invasion are coded in CS Extension, code 450, and the number of TD representing discontinuous spread or venous invasion is coded in CS Site-Specific Factor 4.\n\n**Note 4**: Tumor that is adherent to other organs or structures, macroscopically, is classified cT4b. If tumor is present in adhesion(s) upon microscopic examination, the tumor is classified as pT4b. Use code 565 for macroscopic adhesions if no pathologic confirmation, and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesion(s) upon microscopic examination, the classification is based upon extent of tumor invasion into or through the wall; use codes 000-160, 200, 400, 450, 500-550 as appropriate to describe the microscopically confirmed depth of tumor invasion for these cases. Use codes 600-650, 665, 700-810 to code invasion of underlying structures from the adherent tumor. \n\n**Note 5**: Codes 600-650 and 700-750are used for contiguous extension from the site of origin. Except for intraperitoneal metastases limited to the right lower quadrant (RLQ) of the abdomen for mucinous tumors, discontinuous involvement is coded in CS Mets at DX.\n\n**Note 6**: High-grade dysplasia is not always collected by cancer registries but, if collected, it should be coded 000 or 050.",
- "last_modified" : "2015-05-27T16:19:13.072Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "(Adeno)carcinoma, noninvasive, in a polyp or adenoma", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS (including intramucosal, NOS)", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "110", "Invasive tumor confined to the lamina propria, including lamina propria in the stalk of a polyp", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "120", "Confined to and not through the muscularis mucosae, including muscularis mucosae in the stalk of a polyp.", "VALUE:Tis", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "130", "Confined to head of polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "Confined to stalk of polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor in polyp, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion), including submucosa in stalk of polyp", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded\nStated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Confined to appendix, NOS\nLocalized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS\nWall, NOS", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 470\n\nStated as T3[NOS] with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Extension to:\n Adjacent tissue(s), NOS\n Connective tissue\n Mesenteric fat\n Mesentery \n Mesoappendix\n Pericolic fat", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 4, coded 565 and 570\n\nAdherent to other organs or structures, but no microscopic tumor found in adhesion(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "470", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)\nTumor penetrates to surface of visceral peritoneum", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "510", "For mucinous tumors only:\n Peritoneal involvement confined within right lower quadrant ONLY", "VALUE:T4a", "VALUE:TX", "VALUE:D", "VALUE:D" ], [ "511", "510 + any of (130-160 or 300)\n\nFor mucinous tumors only:\n Peritoneal involvement confined within right lower quadrant plus local extension equivalent to T1", "VALUE:T4a", "VALUE:T1", "VALUE:D", "VALUE:D" ], [ "512", "510 + 200\n\nFor mucinous tumors only:\n Peritoneal involvement confined within right lower quadrant plus local extension equivalent to T2", "VALUE:T4a", "VALUE:T2", "VALUE:D", "VALUE:D" ], [ "513", "510 + (400, 450, 458) \n\nFor mucinous tumors only:\n Peritoneal involvement confined within right lower quadrant plus regional extension equivalent to T3", "VALUE:T4a", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "514", "510 + 500\n\nFor mucinous tumors only:\n Peritoneal involvement confined within right lower quadrant plus regional extension equivalent to T4", "VALUE:T4a", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "550", "500 + (450, 458)", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "560", "Stated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "565", "Adherent to other organs or structures clinically with no microscopic examination \nTumor found in adhesion(s) if microscopic examination performed", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to other organs or structures, NOS", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "Greater omentum\nSmall intestine", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Abdominal wall \nRetroperitoneum (excluding fat) ", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED V0200 \n\nAscending colon:\n Right kidney\n Right ureter\nDescending colon:\n Left kidney\n Left ureter", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "665", "Any of (550, 565 - 650) + any of (510 - 514) ", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "670", "OBSOLETE DATA CONVERTED V0203\nSee code 665\n\n(570-650) + 510", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "675", "OBSOLETE DATA CONVERTED V0203\nSee code 665\n\n(570-650) + 511", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "680", "OBSOLETE DATA CONVERTED V0203\nSee code 665\n\n(570-650) + 512", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "690", "OBSOLETE DATA CONVERTED V0203\nSee code 665\n\n(570-650) + 513", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "Fallopian tube\nOvary\nUterus", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "Adrenal (suprarenal) gland\nBladder\nDiaphragm\nFistula to skin\nGallbladder\nOther segment(s) of colon/rectum via serosa", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Kidney\nLiver\nUreter\nOther contiguous extension", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Any of (565-800) + 510\n\nFor mucinous tumors only:\n Regional extension characterized as T4b plus peritoneal involvement confined within right lower quadrant", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "Stated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "900", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfh.json
deleted file mode 100644
index 1509d6872..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfh.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for gastrointestinal stromal tumors (GIST). Any case with a CS Extension code of 000 is mapped to TX for AJCC 7 stage and in situ Summary Stage.\n\n**Note 2**: Ignore intraluminal extension to adjacent segment(s) of colon; code depth of invasion or extra-appendiceal spread as indicated.\n\n**Note 3**: The assignment of T categories for gastrointestinal stromal tumors (GISTs) is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 170, 210, 250, and 270 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 150 only if GIST is described as arising in a polyp. Do not use this code for GIST described as arising in the wall of the appendix and extending into the lumen with a polypoid appearance.\n\n**Note 5**: Use code 300 for localized cases only if no information is available to assign a more specific code.\n\n**Note 6**: Use code 570 for tumor with macroscopic adhesions to other organs or structures and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesion(s) upon microscopic examination, use lower codes to describe the microscopically confirmed depth of tumor invasion for these cases (excluding adherence to liver, see Note 7).\n\n**Note 7**: Adherence to the liver capsule is not considered distant metastasis. Use code 570 for any adherence to the liver capsule.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.121Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp or adenoma, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasive tumor confined to mucosa, NOS (including intramucosal, NOS)", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nLamina propria, including lamina propria in the stalk of a polyp", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to and not through the muscularis mucosae, including muscularis mucosae in the stalk of a polyp", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to head of polyp, NOS", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nConfined to stalk of polyp, NOS", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "150", "Invasive tumor in polyp, NOS", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "155", "Tumor confined to muscular wall", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "160", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades submucosa (superficial invasion), including submucosa in the stalk of a polyp", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "165", "Tumor invades through submucosa and muscularis mucosae to involve mucosa", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 155 and 165\n\nMuscularis propria invaded", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "270", "Stated as T4 with no other information on extension", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Confined to appendix, NOS\nLocalized, NOS", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS\nWall, NOS", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA CONVERTED V0203\nSee code 250\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "420", "OBSOLETE DATA CONVERTED V0203 See code 458 Fat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Extension to:\n Adjacent tissue(s), NOS\n Connective tissue\n Mesenteric fat\n Mesentery \n Mesoappendix\n Pericolic fat", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 6 and code 570\n\nAdherent to other organs or structures, but no microscopic tumor found in adhesion(s)", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 270\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "500 + (420 and or 450) ", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "560", "Invasion of/through serosa with invasion of/through mucosa", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to liver capsule\nAdherent to other organs or structures, NOS", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Greater omentum\nSmall intestine", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "Abdominal wall \nRetroperitoneum (excluding fat)", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED V0200\n\nAscending colon:\nRight kidney\nRight ureter\nDescending colon:\nLeft kidney\nLeft ureter", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "700", "Fallopian tube\nOvary\nUterus", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "Adrenal (suprarenal) gland\nBladder\nDiaphragm\nFistula to skin\nGallbladder\nOther segment(s) of colon via serosa", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "Other contiguous extension including:\n Kidney\n Liver\n Ureter", "JUMP:extension_size_ajcc7_xet", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfi.json
deleted file mode 100644
index 43ae1968a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfi.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for Neuroendocrine Tumors (NET) of the colon. CS Extension code 000 is mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 2**: Ignore intraluminal extension to adjacent segment(s) of colon/rectum or to the ileum from the cecum; code depth of invasion or extracolonic spread as indicated.\n\n**Note 3**: The assignment of the T1 categories for NETs of the colon/rectum is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension,. Use codes 170, 180, 190, 210, 410, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign a more specific code.\n\n**Note 5**: Use code 570 for tumor with macroscopic adhesions to other organs or structures and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesions upon microscopic examination, use lower codes to describe the microscopically confirmed depth of tumor invasion for these cases.",
- "footnotes" : "- For CS Extension codes 100-190 and 300 ONLY, the T category for AJCC7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.178Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp or adenoma, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS including intramucosal, NOS", "JUMP:extension_size_ajcc7_xkg", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria, including lamina propria in the stalk of a polyp", "JUMP:extension_size_ajcc7_xkg", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "120", "Confined to and not through the muscularis mucosae, including muscularis mucosae in the stalk of a polyp.", "JUMP:extension_size_ajcc7_xkg", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nConfined to head of polyp, NOS", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nConfined to stalk of polyp, NOS", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nInvasive tumor in polyp, NOS", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion), including submucosa in the stalk of a polyp", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1a with no other information on extension", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "180", "Stated as T1b with no other information on extension", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "190", "Stated as T1 [NOS] with no other information on extension", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS \nConfined to colon, NOS", "JUMP:extension_size_ajcc7_xkg", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nThrough muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "Extension to:\n All colon sites:\n Adjacent tissue(s), NOS\n Connective tissue\n Mesenteric fat\n Mesentery \n Mesocolon\n Pericolic fat\n Ascending and descending colon:\n Retroperitoneal fat \n Transverse colon/flexures:\n Gastrocolic ligament\n Greater omentum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 5, code 570\n\nAdherent to other organs or structures, but no microscopic tumor found in adhesion(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, NOS with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "550", "500 + (450, 458)\n\nInvasion of/through serosa with extension to tissues listed in code 450 or to fat", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to other organs or structures, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "All colon sites:\n Small intestine\nCecum:\n Greater omentum\nAscending colon:\n Greater omentum\n Liver, right lobe\nTransverse colon and flexures:\n Gallbladder/bile ducts\n Kidney\n Liver\n Pancreas\n Spleen\n Stomach\nDescending colon:\n Greater omentum\n Pelvic wall\n Spleen\nSigmoid colon:\n Greater omentum\n Pelvic wall", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "All colon sites:\n Abdominal wall \n Retroperitoneum (excluding fat) ", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "Ascending colon:\n Right kidney\n Right ureter\nDescending colon:\n Left kidney\n Left ureter", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Cecum, ascending, descending and sigmoid colon:\n Fallopian tube\n Ovary\n Uterus", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "All colon sites unless otherwise stated above:\n Adrenal (suprarenal) gland\n Bladder\n Diaphragm\n Fistula to skin\n Gallbladder\n Other segment(s) of colon via serosa", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension:\n Cecum:\n Kidney\n Liver\n Ureter\n Transverse colon and flexures:\n Ureter\n Sigmoid colon:\n Cul de sac (rectouterine pouch)\n Ureter\nOther contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfj.json
deleted file mode 100644
index 11040704c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfj.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for Neuroendocrine Tumors (NET)) of the rectum/rectosigmoid. CS Extension code 000 is mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 2**: For rectosigmoid, ignore intraluminal extension to adjacent segment(s) of colon and rectum; code depth of invasion or rectosigmoidal spread as indicated.\n\n**Note 3**: The assignment of the T1 categories for NETs of the colon/rectum is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use code 170, 180, 190, 210, 410, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign a more specific code.\n\n**Note 5**: Use code 570 for tumor with macroscopic adhesions to other organs or structures and for pathologically confirmed tumor in adhesions. However, if no tumor is present in adhesions upon microscopic examination, use lower codes to describe the microscopically confirmed depth of tumor invasion for these cases.",
- "footnotes" : "- For CSExtension codes 000-190 and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.234Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp or adenoma, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS (including intramucosal, NOS)", "JUMP:extension_size_ajcc7_xkh", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria, including lamina propria in the stalk of a polyp", "JUMP:extension_size_ajcc7_xkh", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "120", "Confined to and not through the muscularis mucosae, including muscularis mucosae in the stalk of a polyp.", "JUMP:extension_size_ajcc7_xkh", "VALUE:Tis", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nConfined to head of polyp, NOS", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nConfined to stalk of polyp, NOS", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nInvasive tumor in polyp, NOS", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Submucosa (superficial invasion), including submucosa in the stalk of a polyp", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "165", "For rectum:\n Intraluminal extension to rectosigmoid\n Intraluminal extension to anal canal/anus", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:RE", "VALUE:L" ], [ "170", "Stated as T1a with no other information on extension", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "180", "Stated as T1b with no other information on extension", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "190", "Stated as T1 [NOS] with no other information on extension", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS \nConfined to rectum, NOS", "JUMP:extension_size_ajcc7_xkh", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Extension through wall, NOS\nInvasion through muscularis propria or muscularis, NOS\nNon-peritonealized pericolic tissues invaded\nPerimuscular tissue invaded\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "405", "(200 or 400) +165", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:L" ], [ "410", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "OBSOLETE DATA RETAINED AND REVIEWED V0203 \nSee codes 165, 405, 455, and 610\n\nAdjacent (connective) tissue:\n For all sites:\n Perirectal fat\n For rectosigmoid:\n Mesentery (including mesenteric fat, mesocolon)\n Pericolic fat\n For rectum:\n Extension to anus\n Rectovaginal septum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "455", "Adjacent (connective) tissue:\n For all sites:\n Perirectal fat\n For rectosigmoid:\n Mesentery (including mesenteric fat, mesocolon)\n Pericolic fat\n For rectum:\n Rectovaginal septum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee Note 5, code 570\n\nAdherent to other organs or structures, but no microscopic tumor found in adhesion(s)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, NOS with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) (visceral peritoneum)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 555, 610\n\n(500) with [(420 or (450)]", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "555", "500 + (165, 405, 455, or 458)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "570", "Adherent to other organs or structures, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA CONVERTED V0203\nSee code 610\n\nRectosigmoid:\n Cul de sac (rectouterine pouch)\n Pelvic wall\n Small intestine\nRectum:\n Bladder for males only\n Cul de sac (rectouterine pouch)\n Ductus deferens\n Pelvic wall\n Prostate\n Rectovesical fascia for male only\n Seminal vesicle(s)\n Skeletal muscle of pelvic floor\n Vagina", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "610", "For all sites:\n Cul de sac (rectouterine pouch)\n Pelvic wall\nFor rectosigmoid:\n Pelvic plexuses\n Small intestine\nFor rectum:\n Anus (excluding intraluminal extension)\n Bladder for males only\n Ductus deferens\n Prostate\n Rectovesical fascia for males only\n Seminal vesicle(s)\n Skeletal muscle of pelvic floor\n Vagina", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "For rectosigmoid:\n Bladder\n Colon via serosa\n Fallopian tube(s)\n Ovary(ies)\n Prostate\n Ureter(s)\n Uterus\nFor rectum:\n Bladder for females only\n Bone(s) of pelvis\n Urethra\n Uterus", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension including:\n For all sites:\n Other segments of colon via serosa\n For rectosigmoid:\n Skeletal muscles of pelvic floor\n Vagina\n For rectum:\n Sacral plexus\n Sacrum\n Ovary(ies)\n Perineum, perianal skin", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfk.json
deleted file mode 100644
index 8b5639189..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfk.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For this schema, AJCC defines Tis as carcinoma in situ/dysplasia (tumor size less than 0.5mm), confined to mucosa. Neuroendocrine tumors (NET) stated to be in situ, noninvasive, or confined to mucosa are classified as Tis. \"Dysplasia\" alone is generally not reportable in cancer registries but, if a registry does collect it, code 000 should be used.\n\n**Note 2**: Intraluminal or intramural extension to esophagus and duodenum is classified by the depth of greatest invasion. For extension to esophagus or duodenum via serosa, see code 600. \n\n**Note 3**: The assignment of the T1 category for NETs of the stomach is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 170, 390, 480, or 810 as appropriate to code CS Extension based on a statement of T when no other information is available.\n\n**Note 4**: Use code 300 for localized tumor only if no information is available to assign code 100, 110, 120, 160. 170, 200, 390, or 400.",
- "footnotes" : "- For CS Extension codes 110-170 and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.299Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive\nDysplasia\nTumor size less than 0.5 millimeters (mm)", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Tumor confined to mucosa, NOS including intramucosal, NOS", "VALUE:Tis", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria, including lamina propria in a polyp ", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Invades muscularis mucosae, including muscularis mucosae in a polyp", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160 \n\nConfined to head of polyp\nExtension to stalk", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203 \nSee codes 110, 120,160\n\nConfined to stalk of polyp", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nTumor in polyp, NOS", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion), including submucosa in a polyp", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Invades into but not through muscularis propria", "VALUE:T2", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS\nImplants inside stomach", "JUMP:extension_size_ajcc7_xey", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "340", "OBSOLETE DATA CONVERTED V0203\nSee code 170\n\nStated as T1, NOS with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "350", "OBSOLETE DATA RETAINED V0200\n\nLinitis plastica (see Note 2) and no other information regarding extension is available.", "ERROR:", "VALUE:T2a", "VALUE:RE", "VALUE:L" ], [ "390", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "400", "Invasion through muscularis propria or muscularis, NOS\nExtension through wall, NOS\nPerimuscular tissue invaded\nSubserosa /(sub)serosal fat penetrated", "VALUE:T3", "VALUE:T2b", "VALUE:L", "VALUE:L" ], [ "450", "Extension to adjacent (connective) tissue \nWITHOUT perforation of visceral peritoneum:\n Gastric artery\n Ligaments: \n Gastrocolic\n Gastrohepatic\n Gastrosplenic\n Omentum, NOS:\n Greater\n Lesser\n Perigastric fat", "VALUE:T3", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "480", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "490", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, [NOS] with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "500", "Invasion of/through serosa (mesothelium) \n(tunica serosa) (visceral peritoneum)\nIncluding perforation of visceral peritoneum covering the gastric ligaments or the omentum \nWITHOUT invasion of adjacent structures", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "500 + 450\n\nInvasion of tissues in code 500 plus extension to structures in code 450", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 610, 650\n\nDiaphragm\nDuodenum via serosa or NOS\nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon/mesocolon (including flexures)\nCeliac axis\nAorta", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "Diaphragm\nDuodenum via serosa or NOS\nEsophagus via serosa\nIleum\nJejunum\nLiver\nPancreas\nSmall intestine, NOS\nSpleen\nTransverse colon/mesocolon (including flexures)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Aorta\nCeliac axis", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "700", "Abdominal wall\nAdrenal gland\nKidney\nRetroperitoneum", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfl.json
deleted file mode 100644
index 6a9aac35e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfl.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Adenosarcomas of the corpus uteri were not staged in AJCC 6.\n\n**Note 2**: When both FIGO stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage.\n\n**Note 3**: FIGO and AJCC 7 stage do not include Tis for this site and histology. Any cases with a CS Extension code of 000 will derive TX for AJCC 7 staging, though In Situ will be derived Summary Stage.\n\n**Note 4**: FIGO Stage IV, NOS is assigned based on tumor extension and/or metastasis. Code CS Extension based on a physician's statement of FIGO Stage IV, NOS only if it is known that the stage value is assigned because of tumor extension.\n\n**Note 5**: Positive cytology should be reported in CS Site-Specific Factor 2. It is not a staging element for AJCC 7 staging, but is a staging element for Summary Stage. Since \"cancer cells in ascites or in peritoneal washings\" was not specifically categorized in the 1977 Summary Staging Guide, is unclear to which stage previous cases may have been coded in that staging system.\n\n**Note 6**: According to the AJCC, extension to the bowel or bladder mucosa must be proven by biopsy in order to rule out bullous edema.",
- "footnotes" : "- For CS Extension codes 100-110, 115-120, 125-130, 135-140, and 160-400 ONLY. The SS77 and SS2000 stages are assigned based on the value of CS Extension and peritoneal cytology status coded in CS-Site Specific Factor 2 as shown in the extra table Extension Cytology Summary Stage Table.",
- "last_modified" : "2015-05-27T16:19:13.351Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive, preinvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive cancer confined to corpus uteri ", "VALUE:T1NOS", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "110", "Confined to endometrium\n(Glandular, stromal or both)", "VALUE:T1a", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "113", "Confined to endocervix \n(Glandular, stromal, or both)", "VALUE:T1a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "115", "FIGO Stage IA", "VALUE:T1a", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "120", "Tumor invades less than one-half of myometrium\nInvasion of inner half of myometrium", "VALUE:T1b", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "123", "Invasion of less than one-half of myometrium\nWITH involvement of endocervix", "VALUE:T1b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "125", "FIGO Stage IB", "VALUE:T1b", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "130", "Tumor invades one-half or more of myometrium\nInvasion of outer half of myometrium", "VALUE:T1c", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "133", "Invasion of one-half or more of myometrium \nWITH involvement of endocervix", "VALUE:T1c", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "135", "FIGO Stage IC", "VALUE:T1c", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "140", "Invasion of myometrium, NOS", "VALUE:T1NOS", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "143", "Invasion of myometrium, NOS\nWITH involvement of endocervix", "VALUE:T1NOS", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "160", "Tunica serosa of the visceral peritoneum (serosa covering the corpus)", "VALUE:T1NOS", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "170", "FIGO Stage I [NOS]", "VALUE:T1NOS", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "400", "Localized, NOS", "VALUE:T1NOS", "VALUE:NA", "JUMP:extension_cytology_summary_stage_xkl", "JUMP:extension_cytology_summary_stage_xkl" ], [ "500", "Cervix uteri, NOS, but not beyond uterus", "VALUE:T1NOS", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "510", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 113, 123, 133, and 143\n\nEndocervical glandular involvement only", "VALUE:T1a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "520", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 113, 123, 133, and 143\n\nCervical stromal invasion", "VALUE:T1a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "550", "Adnexal involvement, NOS\nExtension or metastasis within true pelvis:\n Adnexa\n Fallopian tube(s)\n Ligaments:\n Broad\n Round\n Uterosacral\n Ovary(ies)\n Parametrium\n Visceral peritoneum of pelvic organs excluding serosa of corpus uteri", "VALUE:T2a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 160, 550, 655, 665, and 688\n\nAdnexal involvement, NOS\nExtension or metastasis within true pelvis:\n Adnexa\n Fallopian tube(s)\n Ligaments: Broad, round, uterosacral\n Ovary(ies)\n Parametrium\n Pelvic serosa\n Tunica serosa (parietal lining of the pelvic or abdominal cavity)", "VALUE:T2a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "605", "FIGO Stage IIA", "VALUE:T2a", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED V0200\n See Note 4 and CS Site-Specific Factor 2 \n\nCancer cells in ascites\nCancer cells in peritoneal washings FIGO Stage IIIA", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA CONVERTED V0203\nSee code 645\n\nUreter \nVulva", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "640", "Extension or metastasis to vagina", "VALUE:T2b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "645", "Extension or metastasis to:\n Ureter\n Vulva", "VALUE:T2b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 655 and 662\n\nExtension or metastasis to pelvic wall(s)\nDescribed clinically as \"frozen pelvis\", NOS", "VALUE:T2b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "655", "Extension or metastasis to:\n Pelvic wall(s)\n Parietal serosa of pelvic cavity", "VALUE:T2b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 705 and 708\n\nExtension or metastasis to:\n Bladder wall\n Bladder, NOS excluding mucosa\n Rectal wall\n Rectum, NOS excluding mucosa ", "VALUE:T4", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "662", "Described clinically as \"frozen pelvis\", NOS", "VALUE:T2b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "663", "(655 or 662) + (640 or 645)", "VALUE:T2b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "665", "Extension or metastasis to:\n Cul de sac (rectouterine pouch)", "VALUE:T2b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "670", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 663 and 705\n\n[(650) or (660)] and [(620) or (640)]", "VALUE:T2b", "VALUE:NA", "VALUE:D", "VALUE:RE" ], [ "675", "FIGO Stage IIB", "VALUE:T2b", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "680", "OBSOLETE DATA CONVERTED V0203\nSee code 683\n\nFIGO Stage II [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "682", "Extension beyond uterus, within pelvis, NOS", "VALUE:T2NOS", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "683", "FIGO Stage II [NOS]", "VALUE:T2NOS", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "685", "OBSOLETE DATA REVIEWED V0203\nSee codes 665 and 688\n\nContiguous extension to abdominal tissues, one of the following sites:\nAbdominal serosa (peritoneum)\nCul de sac\nSigmoid colon\nSmall intestine\nOther abdominal tissues", "VALUE:T3a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "688", "Infiltration of abdominal tissues, one of the following sites:\n Abdominal serosa (visceral or parietal peritoneum of abdomen)\n Sigmoid colon\n Small intestine\n Other abdominal structures", "VALUE:T3a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "690", "FIGO Stage IIIA", "VALUE:T3a", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "692", "OBSOLETE DATA REVIEWED V0203\nSee codes 665 and 693\n\nContiguous extension to abdominal tissues, more than one site:\nAbdominal serosa (peritoneum)\nCul de sac\nSigmoid colon\nSmall intestine\nOther abdominal tissues", "VALUE:T3b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "693", "Infiltration of abdominal tissues in code 688, more than one site", "VALUE:T3b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "694", "FIGO Stage IIIB", "VALUE:T3b", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "696", "OBSOLETE DATA CONVERTED V0203\nSee code 699\n\nFIGO Stage III [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "698", "Abdominal tissues involvement, NOS", "VALUE:T3NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "699", "FIGO Stage III [NOS] based on extension", "VALUE:T3NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA CONVERTED V0200\nSee code 710\n\nExtension to bowel mucosa or\n bladder mucosa (excluding bullous edema)\nFIGO Stage IVA\nFIGO Stage IV, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "705", "Invasion of:\n Bladder wall\n Bladder, NOS excluding mucosa\n Rectal wall\n Rectum, NOS excluding mucosa", "VALUE:T4", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "708", "705 + (688, 693, or 698)\n\nInvasion of organs in code 705 plus infiltration of any abdominal tissues", "VALUE:T4", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "710", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 715, 720, and 730\n\nExtension to bowel mucosa or\nbladder (excluding bullous edema)\n\nNote: On conversion of code 700 to 710, code 710 also included FIGO Stage IVA, FIGO Stage IV, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "715", "Extension to bowel mucosa or bladder (excluding bullous edema)", "VALUE:T4", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "720", "FIGO Stage IVA", "VALUE:T4", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "730", "FIGO Stage IV [NOS] based on extension", "VALUE:T4", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 665, 688, 693, and 850\n\nFurther contiguous extension\n Abdominal serosa (peritoneum)\n Cul de sac\n Sigmoid colon\n Small intestine\n(See code 685 and 693 if number of involved sites is reported)", "VALUE:T3NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "850", "Further contiguous extension", "VALUE:T3NOS", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfm.json
deleted file mode 100644
index 34bd8e331..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfm.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: When both FIGO stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage.\n\n**Note 2**: FIGO and AJCC 7 stage do not include Tis for this site and histology. Any cases with a CS Extension code of 000 will derive TX for AJCC 7 staging, though Tis and In Situ will be derived for AJCC 6 staging and Summary Stage.\n\n**Note 3**: The assignment of T1a and T1b categories for sarcomas of corpus uteri is based on tumor size.\n\n**Note 4**: FIGO Stage IV, NOS is assigned based on tumor extension and/or metastasis. Code CS Extension based on a physician's statement of FIGO Stage IV, NOS only if it is known that the stage value is assigned because of tumor extension.\n\n**Note 5**: Positive cytology is reported separately (CS Site Specific Factor 2), and is not included as a staging element for AJCC 7 staging. It is included as a staging element for AJCC 6 and Summary Stage. Since \"cancer cells in ascites or in peritoneal washings\" was not specifically categorized in the 1977 Summary Staging Guide, it is unclear to which stage pre-2001 cases may have been coded in that staging system.",
- "footnotes" : "- For CS Extension codes 100-110, 116-120, 126- 400, and 510-530 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in the Extension Size AJCC 7 Table for this schema. \n- For CS Extension codes 100-110, 116-120, 126-400, and 510-540 ONLY. If it is a CS Version 1 case (CS Version Input Original equals 01XXXX and Year of Diagnosis is before 2010), the T category for AJCC 6 staging is assigned based on the value of CS Extension and pleural cytology status coded in CS Site-Specific Factor 2 as shown in the Extension Cytology AJCC 6 Table CSv1. If it is a CS Version 2 case (CS Version Input Original equals 02XXXX) or Year of Diagnosis is greater than 2009), the T category for AJCC 6 staging is assigned based on the value of CS Extension and pleural cytology status coded in CS Site-Specific Factor 2 as shown in the Extension Cytology AJCC 6 Table CSv2.\n- For CS Extension codes 100-400, 530, and 540 ONLY, the SS77 and SS2000 stages are assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site Specific Factor 2 as shown in the extra table Extension Cytology Summary Stage Table.",
- "last_modified" : "2015-05-27T16:19:13.410Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive, preinvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive cancer tumor confined to corpus uteri", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "110", "Confined to endometrium (stroma)", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "114", "OBSOLETE DATA REVIEWED V0203\nSee codes 100, 110, 116, 120, 130-400, 510-530\n\nTumor 5 cm or less in greatest dimension", "VALUE:T1a", "VALUE:T2NOS", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "116", "FIGO Stage IA", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "120", "Tumor invades less than one-half of myometrium\nInvasion of inner half of myometrium", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "124", "OBSOLETE DATA REVIEWED V0203\nSee code 100, 110, 120, 126-400, 510-530\n\nTumor greater than 5 cm", "VALUE:T1b", "VALUE:T2NOS", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "126", "FIGO Stage IB", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "130", "Tumor invades one-half or more of myometrium\nInvasion of outer half of myometrium\n (See Note 3)", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "140", "Invasion of myometrium, NOS", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "160", "Tunica serosa of the visceral peritoneum (serosa covering the corpus)", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "400", "Localized, NOS", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "500", "OBSOLETE DATA CONVERTED V0203\nSee code 523\n\nCervix uteri, NOS, but not beyond uterus", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "510", "Endocervical glandular involvement only", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "VALUE:RE", "VALUE:RE" ], [ "520", "Cervical stromal invasion", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "VALUE:RE", "VALUE:RE" ], [ "523", "Cervix uteri, NOS, but not beyond uterus", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "VALUE:RE", "VALUE:RE" ], [ "530", "FIGO Stage I [NOS]", "JUMP:extension_size_ajcc7_xkr", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "540", "Tumor limited to uterus, NOS", "VALUE:T1NOS", "JUMP:determine_correct_table_for_ajcc6_t_ns7", "JUMP:extension_cytology_summary_stage_xkp", "JUMP:extension_cytology_summary_stage_xkp" ], [ "550", "Adnexal involvement, NOS\nExtension or metastasis beyond uterus within pelvis:\n Adnexa\n Fallopian tube(s)\n Ligaments:\n Broad\n Round\n Uterosacral\n Ovary(ies)\n Parametrium\n Visceral peritoneum of pelvic organs excluding serosa of corpus uteri", "VALUE:T2a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 160, 550, 655, 665, and 688\n\nAdnexal involvement, NOS\nExtension or metastasis within true pelvis:\n Adnexa\n Fallopian tube(s)\n Ligaments: Broad, round, uterosacral\n Ovary(ies)\n Parametrium\n Pelvic serosa\n Tunica serosa (parietal lining of the pelvic or abdominal cavity)", "VALUE:T2a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "605", "FIGO Stage IIA", "VALUE:T2a", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED V0200 \nSee Note 4 and CS Site Specific Factor 2\n\nCancer cells in ascites\nCancer cells in peritoneal washings \nFIGO Stage IIIA", "ERROR:", "VALUE:T3a", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA CONVERTED V0203 \nSee code 645\n\nUreter \nVulva", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "640", "Extension or metastasis to vagina", "VALUE:T2b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "645", "Extension to :\n Ureter\n Vulva", "VALUE:T2b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 655 and 662\n\nExtension or metastasis to pelvic wall(s)\nDescribed clinically as \"frozen pelvis\", NOS", "VALUE:T2b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "655", "Extension or metastasis to:\n Pelvic wall(s)\n Parietal serosa of pelvic cavity", "VALUE:T2b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA CONVERTED V0203\nSee code 705\n\nExtension or metastasis to:\n Bladder wall\n Bladder, NOS excluding mucosa\n Rectal wall\n Rectum, NOS excluding mucosa", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "662", "Described clinically as \"frozen pelvis\", NOS", "VALUE:T2b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "663", "(655 or 662) + (640 or 645)", "VALUE:T2b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "665", "Extension or metastasis to:\n Cul de sac (rectouterine pouch)", "VALUE:T2b", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "670", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 663 and 705\n\n[(650) or (660)] and [(620) or (640)]", "VALUE:T2b", "VALUE:T3b", "VALUE:D", "VALUE:RE" ], [ "675", "FIGO Stage IIB", "VALUE:T2b", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "680", "OBSOLETE DATA CONVERTED V0203\nSee code 683\n\nFIGO Stage II [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "682", "Extension beyond uterus, within pelvis, NOS", "VALUE:T2NOS", "VALUE:T3NOS", "VALUE:RE", "VALUE:RE" ], [ "683", "FIGO Stage II [NOS]", "VALUE:T2NOS", "VALUE:T3NOS", "VALUE:RE", "VALUE:RE" ], [ "685", "OBSOLETE DATA REVIEWED V0203\nSee codes 665 and 688\n\nContiguous extension to abdominal tissues, one of the following sites:\nAbdominal serosa (peritoneum)\nCul de sac\nSigmoid colon\nSmall intestine\nOther abdominal tissues", "VALUE:T3a", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "688", "Infiltration of abdominal tissues, one of the following sites:\n Abdominal serosa (visceral or parietal peritoneum of abdomen)\n Sigmoid colon\n Small intestine\n Other abdominal tissues", "VALUE:T3a", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "690", "FIGO Stage IIIA", "VALUE:T3a", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "692", "OBSOLETE DATA REVIEWED V0203\nSee codes 665 and 693\n\nContiguous extension to abdominal tissues, more than one site:\nAbdominal serosa (peritoneum)\nCul de sac\nSigmoid colon\nSmall intestine\nOther abdominal tissues", "VALUE:T3b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "693", "Infiltration of abdominal tissues in code 688, more than one site", "VALUE:T3b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "694", "FIGO Stage IIIB", "VALUE:T3b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "696", "OBSOLETE DATA CONVERTED V0203\nSee code 699\n\nFIGO Stage III [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "698", "Abdominal tissues involvement, NOS", "VALUE:T3NOS", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "699", "FIGO Stage III [ NOS]", "VALUE:T3NOS", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA CONVERTED V0200\n See code 710\n\nExtension to bowel mucosa or\n bladder mucosa (excluding bullous edema)\nFIGO Stage IVA\nFIGO Stage IV, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "705", "Invasion of:\n Bladder wall\n Bladder, NOS excluding mucosa\n Rectal wall\n Rectum, NOS excluding mucosa", "VALUE:T4", "VALUE:T3b", "VALUE:RE", "VALUE:RE" ], [ "708", "705 + (688, 693, or 698)\n\nInvasion of organs in code 705 plus infiltration of any abdominal tissues", "VALUE:T4", "VALUE:T3b", "VALUE:D", "VALUE:D" ], [ "710", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 715, 720, 730\n\nExtension to bowel mucosa or\nbladder mucosa (excluding bullous edema)\n\nNote: On conversion of code 700 to 710, code 710 also included FIGO Stage IVA, FIGO Stage IV, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "715", "Extension to bowel mucosa or bladder (excluding bullous edema)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "720", "FIGO Stage IVA", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "730", "FIGO Stage IV [NOS]", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 665, 688, 693, and 850\n\nFurther contiguous extension\n Abdominal serosa (peritoneum)\n Cul de sac\n Sigmoid colon\n Small intestine\n(See codes 685 and 693 if number of involved sites is reported)", "VALUE:T3NOS", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfn.json
deleted file mode 100644
index aa7433ea2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfn.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for gastrointestinal stromal tumors (GIST). Any case with a CS Extension code of 000 is mapped to TX for AJCC 7 stage and in situ Summary Stage.\n\n**Note 2**: Ignore intraluminal extension to adjacent segment(s) of esophagus or to cardia of stomach, and code depth of invasion or extra-esophageal spread as indicated.\n\n**Note 3**: The assignment of T categories for gastrointestinal stromal tumors (GISTs) is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 170, 210, 250, and 270 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-810 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.467Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intrapethelial, noninvasive", "VALUE:TX", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvasive tumor confined to mucosa, NOS (includes intramucosal, NOS)", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades lamina propria", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "120", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 155 and 165\n\nInvades muscularis mucosae", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "155", "Tumor confined to muscular wall", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "160", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSEE codes 155 and 165\n\nInvades submucosa", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "165", "Tumor invades through submucosa and muscularis mucosae to involvew mucosa", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 155 and 165\n\nMuscularis propria invaded", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "250", "Stated as T3 with no other information on extension ", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "270", "Stated as T4 with no other information on extension", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adventitia and/or soft tissue invaded\nEsophagus described as fixed", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "450", "OBSOLETE DATA CONVERTED V0203\nSee code 250\n\nStated as T3, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "560", "Invasion into adventitia with invasion of/through mucosa", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSee codes 610 and 730\n\nTumor invades adjacent structures\nCervical esophagus:\n Blood vessel(s): \n Carotid artery \n Jugular vein \n Subclavian artery \n Thyroid gland \nIntrathoracic, upper or mid-portion, esophagus:\n Blood vessel(s), major:\n Aorta \n Azygos vein \n Pulmonary artery/vein \n Vena cava \n Carina \n Diaphragm \n Main stem bronchus \n Trachea \nIntrathoracic, lower portion (abdominal), esophagus:\n Blood vessel(s): \n Aorta \n Gastric artery/vein \n Vena cava \n Diaphragm, not fixed, or NOS \n Stomach, cardia (via serosa)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "610", "Tumor invades adjacent structures:\n For cervical esophagus:\n Hypopharynx\n Jugular vein\n Larynx\n Thyroid gland \n For intrathoracic, upper or mid-portion, esophagus:\n Blood vessel(s), major:\n Azygos vein\n Diaphragm \n For intrathoracic, lower portion (abdominal), esophagus:\n Blood vessel(s), major:\n Gastric artery/vein\n Diaphragm, not fixed;diaphragm, NOS\n Stomach, cardia (via serosa)\n For intrathoracic esophagus, NOS:\n Pleura", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\nSee codes 610, 680, and 730\n\nCervical esophagus:\n Carina \n Cervical vertebra(e) \n Hypopharynx \n Larynx \n Trachea \nIntrathoracic esophagus:\n Lung via bronchus \n Mediastinal structure(s), NOS\n Pleura\n Rib(s) \n Thoracic vertebra(e)", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "660", "For thoracic/middle esophagus:\n Pericardium", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "680", "For cervical/upper esophagus:\n Pleura \nFor abdominal/lower esophagus:\n Diaphragm fixed", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA CONVERTED V0203\nSee code 270\n\nStated as T4 [NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "730", "Tumor invades adjacent structures:\nFor cervical esophagus:\n Blood vessel(s), major: \n Carotid artery \n Subclavian artery\n Carina \n Cervical vertebra(e) \n Trachea \nFor intrathoracic, upper or mid-portion, esophagus:\n Blood vessel(s), major:\n Aorta \n Pulmonary artery/vein \n Vena cava \n Carina \n Main stem bronchus \n Trachea \nFor intrathoracic, lower portion (abdominal), esophagus:\n Blood vessel(s), major: \n Aorta \n Vena cava \nFor intrathoracic esophagus, NOS:\n Adjacent Rib(s) \n Lung via bronchus\n Mediastinal structure(s), NOS \n Thoracic vertebra(e)", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "740", "730 + 660\n\nAny structure in code 730 involving thoracic/middle esophagus plus pericardium", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "745", "730 + 680\n\nAny structure in code 730 involving cervical/upper esophagus plus pleura\nOR\nAny structure in code 730 involving abdominal /lower esophagus plus fixation of diaphragm", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "750", "For cervical/upper esophagus:\n Lung\n Main stem bronchus", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "780", "OBSOLETE DATA RETAINED V0200\nSee code 660\n\nThoracic/middle esophagus:\n Pericardium", "ERROR:", "VALUE:NA", "VALUE:RE", "VALUE:D" ], [ "800", "OBSOLETE DATA RETAINED V0200\nSee codes 680 and 750\n\nFurther contiguous extension:\nCervical/upper esophagus:\n Lung\n Main stem bronchus\n Pleura\nAbdominal/lower esophagus:\n Diaphragm fixed", "ERROR:", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Further contiguous extension", "JUMP:extension_size_ajcc7_xfd", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfo.json
deleted file mode 100644
index 890318fb4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfo.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for Neuroendocrine Tumors (NET) of the ampulla of Vater. Extension code 000 is mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 2**: The assignment of the T1 and T2 categories for NETs of ampulla of Vater is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 310, 430, 600, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 3**: Use code 300 for localized tumor only if no information is available to assign code 100 or 430.",
- "footnotes" : "- For CS Extension codes 100-430 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.519Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined/limited to ampulla of Vater or extending to sphincter of Oddi", "JUMP:extension_size_ajcc7_xfe", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xfe", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xfe", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "420", "Duodenal wall", "JUMP:extension_size_ajcc7_xfe", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "430", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xfe", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "520", "Pancreas", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "Retroperitoneum\nPeripancreatic soft tissues", "VALUE:T3", "VALUE:T3", "VALUE:D", "VALUE:D" ], [ "600", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Visceral peritoneum (serosa)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "620", "Common bile duct", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "Extrahepatic bile ducts other than common bile duct or sphincter of Oddi", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Extension to other adjacent organs or tissues:\n Blood vessels (major):\n Hepatic artery\n Portal vein\n Gallbladder\n Hepatic flexure\n Lesser omentum\n Liver including porta hepatis\n Stomach, NOS:\n Distal\n Transverse colon", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "750", "Stomach, proximal", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:D" ], [ "760", "(620 to 750) + 550", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "780", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "800", "Further contiguous extension:\n Other adjacent organs", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown extension\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfp.json
deleted file mode 100644
index 4b8655804..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfp.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: AJCC does not include a Tis category for Neuroendocrine Tumors (NET) of the small intestine. CS Extension code 000 is mapped to TX for AJCC stage and in situ for Summary Stage.\n\n**Note 2**: Ignore intraluminal or lateral extension to adjacent segment(s) of small intestine and code depth of invasion or spread outside the small intestine as indicated.\n\n**Note 3**: The nonperitonealized perimuscular tissue is, for jejunum and ileum, part of the mesentery and, for duodenum in areas where serosa is lacking, part of the retroperitoneum.\n\n**Note 4**: The assignment of the T1 category for neuroendocrine tumors (NET) of the small intestine is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 170, 210, 410, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.\n\n**Note 5**: Use code 300 for localized tumor only if no information is available to assign code 100, 110, 120. 160, 170, 200 or 210,",
- "footnotes" : "- For CS Extension codes 100-170, and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size A JCC 7 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.575Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 000\n\n(Adeno)carcinoma in a polyp, noninvasive", "VALUE:TX", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to mucosa, NOS, including intramucosal, NOS", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "110", "Invades lamina propria, including lamina propria in a polyp", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "120", "Confined to and not through the muscularis mucosae, including muscularis mucosae in a polyp", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nConfined to head of polyp", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nConfined to stalk of polyp", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "150", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 110, 120, 160\n\nInvasion of polyp, NOS", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "160", "Invades submucosa (superficial invasion) including submucosa in a polyp", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "170", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria invaded", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "210", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS\nIntraluminal spread to other segments of small intestine or cecum", "JUMP:extension_size_ajcc7_xff", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Invasion through muscularis propria or muscularis, NOS\nExtension through wall, NOS\nSubserosal tissue/(sub)serosal fat invaded\nTransmural, NOS", "VALUE:T3", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "420", "OBSOLETE DATA CONVERTED V0203\nSee code 458\n\nFat, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "450", "OBSOLETE DATA RETAINED V0200\nSee codes 460-470 and 560\n\nAdjacent connective tissue\nMesentery, including mesenteric fat, invaded less than or equal to 2 cm in depth or NOS\nNonperitonealized perimuscular tissue invaded less than or equal to 2 cm in depth or NOS\nRetroperitoneum invaded less than or equal to 2 cm in depth or NOS", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "458", "Fat, NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "460", "OBSOLETE DATA REVIEWED V0203\nSee codes 465, 485\n\nAdjacent connective tissue\nMesentery, including mesenteric fat\nPerimuscular tissue", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "465", "Adjacent connective tissue\nMesentery, including mesenteric fat less than or equal to 2 centimeters (cm) in depth or NOS\nNonperitonealized perimuscular tissue less than or equal to 2 cm in depth or NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "470", "OBSOLETE DATA REVIEWED V0203\nSee codes 475, 488\n\nFor duodenum primary only:\n Retroperitoneum", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "475", "For duodenum primary only:\n Retroperitoneum less than or equal to 2 cm in depth or NOS", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "480", "For duodenum primary only:\n Ampulla of Vater\n Pancreas\n Pancreatic duct", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "485", "Mesentery invaded greater than 2 cm in depth\nNonperitonealized perimuscular tissue invaded greater than 2 cm in depth", "VALUE:T3", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "488", "For duodenum primary only:\n Retroperitoneum invaded greater than 2 cm in depth", "VALUE:T3", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "500", "Invasion of/through serosa(mesothelium)(tunica serosa) (visceral peritoneum)", "VALUE:T4", "VALUE:T4", "VALUE:L", "VALUE:RE" ], [ "550", "OBSOLETE DATA RETAINED V0200\n\n(500) + [(420) or (450)]", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "560", "OBSOLETE DATA CONVERTED V0203\nSee code 565\n\n(500) + [(420) or (460) or (470) or (480)]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "565", "500 + (458, 465, 475, 480, 485, or 488)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSee codes 480 and 610\n\nFor duodenum primary only:\n Ampulla of Vater\n Diaphragm\n Extrahepatic bile ducts\n Gallbladder\n Pancreas\n Pancreatic duct", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "For duodenum primary only:\n Diaphragm\n Extrahepatic bile ducts\n Gallbladder", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "650", "For duodenum primary only:\n Blood vessel(s), major:\n Aorta\n Gastroduodenal artery\n Portal vein\n Renal vein\n Superior mesenteric artery or vein\n Vena cava\n Greater omentum\n Hepatic flexure\n Kidney, NOS\n Kidney, right\n Liver, NOS\n Liver, quadrate lobe\n Liver, right lobe\n Omentum, NOS\n Transverse colon\n Ureter, right\nFor jejunum or ileum primary only:\n Colon, including appendix", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "For duodenum primary only:\n Stomach", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "665", "(610, 650, 660) + (485, 488)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "OBSOLETE DATA RETAINED V0200\n\nFor all small intestine sites:\n Abdominal wall\n Mesentery invaded greater than 2 cm in depth\n Non-peritonealized perimuscular tissue invaded \n greater than 2 cm in depth\n Retroperitoneum invaded greater than 2 cm in depth", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "675", "For all small intestine sites:\n Abdominal wall", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "678", "For jejunum or ileum primary only:\n Retroperitoneum invaded greater than 2cm in depth", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "680", "For all small intestine sites:\n Other segments of the small intestine via serosa", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "690", "OBSOLETE DATA CONVERTED V0203\nSee code 810\n\nStated as T4[NOS] with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "For jejunum or ileum primary only:\n Bladder\n Fallopian tube\n Ovary\n Uterus", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfq.json
deleted file mode 100644
index e48c0f3f2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfq.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Ciliary body and Iris are both included in the ICD-O-3 site code of C69.4, but they are staged with different criteria by AJCC. The Schema Discriminator is used to select the CS schema appropriate for coding extension for melanoma of the ciliary body. Obsolete codes identified for primaries of the iris are found in this schema because melanomas of ciliary body and iris were included in a single schema in CS Version 1.\n\n**Note 2**: Uveal melanomas arise most commonly in the choroid, less frequently in the ciliary body, and least often in the iris. Melanomas of the iris tend to be small, and those arising from or extending to the ciliary body typically are large.\n\n**Note 3**: AJCC does not recognize in situ melanoma of the ciliary body. Any case so coded will be mapped to unknown AJCC stage, in situ Summary Stage.\n\n**Note 4**: The AJCC 7th Edition assigns a T value to combinations of measurements for basal diameter and thickness of tumor divided into four Tumor Size Categories in a charted format. The AJCC 6th Edition assigns T values based on three pairs of measurements for basal diameter and thickness, using the basal diameter for classification when the two measurements do not fit into the defined pairs.\n\n**Note 5**: According to the AJCC, \"In clinical practice the largest tumor basal diameter may be estimated in optic disc diameters (dd) (average: 1 dd = 1.5mm). Tumor thickness may be estimated in diopters (average: 2.5 diopters = 1 mm). Other techniques, such as ultrasonography and fundus photography may provide a more accurate measurement.\n\n**Note 6**: Use codes 160 and 180 if measurements are available to record the largest tumor basal diameter and tumor thickness. Use codes 215-445 only if tumor measurements are not available for coding. Note that code 635, mapped to T4e, is not based on a Tumor Size Category assignment.\n\n**Note 7**: Use codes 245, 295, 345, and 445 only if the Tumor Size Category is the only information available about the tumor.",
- "footnotes" : "- For CS Extension codes 160 and 180, the T for AJCC 7 staging is assigned based on the values of tumor basal diameter, recorded in CS Site-Specific Factor 2, and thickness, recorded in CS Site-Specific Factor 3. Basal diameter and thickness are mapped to Tumor Size Categories in the Tumor Size Category AJCC 7 Table, and the CS Extension codes and Tumor Size Categories are mapped to T in the Extension Size Category AJCC 7 Table.\n- For CS Extension codes 160, 180, 635, and 640, the T for AJCC 6 staging is assigned based on the values of tumor basal diameter, recorded in CS Site-Specific Factor 2, and thickness, recorded in CS Site-Specific Factor 3. Basal diameter and thickness are mapped to tumor size pairs in the Tumor Size Pair AJCC 6 Table, and the CS Extension codes and tumor size pairs are mapped to T in the Extension Size Pair AJCC 6 Table.",
- "last_modified" : "2015-05-27T16:19:13.632Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nConfined to iris, NOS", "ERROR:", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "110", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nLimited to iris not more than 3 clock hours in size,\nWITHOUT melanomalytic glaucoma, or not stated if melanomalytic glaucoma", "ERROR:", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "130", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nLimited to iris more than 3 clock hours in size, \nWITHOUT melanomalytic glaucoma, or not stated if melanomalytic glaucoma", "ERROR:", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "140", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nLimited to iris \nWITH melanomalytic glaucoma", "ERROR:", "VALUE:T1c", "VALUE:L", "VALUE:L" ], [ "160", "Tumor WITHOUT extraocular extension \n(Or extraocular extension not stated)", "JUMP:tumor_size_category_ajcc7_xpk", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:L", "VALUE:L" ], [ "180", "Tumor WITH extraocular extension less than or equal to 5mm in diameter", "JUMP:tumor_size_category_ajcc7_xpk", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:RE", "VALUE:RE" ], [ "210", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.5m or less in greatest height (thickness), not stated if extraocular extension present", "ERROR:", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "215", "Tumor WITHOUT extraocular extension \n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 1\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "220", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness), \nWITHOUT microscopic or macroscopic extraocular extension", "ERROR:", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "230", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.4mm or less in greatest height (thickness), \nWITH microscopic extraocular extension", "ERROR:", "VALUE:T1b", "VALUE:RE", "VALUE:RE" ], [ "235", "Tumor WITH extraocular extension less than or equal to 5 mm in diameter\nAND stated as Tumor Size Category 1\n\nStated as T1d with no other information on extension", "VALUE:T1d", "VALUE:T1b", "VALUE:RE", "VALUE:RE" ], [ "240", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness), \nWITH macroscopic extraocular extension", "ERROR:", "VALUE:T1c", "VALUE:RE", "VALUE:RE" ], [ "245", "Tumor Size Category 1 , NOS\n\nStated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "265", "Tumor WITHOUT extraocular extension \n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 2\n\nStated as T2b with no other information on extension", "VALUE:T2b", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "285", "Tumor WITH extraocular extension less than or equal to 5 mm in diameter\nAND stated as Tumor Size Category 2\n\nStated as T2d with no other information on extension", "VALUE:T2d", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "295", "Tumor Size Category 2 , NOS\n\nStated as T2 [NOS] with no other information on extension", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "315", "Tumor WITHOUT extraocular extension \n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 3\n\nStated as T3b with no other information on extension", "VALUE:T3b", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "335", "Tumor WITH extraocular extension less than or equal to 5mm in diameter\nAND stated as Tumor Size Category 3\n\nStated as T3d with no other information on extension", "VALUE:T3d", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "345", "Tumor Size Category 3 , NOS\n\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "410", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nTumor confluent with or extending into the ciliary body and/or choroid\nWITHOUT melanomalytic glaucoma, or not stated if melanomalytic glaucoma", "ERROR:", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "415", "Tumor WITHOUT extraocular extension \n(Or extraocular extension not stated)\nAND stated as Tumor Size Category 4\n\nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "420", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nTumor confluent with or extending into the ciliary body and/or choroid WITH melanomalytic glaucoma", "ERROR:", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "435", "Tumor WITH extraocular extension less than or equal to 5mm in diameter\nAND stated as Tumor Size Category 4\n\nStated as T4d with no other information on extension", "VALUE:T4d", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "445", "Stated as Tumor Size Category 4 , NOS", "VALUE:T4NOS", "VALUE:T3", "VALUE:L", "VALUE:L" ], [ "510", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness), not stated if extraocular extension present.", "ERROR:", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "520", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness), \nWITHOUT microscopic or macroscopic extraocular extension present.", "ERROR:", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "530", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness), \nWITH microscopic extraocular extension present.", "ERROR:", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "540", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness), \nWITH macroscopic extraocular extension present.", "ERROR:", "VALUE:T2c", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nTumor confluent with or extending into the ciliary body and/or choroid WITH scleral extension, \nWITHOUT melanomalytic glaucoma, or not stated if melanomalytic glaucoma", "ERROR:", "VALUE:T3NOS", "VALUE:L", "VALUE:L" ], [ "610", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nTumor confluent with or extending into the ciliary body and/or choroid \nWITH scleral extension, AND melanomalytic glaucoma", "ERROR:", "VALUE:T3a", "VALUE:L", "VALUE:L" ], [ "635", "Tumor WITH extraocular extension greater than 5mm in diameter\n\nStated as T4e with no other information on extension", "VALUE:T4e", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:RE", "VALUE:RE" ], [ "640", "Stated as T4 [NOS] with no other information on extension", "VALUE:T4NOS", "JUMP:tumor_size_pair_ajcc6_xpl", "VALUE:L", "VALUE:L" ], [ "650", "OBSOLETE DATA RETAINED V0200\nIris moved to separate schema V0200\n\nFOR IRIS PRIMARY ONLY:\nExtraocular extension", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "710", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor more than 16 mm in greatest basal diameter and/or greater than 10 mm in maximum height (thickness ), \nWITHOUT extraocular extension or not stated if extraocular extension present.", "ERROR:", "VALUE:T3NOS", "VALUE:L", "VALUE:L" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor more than 16 mm in greatest basal diameter and/or greater than 10 mm in maximum height (thickness ), \nWITH extraocular extension.", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:T4NOS", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfr.json
deleted file mode 100644
index 570056e0b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfr.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bfr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Ciliary body and Iris are both included in the ICD-O-3 site code of C69.4, but they are staged with different criteria by AJCC. The Schema Discriminator is used to select the CS schema appropriate for coding extension for melanoma of the iris. Obsolete codes identified for primaries of the ciliary body are found in this schema because melanomas of ciliary body and iris were included in a single schema in CS Version 1.\n\n**Note 2**: Uveal melanomas arise most commonly in the choroid, less frequently in the ciliary body, and least often in the iris. Melanomas of the iris tend to be small, and those arising from or extending to the ciliary body typically are large.\n\n**Note 3**: AJCC does not recognize in situ melanoma of the iris. Any case so coded will be mapped to unknown AJCC stage and in situ Summary Stage.",
- "last_modified" : "2015-05-27T16:19:13.685Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:TX", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED V0200\n\nFOR IRIS PRIMARY ONLY:\nConfined to iris, NOS", "ERROR:", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "110", "Limited to iris not more than 3 clock hours in size,\nWITHOUT melanomalytic (secondary) glaucoma, or not stated if melanomalytic (secondary) glaucoma\n\nStated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1a", "VALUE:L", "VALUE:L" ], [ "130", "Limited to iris more than 3 clock hours in size,\nWITHOUT melanomalytic (secondary) glaucoma, or not stated if melanomalytic (secondary) glaucoma\n\nStated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "140", "Limited to iris\nWITH melanomalytic (secondary) glaucoma\n\nStated as T1c with no other information on extension", "VALUE:T1c", "VALUE:T1c", "VALUE:L", "VALUE:L" ], [ "160", "Limited to iris, NOS\n\nStated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "210", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness), not stated if extraocular extension present", "ERROR:", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "220", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness ),\nWITHOUT microscopic or macroscopic extraocular extension.", "ERROR:", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "230", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness), \nWITH microscopic extraocular extension.", "ERROR:", "VALUE:T1b", "VALUE:L", "VALUE:L" ], [ "240", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor 10 mm or less in greatest diameter and 2.5 mm or less in greatest height (thickness), \nWITH macroscopic extraocular extension.", "ERROR:", "VALUE:T1c", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1NOS", "VALUE:L", "VALUE:L" ], [ "410", "Tumor confluent with or extending into the ciliary body and/or choroid \nWITHOUT melanomalytic (secondary) glaucoma, or not stated if melanomalytic (secondary) glaucoma\n\nStated as T2 [NOS] with no other information on extension", "VALUE:T2NOS", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "420", "Tumor confluent with or extending into the ciliary body and/or choroid\nWITH melanomalytic (secondary) glaucoma\n\nStated as T2a with no other information on extension", "VALUE:T2a", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "510", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness), not stated if extraocular extension present.", "ERROR:", "VALUE:T2NOS", "VALUE:L", "VALUE:L" ], [ "520", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness),\nWITHOUT microscopic or macroscopic extraocular extension present.", "ERROR:", "VALUE:T2a", "VALUE:L", "VALUE:L" ], [ "530", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness),\nWITH microscopic extraocular extension present.", "ERROR:", "VALUE:T2b", "VALUE:RE", "VALUE:RE" ], [ "540", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor greater than 10 mm but not more than 16 mm in greatest basal diameter and between 2.5 mm and 10 mm in maximum height (thickness),\nWITH macroscopic extraocular extension present.", "ERROR:", "VALUE:T2c", "VALUE:RE", "VALUE:RE" ], [ "600", "Tumor confluent with or extending into the ciliary\nbody and/or choroid \nWITH scleral extension,\nWITHOUT melanomalytic (secondary) glaucoma, or not stated if melanomalytic (secondary) glaucoma\n\nStated as T3 [NOS] with no other information on extension", "VALUE:T3NOS", "VALUE:T3NOS", "VALUE:L", "VALUE:L" ], [ "610", "Tumor confluent with or extending into the ciliarybody and/or choroid\nWITH scleral extension\nWITH melanomalytic (secondary) glaucoma\n\nStated as T3a with no other information on extension", "VALUE:T3a", "VALUE:T3a", "VALUE:L", "VALUE:L" ], [ "650", "OBSOLETE DATA RETAINED V0200\n\nFOR IRIS PRIMARY ONLY:\nExtraocular extension", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "Tumor with extrascleral (extraocular) extension less than or equal to 5mm in diameter\n\nStated as T4a with no other information on extension", "VALUE:T4a", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "Tumor with extrascleral (extraocular) extension greater than 5mm in diameter\n\nStated as T4b with no other information on extension", "VALUE:T4b", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "680", "Extrascleral (extraocular) extension, measurement of diameter not specified", "VALUE:T4NOS", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "710", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor more than 16 mm in greatest basal diameter and/or greater than 10 mm in maximum height (thickness),\nWITHOUT extraocular extension or not stated if extraocular extension present.", "ERROR:", "VALUE:T3NOS", "VALUE:L", "VALUE:L" ], [ "750", "OBSOLETE DATA RETAINED V0200\nCiliary body moved to separate schema V0200\n\nFOR CILIARY BODY PRIMARY ONLY:\nTumor more than 16 mm in greatest basal diameter and/or greater than 10 mm in maximum height (thickness), \nWITH extraocular extension.", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:T4b", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfs.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfs.json
deleted file mode 100644
index e51d84f7d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfs.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bfs",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Distal bile duct tumors arise between the junction of the cystic duct-bile duct and the ampulla of Vater. The classification includes tumors developing in congenital choledochal cysts and tumors arising in the intrapancreatic portion of the common bile duct.\n\n**Note 2**: Involvement within the porta hepatis is coded according to the structures involved: portal vein, common hepatic artery, and common hepatic duct.",
- "last_modified" : "2015-05-27T16:19:13.750Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor of distal bile duct confined to:\n Lamina propria\n Mucosa, NOS\n Submucosa (superficial invasion)", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T1 with no other information on extension ", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Beyond wall of bile duct\nPeriductal/fibromuscular connective tissue", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "450", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSee code 605\n\nGallbladder\nLiver, porta hepatis\nPancreas", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "605", "OBSOLETE DATA REVIEWED V0203\nSee codes 608, 670\n\nGallbladder\nLiver, porta hepatis\nPancreas", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "608", "Common hepatic duct\nGallbladder\nLiver\nPancreas", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Unilateral branches of portal vein (right or left)\nUnilateral branches of hepatic artery (right or left)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "Duodenum", "VALUE:T3", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "630", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\nSee codes 620, 651 \n\nColon, NOS\n Transverse including flexure\nDuodenum, NOS\nOmentum, NOS\n Lesser\nStomach, distal", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "651", "Colon, NOS\n Transverse including flexure\nOmentum, NOS\n Lesser\nStomach, distal", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED V0200\nSee code 670\n\nMain portal vein or its branches bilaterally\nCommon hepatic artery\nHepatic artery, NOS\nPortal vein, NOS", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "Main portal vein or its branches bilaterally\nCommon hepatic artery\nHepatic artery, NOS\nPortal vein, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Other parts of colon\nGreater omentum\nStomach, proximal", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "750", "OBSOLETE DATA RETAINED V0200\nSee code 760\n\nAbdominal wall", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "760", "Abdominal wall", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "780", "Celiac axis\nSuperior mesenteric artery", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "850", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bft.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bft.json
deleted file mode 100644
index c0a0dfbc9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bft.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bft",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Perihilar bile duct tumors arise at the confluence of the right and left hepatic ducts in the hilar area of the liver.\n\n**Note 2**: The biliary radicals are the ducts or tubes that drain bile into the intestine as part of the digestive process. The second-order biliary radicals are the next largest branches or ducts of the biliary system which join to form or empty into the main hepatic bile duct.\n\n**Note 3**: For AJCC 7 staging, T3 and T4 are defined strictly in terms of invasion into specific large blood vessels and the biliary radicals within the liver. Give priority to coding invasion into blood vessels and biliary radicals over the named structures in . codes 605, 651, 700, 760, and 800. Use combination codes 665, 720, and 815 when information is available regarding extension to the specified vessels and/or the biliary radicals within the liver plus involvement of other named organs.\n\n**Note 4**: Involvement within the porta hepatis is coded according to the structures involved: portal vein, common hepatic artery, and common hepatic duct.",
- "last_modified" : "2015-05-27T16:19:13.799Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor of perihilar (proximal) bile duct(s) confined to:\n Lamina propria\n Mucosa, NOS\n Submucosa (superficial invasion)", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T1 with no other information on extension", "VALUE:T1", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Beyond wall of bile duct\nPeriductal/fibromuscular connective tissue", "VALUE:T2a", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "450", "Stated as T2a with no other information on extension", "VALUE:T2a", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "500", "Adjacent hepatic parenchyma", "VALUE:T2b", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "510", "Liver extension, NOS\nLiver, NOS", "VALUE:T2b", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "550", "Stated as T2b with no other information on extension", "VALUE:T2b", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "555", "Stated as T2 [NOS] with no other information on extension", "VALUE:T2NOS", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "560", "OBSOLETE DATA REVIEWED V0203\nSee codes 100, 510, 661, and 665\n\nLiver, porta hepatis ", "VALUE:T2b", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\nSee codes 560 and 605\n\nGallbladder\nLiver, porta hepatis\nPancreas", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "605", "Gallbladder\nPancreas", "VALUE:TX", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Unilateral branches of portal vein (right or left)\nUnilateral branches of hepatic artery (right or left)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "612", "610 + 605", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "615", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\nSee code 651 \n\nColon, NOS\n Transverse including flexure\nDuodenum, NOS\nOmentum, NOS\n Lesser\nStomach, distal", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "651", "Colon, NOS:\n Transverse including flexures\nDuodenum, NOS\nOmentum, NOS:\n Lesser\nStomach, distal", "VALUE:TX", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED V0200\nSee code 661\n\nMain portal vein or its branches bilaterally\nCommon hepatic artery\nHepatic artery, NOS\nPortal vein, NOS", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "661", "Main portal vein or its branches bilaterally\nCommon hepatic artery\nHepatic artery, NOS\nPortal vein, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "665", "661 + (605 and/or 651)", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "Tumor invades second-order biliary radicals bilaterally\nOR\nTumor invades unilateral second-order biliary radicals with contralateral portal vein or hepatic artery involvement", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Other parts of colon\nGreater omentum\nStomach, proximal", "VALUE:TX", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "720", "700 + (661, 665, or 670)", "VALUE:TX", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "750", "OBSOLETE DATA RETAINED V0200\nSee code 760\n\nAbdominal wall", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "760", "Abdominal wall", "VALUE:TX", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:TX", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "800 + (700 or 760)", "VALUE:TX", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "815", "(760, 800, or 810) + (661 or 670)\n\nInvolvement of structures in 760, 800, or 810 plus involvement of blood vessels as described in 661 or blood vessels and biliary radicals as described in 670", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "820", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfu.json
deleted file mode 100644
index 23cf5f0e0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfu.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note**: The assignment of T categories for gastrointestinal stromal tumors (GIST) is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 350. 360, 370, and 380 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 7 Table for this schema.\n- For CS Extension codes 100-800 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.849Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Tumor confined to site of origin", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:L", "VALUE:L" ], [ "360", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:L", "VALUE:L" ], [ "370", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:L", "VALUE:L" ], [ "380", "Stated as T4 with no other information on extension", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA CONVERTED V0203\nSee code 360\n\nStated T2[NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "510", "OBSOLETE DATA CONVERTED V0203\nSee code 370\n\nStated T3[NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "520", "OBSOLETE DATA CONVERTED V0203\nSee Code 380\n\nStated T4[NOS]", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "600", "Adjacent organs/structures including bone/cartilage:\n For retroperitoneum: \n Adrenal(s) (suprarenal gland(s))\n Aorta\n Ascending colon\n Descending colon\n Kidney(s)\n Pancreas\n Inferior vena cava (IVC)\n Vertebra\n For peritoneum: \n Colon (except ascending and descending colon)\n Esophagus\n Gallbladder\n Liver\n Small intestine\n Spleen\n Stomach", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension, including:\n For retroperitoneum:\n Colon other than ascending or descending\n For peritoneum: \n Ascending colon\n Descending colon", "JUMP:extension_size_ajcc7_xfp", "JUMP:extension_size_ajcc6_xir", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfv.json
deleted file mode 100644
index fee066aa2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfv.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For AJCC TNM staging, retroperitoneal sarcomas are classified as deep tumors.\n\n**Note 2**: The assignment of T1 and T2 categories for soft tissue sarcomas is based on tumor size. A physician's statement of the T category may be used to code CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently: for example the record may document size but not extension, other than the physician's statement of the T category. Use codes 350 and 375 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-800 ONLY, the T category for AJCC 7 staging is assigned based on value of CS Tumor Size, as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100-800 ONLY, the T category for AJCC 6 staging is assigned based on value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:13.895Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "Tumor confined to site of origin", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "350", "Stated as T1b or T1 [NOS] with no other information on extension", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "375", "Stated as T2b or T2 [NOS] with no other information on extension", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue \n(See definition of adjacent connective tissue in General Rules)", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures: \n Adrenal(s) (suprarenal gland(s))\n Aorta\n Ascending colon\n Bone/cartilage\n Descending colon\n Kidney(s)\n Pancreas\n Vena cava\n Vertebra", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension, including:\n Extension to colon other than ascending or descending", "JUMP:extension_size_xqj", "JUMP:extension_size_xqj", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfw.json
deleted file mode 100644
index 14405f838..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfw.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bfw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The cystic duct extends from the neck of the gallbladder to its junction with the common hepatic duct, to form the common bile duct.\n\n**Note 2**: Involvement of one of the stated extrahepatic organs or structures is classified as T3, and involvement of more than one extrahepatic structure is classified as T4.\n\n**Note 3**: Involvement within the porta hepatis is coded according to the structures involved: portal vein, common hepatic artery, and common hepatic duct.",
- "last_modified" : "2015-05-27T16:19:13.948Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Invasive tumor confined to:\n Lamina propria\n Mucosa, NOS\n Submucosa (superficial invasion)", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "105", "Extension to tissues in code 100 plus any involvement of gallbladder", "VALUE:T1a", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "110", "Stated as T1a with no other information on extension", "VALUE:T1a", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "200", "Muscularis propria", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "205", "Extension to tissues in code 200 plus any involvement of gallbladder", "VALUE:T1b", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "210", "Stated as T1b with no other information on extension", "VALUE:T1b", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "220", "Stated as T1 [NOS] with no other information on extension", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:T1NOS", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "400", "Beyond wall of cystic duct\nPeriductal/fibromuscular connective tissue", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "405", "Extension to tissues in code 400 plus any involvement of gallbladder", "VALUE:T2", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "410", "Stated as T2 with no other information on extension", "VALUE:T2", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "420", "Extension to extrahepatic bile ducts (including common hepatic duct) (beyond cystic duct)", "VALUE:T3", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "430", "420 + 400\n\nExtension to extrahepatic bile ducts (including common hepatic duct) (beyond cystic duct) plus extension beyond wall of cystic duct", "VALUE:T3", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "550", "Serosa (visceral peritoneum) perforated", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nGallbladder\nLiver, porta hepatis\nPancreas", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee code 628 and 720\n\nUnilateral branches of portal vein (right or left)\nUnilateral branches of hepatic artery (right or left)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "OBSOLETE DATA REVIEWED V0203 \nSee codes 420, 430, 625, 626, 790 \n\nLiver/porta hepatis", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "625", "Liver", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "626", "625 +420\n\nExtension to liver plus extrahepatic bile ducts (including common hepatic duct) (beyond cystic duct)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "628", "Extension to ONE of the following with or without extension to liver:\n Unilateral branches of hepatic artery (right or left)\n Unilateral branches of portal vein (right or left)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "630", "OBSOLETE DATA REVIEWED V0203\nSee codes 105, 205, 405, and 635\n\nExtension to ONE of the following WITH or WITHOUT extension to liver: \n Gallbladder \n Pancreas", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "635", "Extension to pancreas with or without extension to liver", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "650", "OBSOLETE DATA RETAINED V0200\nSee code 651 \n\nExtension to ONE of the following WITHOUT extension to any structure in 630, \nWITH OR WITHOUT extension to liver, (620):\n Colon , NOS\n Transverse including flexure\n Duodenum , NOS\n Omentum, NOS\n Lesser \n Stomach , distal", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "651", "OBSOLETE DATA CONVERTED V0203\nSee code 652\n \nExtension to ONE of the following WITHOUT extension to any structure in 630, WITH OR WITHOUT extension to liver, (620):\n Colon, NOS\n Transverse including flexure\n Duodenum, NOS\n Omentum, NOS\n Lesser \n Stomach, distal", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "652", "Extension to ONE of the following WITHOUT extension to any structure in 635, with or without extension to liver:\n Colon, NOS:\n Transverse including flexure\n Duodenum, NOS\n Omentum, NOS:\n Lesser \n Stomach, distal", "VALUE:T3", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "655", "OBSOLETE DATA REVIEWED V0203\nSee codes 105, 205, 405, and 635\n\nExtension to gallbladder AND pancreas 630\nWITHOUT extension to any structure in code 651, \nWITH or WITHOUT extension to liver (620)", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "660", "OBSOLETE DATA RETAINED V0200\nSee code 790\n\nMain portal vein or its branches bilaterally\nCommon hepatic artery\nHepatic artery, NOS\nPortal vein, NOS", "ERROR:", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "670", "OBSOLETE DATA CONVERTED V0203\nSee code 730\n\nExtension to MORE THAN ONE structure in code 651 \nOR\nExtension to one or more structure in code 651 PLUS one or more structures in code 630\nWITH OR WITHOUT extension to liver (620)", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "OBSOLETE DATA CONVERTED V0203\nSee code 701 \n\nExtension to ONE of the following \nWITHOUT extension to any structure in codes 630 or 651, \nWITH OR WITHOUT extension to liver:\n Other parts of colon\n Greater omentum\n Stomach, proximal", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "701", "Extension to ONE of the following without extension to any structure in code 420, 628, 635, or 652:\n Other parts of colon\n Greater omentum\n Stomach, proximal", "VALUE:T3", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "705", "Stated as T3 with no other information on extension", "VALUE:T3", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "710", "OBSOLETE DATA CONVERTED V0203\nSee code 740\n\nExtension to MORE THAN ONE structure in code 700\nOR\nExtension to one or more structures in code 700 PLUS one or more structures in codes 630 or 651\nWITH OR WITHOUT extension to liver", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "720", "Extension to MORE THAN ONE structure in codes 420, 628, and 635\nWITHOUT extension to any structure in code 652 or 701 with or without extension to liver", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "730", "Extension to MORE THAN ONE structure in code 652 \nOR\nExtension to one or more structures in code 652 PLUS one or more structures in code 420, 628, or 635\nwith or without extension to liver ", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "740", "Extension to MORE THAN ONE structure in code 701 \nOR\nExtension to one or more structures in code 701 PLUS one or more structures in code 420, 628, 635, or 652 with or without extension to liver", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "750", "OBSOLETE DATA RETAINED V0200\nSee code 795\n \nAbdominal wall", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "790", "Main portal vein or its branches bilaterally\nCommon hepatic artery\nHepatic artery, NOS\nPortal vein, NOS", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "792", "790 + 701\n\nInvolvement of any structure in code 790 plus any structure in code 701", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:RE" ], [ "795", "Abdominal wall", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfx.json
deleted file mode 100644
index fe4211856..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfx.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: As stated in the AJCC 7th Edition, p. 419, a primary peritoneal carcinoma may not involve the ovaries or only involve the ovaries \"with minimal surface implants. The clinical presentation, surgical therapy, chemotherapy, and prognosis of these peritoneal tumors mirror those of papillary serous carcinoma of the ovary. Patients who undergo prophylactic oophorectomy for a familial history of ovarian cancer appear to retain a 1 to 2% chance of developing peritoneal adenocarcinoma, which is histopathologically and clinically similar to primary ovarian cancer.\"\n\n**Note 2**: When both the Federation Internationale de Gynecologie et d'Obstetrique (FIGO) stage and extension detail are available, record the code with extension detail in preference to a statement of FIGO stage. FIGO Stage IIIC is assigned based on tumor extension and/or regional lymph node involvement. Code CS Extension based on a physician's statement of FIGO Stage IIIC if it is known that the stage value is assigned because of tumor extension or if the basis is unknown.\n\n**Note 3**: For most histologies the T category for AJCC 6 staging is assigned as NA.",
- "footnotes" : "- For CS Extension codes 100-700, 710, and 720-795 ONLY, the T category for AJCC 6 staging for certain histologies is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:14.002Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "OBSOLETE DATA RETAINED V0200\n\nTumor confined to site of origin", "ERROR:", "JUMP:extension_size_xgn", "VALUE:L", "VALUE:L" ], [ "150", "Microscopic peritoneal implants beyond pelvis including:\n Liver capsule\n Mesentery\n Omentum\n Pericolic gutter\nMicroscopic peritoneal implants beyond pelvis including peritoneal surface/capsule of:\n Ascending colon\n Descending colon\n Diaphragm\n Esophagus\n Gallbladder \n Transverse colon and flexures \n Small intestine \n Spleen \n Stomach\nWITHOUT invasion of underlying structures", "VALUE:T3a", "JUMP:extension_size_xgn", "VALUE:L", "VALUE:L" ], [ "180", "FIGO Stage IIIA", "VALUE:T3a", "JUMP:extension_size_xgn", "VALUE:L", "VALUE:L" ], [ "300", "OBSOLETE DATA RETAINED V0200\n\nLocalized, NOS", "ERROR:", "JUMP:extension_size_xgn", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\n\nAdjacent connective tissue see definition of adjacent connective tissue in General Instructions.", "ERROR:", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "510", "Macroscopic peritoneal implants beyond pelvis less than or equal to 2 centimeter (cm) in diameter including:\n Liver capsule\n Mesentery\n Omentum\n Pericolic gutter\nMacroscopic peritoneal implants beyond pelvis less than or equal to 2 cm in diameter:\n Ascending colon\n Descending colon\n Diaphragm\n Esophagus\n Gallbladder \n Transverse colon and flexures \n Small intestine \n Spleen \n Stomach\nWITHOUT invasion of underlying structures", "VALUE:T3b", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "520", "Macroscopic peritoneal implants beyond pelvis less than or equal to 2 cm in diameter:\n Adjacent connective tissue\n Diaphragm\n Esophagus\n Gallbladder\n Transverse colon and flexures\n Liver\n Small intestine\n Spleen\n Stomach\nWITH invasion of underlying structures", "VALUE:T3b", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "530", "Macroscopic peritoneal implants beyond pelvis less than or equal to 2 cm in diameter:\n Ascending colon\n Descending colon\nWITH invasion of underlying structures", "VALUE:T3b", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "580", "FIGO Stage IIIB", "VALUE:T3b", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nAdjacent organs/structures including bone/cartilage\nRetroperitoneum: \n Adrenal(s) (suprarenal gland(s))\n Aorta\n Ascending colon\n Descending colon\n Kidney(s)\n Pancreas\n Vena cava\n Vertebra\nPeritoneum: \n Colon (except ascending and descending colon)\n Esophagus\n Gallbladder\n Liver\n Small intestine\n Spleen\n Stomach", "ERROR:", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "610", "Macroscopic peritoneal implants beyond pelvis greater than 2 cm in diameter including:\n Liver capsule\n Mesentery\n Omentum\n Pericolic gutter\nMacroscopic peritoneal implants beyond pelvis greater than 2cm in diameter:\n Adjacent connective tissue\n Diaphragm\n Esophagus\n Gallbladder\n Transverse colon and flexures\n Small intestine\n Spleen\n Stomach\nWITHOUT invasion of underlying structures", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:L", "VALUE:L" ], [ "620", "610 + 520", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "630", "610 + 530", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "640", "Macroscopic peritoneal implants beyond pelvis greater than 2cm in diameter:\n Diaphragm\n Esophagus\n Gallbladder \n Transverse colon and flexures \n Liver \n Small intestine \n Spleen \n Stomach\nWITH invasion of underlying structures ", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "650", "640 + (530 or 630)", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "660", "Macroscopic peritoneal implants beyond pelvis greater than 2cm in diameter: \n Ascending colon\n Descending colon\nWITH invasion of underlying structures", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "700", "OBSOLETE DATA CONVERTED V0203\nSee code 150\n\nMicroscopic peritoneal implants beyond pelvis, including peritoneal\nsurface/capsule of \n Colon (except ascending and descending colon)\n Esophagus\n Gallbladder\n Liver\n Small intestine\n Spleen\n Stomach", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "705", "OBSOLETE DATA CONVERTED V0203\nSee code 180\n\nFIGO Stage IIIA", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "710", "OBSOLETE DATA REVIEWED V0203\nSee codes 510 and 520\n\nMacroscopic peritoneal \nimplants beyond pelvis, less than or equal to 2 cm in diameter,\n including peritoneal surface of \n Esophagus \n Abdominal mesentery\n Diaphragm\n Gallbladder \n Infracolic omentum\n Kidneys \n Large intestine except rectum and sigmoid colon \n Liver (peritoneal surface)\n Omentum \n Pancreas \n Pericolic gutter \n Small intestine \n Spleen \n Stomach \n Ureters\n Peritoneum, NOS", "VALUE:T3b", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "715", "OBSOLETE DATA CONVERTED V0203\nSee code 580\n\nFIGO Stage IIIB", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "720", "OBSOLETE DATA REVIEWED V0203\nSee codes 610 and 620\n\nPeritoneal implants beyond \npelvis, greater than 2 cm in diameter, including peritoneal\n surface of \n Esophagus \n Abdominal mesentery\n Diaphragm\n Gallbladder \n Infracolic omentum\n Kidneys \n Large intestine except rectum and sigmoid colon \n Liver (peritoneal surface)\n Omentum \n Pancreas \n Pericolic gutter \n Small intestine \n Spleen \n Stomach \n Ureters\n Peritoneum, NOS", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "722", "Extension to:\n Bone\n Cartilage", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:RE", "VALUE:RE" ], [ "725", "722 + (530, 660)", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "728", "Further contiguous extension", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "730", "FIGO Stage IIIC based on tumor extension", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "735", "FIGO Stage IIIC unknown if based on tumor extension or nodes", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "750", "Peritoneal implants, NOS", "VALUE:T3NOS", "JUMP:extension_size_xgn", "VALUE:L", "VALUE:L" ], [ "780", "FIGO Stage III [NOS]", "VALUE:T3NOS", "JUMP:extension_size_xgn", "VALUE:L", "VALUE:L" ], [ "785", "OBSOLETE DATA REVIEWED V0203\nSee codes 520 and 610\n\nAdjacent connective tissue (see definition of adjacent connective tissue in General Instructions)", "VALUE:T3NOS", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "790", "OBSOLETE DATA REVIEWED V0203\nSee codes 510, 520, 610, 620, and 640\n\nAdjacent organs/structures including bone/cartilage\nPeritoneum: \n Colon (except ascending and descending colon)\n Esophagus\n Gallbladder\n Liver\n Small intestine\n Spleen\n Stomach", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "795", "OBSOLETE DATA REVIEWED V0203\nSee codes 150, 530, 630, 650, 660, and 725\n\nFurther contiguous extension, including:\nextension to ascending or descending colon", "VALUE:T3c", "JUMP:extension_size_xgn", "VALUE:D", "VALUE:D" ], [ "800", "OBSOLETE DATA CONVERTED V0203\nSee code 728\n\nFurther contiguous extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfy.json
deleted file mode 100644
index 0c0eaa95c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfy.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bfy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:14.097Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "050", "Benign or borderline tumor", "VALUE:NA", "VALUE:NA", "VALUE:NA", "VALUE:NA" ], [ "100", "Invasive tumor confined to gland of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue \n(See definition in General Rules, Part I)", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures\n Pituitary and craniopharyngeal duct:\n Cavernous sinus\n Infundibulum\n Pons\n Sphenoid body and sinuses\n Pineal:\n Infratentorial and central brain", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfz.json
deleted file mode 100644
index a13ea7416..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bfz.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bfz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In the case of multiple simultaneous tumors, code the tumor with the greatest extension.\n\n**Note 2**: Skin ulceration does not alter the AJCC T category.\n\n**Note 3**: Satellite nodules/In-transit metastasis are coded in CS Lymph Nodes. \n\n**Note 4**: The assignment of the T1, T2, and T3 categories for Merkel cell carcinomas is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 320, 560, 630, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-570 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size AJCC 7 Table for this site.",
- "last_modified" : "2015-05-27T16:19:14.142Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "050", "OBSOLETE DATA RETAINED V0200 \n\nNon-invasive verrucous carcinoma", "ERROR:", "VALUE:Ta", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 105, 330\n\nLesion(s) confined to dermis\nInvasive tumor limited to subepithelial connective tissue, but not involving corpus spongiosum or cavernosum \n If primary is skin: invasive tumor limited to skin of penis, prepuce (foreskin) and/or glans\n\nStated as T1 [NOS] with no other information on extension", "JUMP:extension_size_ajcc7_xik", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "105", "Lesion(s) confined to dermis\nInvasive tumor limited to skin of penis, prepuce (foreskin), and/or glans\nInvasive tumor limited to subepithelial connective tissue but not involving corpus spongiosum or corpus cavernosum", "JUMP:extension_size_ajcc7_xik", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xik", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "310", "Subcutaneous tissue (through entire dermis)", "JUMP:extension_size_ajcc7_xik", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "320", "OBSOLETE DATA CONVERTED V0203\nSee code 330\n\nStated as T1b with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "330", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xik", "VALUE:T1", "VALUE:L", "VALUE:L" ], [ "350", "OBSOLETE DATA CONVERTED V0203\nSee code 410\n\nFor body of penis ONLY:\n Corpus cavernosum\n Corpus spongiosum\n Tunica albuginea of corpus spongiosum", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "400", "OBSOLETE DATA CONVERTED V0203\nSee code 410\n\nCorpus cavernosum except for tumor in body of penis\nCorpus spongiosum except for tumor in body of penis\nTunica albuginea of corpus spongiosum except for tumor in body of penis", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "410", "Corpus cavernosum\nCorpus spongiosum\nTunica albuginea", "JUMP:extension_size_ajcc7_xik", "VALUE:T2", "VALUE:RE", "VALUE:RE" ], [ "500", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 105-310, 330, 410, 560-570 and CS Lymph Nodes codes 410-480, 520\n\nSatellite nodule(s) on prepuce or glans", "JUMP:extension_size_ajcc7_xik", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "560", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xik", "VALUE:T2", "VALUE:L", "VALUE:L" ], [ "570", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xik", "VALUE:T1", "VALUE:RE", "VALUE:RE" ], [ "600", "Prostate\nUrethra", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "630", "OBSOLETE DATA CONVERTED V0203\nSee code 570\n\nStated as T3 with no other information on extension", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "700", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 710, 720, 730 \n\nUnderlying cartilage, bone, skeletal muscle\nAdjacent structures:\nMuscle, NOS:\n Bulbospongiosus\n Ischiocavernosus\n Superficial transverse perineal\nSkin:\n Abdominal\n Perineum\n Pubic\n Scrotal", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "710", "Adjacent structures:\n Fascia\n Muscle, NOS:\n Bulbospongiosus\n Ischiocavernosus\n Superficial transverse perineal\n Skin:\n Abdomen\n Perineum\n Pubic region\n Scrotum", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "720", "Underlying bone and cartilage", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "730", "720 + 710", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension:\n Testis", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bga.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bga.json
deleted file mode 100644
index b830482cd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bga.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bga",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In the case of multiple simultaneous tumors, code the tumor with the greatest extension.\n\n**Note 2**: Skin ulceration does not alter the AJCC T category.\n\n**Note 3**: In-transit metastasis is coded in CS Lymph Nodes.\n\n**Note 4**: The assignment of the T1, T2, and T3 categories for Merkel cell carcinomas is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 310, 320, 330, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 100-400 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in the Extension Size Table for this schema.\n- For CS Extension codes 100- 400 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in the Extension Size Table for this schema.",
- "last_modified" : "2015-05-27T16:19:14.193Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "Lesion(s) confined to dermis\nConfined to scrotum", "JUMP:extension_size_ajcc7_xim", "JUMP:extension_size_ajcc6_xji", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xim", "JUMP:extension_size_ajcc6_xji", "VALUE:L", "VALUE:L" ], [ "305", "Subcutaneous tissue (through entire dermis)", "JUMP:extension_size_ajcc7_xim", "JUMP:extension_size_ajcc6_xji", "VALUE:L", "VALUE:L" ], [ "310", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xim", "JUMP:extension_size_ajcc6_xji", "VALUE:L", "VALUE:L" ], [ "320", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xim", "JUMP:extension_size_ajcc6_xji", "VALUE:L", "VALUE:L" ], [ "330", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xim", "JUMP:extension_size_ajcc6_xji", "VALUE:L", "VALUE:L" ], [ "400", "Adjacent connective tissue\nEXCLUDING deep fascia\n(See definition of connective tissue in general instructions)", "JUMP:extension_size_ajcc7_xim", "JUMP:extension_size_ajcc6_xji", "VALUE:RE", "VALUE:RE" ], [ "500", "Deep fascia, skeletal muscle", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "600", "Adjacent organs/structures\n Male genital organs:\n Epididymis\n Penis\n Prostate\n Spermatic cord\n Testis", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "610", "600 + 500", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Underlying cartilage, bone", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension\n Other organs and structures in male pelvis:\n Bladder\n Rectum\n Urethra", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "805", "OBSOLETE DATA REVIEWED V0203\nSee codes 500, 610, 700, 808\n\nUnderlying cartilage, bone, fascia, skeletal muscle", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "808", "800 + (500, 700)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension ", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown: extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bgb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bgb.json
deleted file mode 100644
index 4c9f88850..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bgb.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_bgb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: In the case of multiple simultaneous tumors, code the tumor with the greatest extension.\n\n**Note 2**: Skin ulceration does not alter the AJCC T category.\n\n**Note 3**: In-transit metastasis is coded in CS Lymph Nodes.\n\n**Note 4**: The depth of stromal invasion is defined as the measurement of the tumor from the epithelial-stromal junction of the adjacent most superficial dermal papilla to the deepest point of invasion.\n\n**Note 5**: Use codes 110-130 and 410-430 for tumors limited to the skin or subcutaneous/submucosal tissues of vulva and perineum only. Use code 602 for tumors involving fascia or musculature of vulva and perineum.\n\n**Note 6**: The assignment of the T1, T2, and T3 categories for Merkel cell carcinomas is based on tumor size. A physician's statement of the T category may be used to code both CS Tumor Size and/or CS Extension if this is the only information in the medical record regarding one or both of these fields. However the two fields are coded independently; for example, the record may document size but not extension. Use codes 450, 460, 470, and 810 as appropriate to code CS Extension based on a statement of T when no other extension information is available.",
- "footnotes" : "- For CS Extension codes 105-470 ONLY the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in the Extension Size AJCC 7 Table for this schema.\n- For CS Extension codes 100-510 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension, as shown in the Extension Size AJCC 6 Table for this schema.",
- "last_modified" : "2015-05-27T16:19:14.240Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepidermal, intraepithelial, noninvasive", "VALUE:Tis", "VALUE:Tis", "VALUE:IS", "VALUE:IS" ], [ "100", "OBSOLETE DATA RETAINED AND REVIEWED V0203\nSee codes 150, 200, 500\n\nInvasive cancer (no stromal invasion) confined to:\n Musculature\n Submucosa\n Vulva including skin", "VALUE:TX", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "105", "OBSOLETE DATA CONVERTED V0203\nSee code 130\n\nVulva only: Stromal invasion but level of invasion in mm not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "110", "Vulva only: Stromal invasion less than or equal to 1 mm", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "120", "Vulva only: Stromal invasion greater than 1 mm", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "130", "Vulva only: Stromal invasion but level of invasion in mm not stated", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "150", "Submucosa", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "200", "Confined to vulva, NOS", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA CONVERTED V0203\nSee code 430\n\nVulva and perineum, level of invasion in mm not stated", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "410", "Vulva and perineum, stromal invasion less than or\nequal to 1 mm", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:RE", "VALUE:RE" ], [ "420", "Vulva and perineum, stromal invasion greater than 1 mm", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:RE", "VALUE:RE" ], [ "430", "Vulva and perineum, level of invasion in mm not stated", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:RE", "VALUE:RE" ], [ "450", "Stated as T1 with no other information on extension", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "460", "Stated as T2 with no other information on extension", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "470", "Stated as T3 with no other information on extension", "JUMP:extension_size_ajcc7_xio", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "500", "Fascia\nMusculature, skeletal muscle", "VALUE:T4", "JUMP:extension_size_ajcc6_xjj", "VALUE:L", "VALUE:L" ], [ "510", "500 + (410, 420, 430)", "VALUE:T4", "JUMP:extension_size_ajcc6_xjj", "VALUE:RE", "VALUE:RE" ], [ "600", "OBSOLETE DATA RETAINED V0200\n\nAnus\nPerianal skin\nUrethra (See code 750 for upper urethral mucosa)\nVagina", "ERROR:", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "605", "Anus\nPerianal skin\nUrethra (lower/distal 1/3 urethra or not stated) \n(See code 750 for upper urethra)", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "610", "Vagina (lower/distal 1/3 vagina)", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "612", "Vagina NOS", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "618", "Vagina (upper/proximal 2/3 vagina)", "VALUE:T4", "VALUE:T3", "VALUE:RE", "VALUE:RE" ], [ "620", "Bladder wall or bladder, NOS excluding mucosa\nRectal wall or rectum, NOS excluding mucosa", "VALUE:T4", "VALUE:T3", "VALUE:D", "VALUE:RE" ], [ "700", "Perineal body\nRectal mucosa", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "750", "OBSOLETE DATA RETAINED V0200\n\nBladder mucosa\nFixed to pubic bone\nUpper urethral mucosa", "ERROR:", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "760", "Bladder mucosa\nUrethra (upper/proximal 2/3 urethra)", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "765", "Extension to underlying cartilage, bone\nFixed to pubic bone", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "770", "OBSOLETE DATA REVIEWED AND CHANGED V0203\nSee codes 500, 510, 765, 775, 778\n\nFixed to pubic bone\nUnderlying cartilage, bone, skeletal muscle", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "775", "(605-700, 760) + 500", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "778", "765 + 500", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:T4", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "810", "Stated as T4 with no other information on extension", "VALUE:T4", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "950", "No evidence of primary tumor", "VALUE:T0", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:TX", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bgc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bgc.json
deleted file mode 100644
index b8df7fdfd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bgc.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "extension_bgc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: Osseous plasmacytomas are localized tumors occurring in the bone. There may be soft tissue extension. \n\n**Note 2**: Extraosseous (extramedullary) plasmacytomas are plasma cell neoplasms that arise in tissues other than bone. The most common sites are the upper respiratory tract, the gastrointestinal tract, lymph nodes, bladder, central nervous system (CNS), breast, thyroid, testis and skin. \n\n**Note 3**: Criteria for the diagnosis of multiple myeloma include: presence of clonal bone marrow plasma cells or plasmacytoma, presence of an M-protein in serum and/or urine, and the presence of related organ or tissue impairment. Do not use this criteria to determine the diagnosis of multiple myeloma. Code according to histologic confirmation or physician statement according to the AJCC 7th edition. \n\n**Note 4**: Multiple myeloma or plasma cell myeloma is a widely disseminated plasma cell neoplasm, characterized by a single clone of plasma cells derived from B cells that grows in the bone marrow. It is always coded to 810 or 820 for systemic involvement.",
- "last_modified" : "2015-05-27T16:19:14.290Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "OBSOLETE DATA RETAINED V0203\n\nLocalized disease (single/solitary/unifocal/isolated/mono-ostotic), may be coded for:\n Plasmacytoma, NOS (M-9731/3)(solitary myeloma)\n Plasmacytoma, extramedullary (M-9734/3) (not occurring in bone)", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "110", "Single plasmacytoma lesion \nWITHOUT soft tissue extension or unknown if soft tissue extension (9731)", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "200", "Single plasmacytoma lesion \nWITH soft tissue extension (9731)", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Single plasmacytoma lesion occurring in tissue other than bone (9734)", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Multiple osseous or multiple extraosseous plasmacytoma lesions (9731, 9734)", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "500", "Plasmacytoma, NOS (9731)\nNot stated if single or multiple, not stated if osseous or extraosseous", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "800", "OBSOLETE DATA RETAINED V0203\n\nSystemic disease (poly-ostotic): \nAll histologies including those in 100", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "810", "Plasma cell myeloma/multiple myeloma/myelomatosis (9732)", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "820", "Myeloma, NOS\nExcludes plasma cell myeloma or multiple myeloma (see code 810)", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bna.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bna.json
deleted file mode 100644
index 0a5740d88..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bna.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bna",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:14.341Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "888", "OBSOLETE DATA CONVERTED V0200\nSee code 988\n\nNot applicable for this site", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "988", "Not applicable: Information not collected for this schema", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bpb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bpb.json
deleted file mode 100644
index dc1413519..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_bpb.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "extension_bpb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "last_modified" : "2015-05-27T16:19:14.386Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:NA", "VALUE:IS", "VALUE:IS" ], [ "100", "Tumor confined to site of origin", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "400", "Intraocular extension", "VALUE:NA", "VALUE:NA", "VALUE:L", "VALUE:L" ], [ "700", "Adjacent extraocular extension:\n Eyelid\n Orbit", "VALUE:NA", "VALUE:NA", "VALUE:RE", "VALUE:RE" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:NA", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed\nNot documented in patient record", "VALUE:NA", "VALUE:NA", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_btb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_btb.json
deleted file mode 100644
index a9324c852..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_btb.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "extension_btb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: The lacrimal sac is the upper dilated end of the nasolacrimal duct, lodged in a deep groove formed by the lacrimal bone and frontal process of the maxilla. The sac connects the lacrimal canaliculi, which drain tears from the eye's surface, and the nasolacrimal duct, which conveys this fluid into the nasal cavity. The most common epithelial tumors of the lacrimal sac are squamous cell and transitional cell carcinomas.\n\n**Note 2**: Periosteum is a fibrous membrane that wraps the outer surface of bones.\n\n**Note 3**: AJCC excludes lacrimal sac tumors from 7th Edition staging for the lacrimal gland. Lacrimal sac tumors were not explicitly excluded from AJCC 6th Edition staging.",
- "footnotes" : "- For CS Extension codes 100-405 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size as shown in the Extension Size AJCC 6 Table. . Tumors 2.5 cm or less are T1, and tumors between 2.6 and 5 cm are T2.",
- "last_modified" : "2015-05-27T16:19:14.435Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "In situ, intraepithelial, noninvasive", "VALUE:NA", "VALUE:TX", "VALUE:IS", "VALUE:IS" ], [ "100", "Tumor confined to lacrimal sac", "VALUE:NA", "JUMP:extension_size_ajcc6_xea", "VALUE:L", "VALUE:L" ], [ "300", "Localized, NOS", "VALUE:NA", "JUMP:extension_size_ajcc6_xea", "VALUE:L", "VALUE:L" ], [ "400", "OBSOLETE DATA RETAINED V0200\nSee code 405\n\nInvading periosteum of fossa of lacrimal gland/duct", "ERROR:", "JUMP:extension_size_ajcc6_xea", "VALUE:RE", "VALUE:RE" ], [ "405", "Invading periosteum", "VALUE:NA", "JUMP:extension_size_ajcc6_xea", "VALUE:RE", "VALUE:RE" ], [ "600", "Extension to any of the following WITHOUT bone invasion:\n Globe (eyeball)\n Optic nerve\n Orbital soft tissues", "VALUE:NA", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "700", "Adjacent bone", "VALUE:NA", "VALUE:T4", "VALUE:RE", "VALUE:RE" ], [ "750", "Adjacent structures:\n Brain\n Sinus\n Pterygoid fossa\n Temporal fossa", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "800", "Further contiguous extension", "VALUE:NA", "VALUE:T4", "VALUE:D", "VALUE:D" ], [ "950", "No evidence of primary tumor", "VALUE:NA", "VALUE:T0", "VALUE:U", "VALUE:U" ], [ "999", "Unknown; extension not stated\nPrimary tumor cannot be assessed \nNot documented in patient record", "VALUE:NA", "VALUE:TX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv1_xkn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv1_xkn.json
deleted file mode 100644
index c374a90f8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv1_xkn.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_cytology_ajcc6_table_csv1_xkn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Cytology AJCC 6 Table CSv1",
- "title" : "Extension Cytology AJCC 6 Table CSv1",
- "subtitle" : "CS Version Input Original Equals 01XXXX and Year of Diagnosis is Before 2010",
- "notes" : "**Note**: For CS Version 1 cases (CS Version Input Original equals 01XXXX and Year of Diagnosis is before 2010) and for CS Extension codes 100-145 and 180-525 ONLY. The T category for AJCC 6 staging is assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site Specific Factor 2 as shown in this table.",
- "last_modified" : "2015-05-27T16:19:14.482Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "VALUE:T1NOS" ], [ "110", "000", "VALUE:T1a" ], [ "120", "000", "VALUE:T1b" ], [ "123", "000", "VALUE:T2a" ], [ "125", "000", "VALUE:T1a" ], [ "130", "000", "VALUE:T1c" ], [ "133", "000", "VALUE:T2a" ], [ "135", "000", "VALUE:T1c" ], [ "140", "000", "VALUE:T1NOS" ], [ "143", "000", "VALUE:T2a" ], [ "145", "000", "VALUE:T2a" ], [ "180", "000", "VALUE:T1NOS" ], [ "400", "000", "VALUE:T1NOS" ], [ "500", "000", "VALUE:T2NOS" ], [ "510", "000", "VALUE:T2a" ], [ "520", "000", "VALUE:T2b" ], [ "525", "000", "VALUE:T2NOS" ], [ "100", "010", "VALUE:T3a" ], [ "110", "010", "VALUE:T3a" ], [ "120", "010", "VALUE:T3a" ], [ "123", "010", "VALUE:T3a" ], [ "125", "010", "VALUE:T3a" ], [ "130", "010", "VALUE:T3a" ], [ "133", "010", "VALUE:T3a" ], [ "135", "010", "VALUE:T3a" ], [ "140", "010", "VALUE:T3a" ], [ "143", "010", "VALUE:T3a" ], [ "145", "010", "VALUE:T3a" ], [ "180", "010", "VALUE:T3a" ], [ "400", "010", "VALUE:T3a" ], [ "500", "010", "VALUE:T3a" ], [ "510", "010", "VALUE:T3a" ], [ "520", "010", "VALUE:T3a" ], [ "525", "010", "VALUE:T3a" ], [ "100", "020", "VALUE:T1NOS" ], [ "110", "020", "VALUE:T1a" ], [ "120", "020", "VALUE:T1b" ], [ "123", "020", "VALUE:T2a" ], [ "125", "020", "VALUE:T1a" ], [ "130", "020", "VALUE:T1c" ], [ "133", "020", "VALUE:T2a" ], [ "135", "020", "VALUE:T1c" ], [ "140", "020", "VALUE:T1NOS" ], [ "143", "020", "VALUE:T2a" ], [ "145", "020", "VALUE:T2a" ], [ "180", "020", "VALUE:T1NOS" ], [ "400", "020", "VALUE:T1NOS" ], [ "500", "020", "VALUE:T2NOS" ], [ "510", "020", "VALUE:T2a" ], [ "520", "020", "VALUE:T2b" ], [ "525", "020", "VALUE:T2NOS" ], [ "100", "888", "ERROR:" ], [ "110", "888", "ERROR:" ], [ "120", "888", "ERROR:" ], [ "123", "888", "ERROR:" ], [ "125", "888", "ERROR:" ], [ "130", "888", "ERROR:" ], [ "133", "888", "ERROR:" ], [ "135", "888", "ERROR:" ], [ "140", "888", "ERROR:" ], [ "143", "888", "ERROR:" ], [ "145", "888", "ERROR:" ], [ "180", "888", "ERROR:" ], [ "400", "888", "ERROR:" ], [ "500", "888", "ERROR:" ], [ "510", "888", "ERROR:" ], [ "520", "888", "ERROR:" ], [ "525", "888", "ERROR:" ], [ "100", "988", "VALUE:T1NOS" ], [ "110", "988", "VALUE:T1a" ], [ "120", "988", "VALUE:T1b" ], [ "123", "988", "VALUE:T2a" ], [ "125", "988", "VALUE:T1a" ], [ "130", "988", "VALUE:T1c" ], [ "133", "988", "VALUE:T2a" ], [ "135", "988", "VALUE:T1c" ], [ "140", "988", "VALUE:T1NOS" ], [ "143", "988", "VALUE:T2a" ], [ "145", "988", "VALUE:T2a" ], [ "180", "988", "VALUE:T1NOS" ], [ "400", "988", "VALUE:T1NOS" ], [ "500", "988", "VALUE:T2NOS" ], [ "510", "988", "VALUE:T2a" ], [ "520", "988", "VALUE:T2b" ], [ "525", "988", "VALUE:T2NOS" ], [ "100", "997-999", "VALUE:T1NOS" ], [ "110", "997-999", "VALUE:T1a" ], [ "120", "997-999", "VALUE:T1b" ], [ "123", "997-999", "VALUE:T2a" ], [ "125", "997-999", "VALUE:T1a" ], [ "130", "997-999", "VALUE:T1c" ], [ "133", "997-999", "VALUE:T2a" ], [ "135", "997-999", "VALUE:T1c" ], [ "140", "997-999", "VALUE:T1NOS" ], [ "143", "997-999", "VALUE:T2a" ], [ "145", "997-999", "VALUE:T2a" ], [ "180", "997-999", "VALUE:T1NOS" ], [ "400", "997-999", "VALUE:T1NOS" ], [ "500", "997-999", "VALUE:T2NOS" ], [ "510", "997-999", "VALUE:T2a" ], [ "520", "997-999", "VALUE:T2b" ], [ "525", "997-999", "VALUE:T2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv1_xko.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv1_xko.json
deleted file mode 100644
index 6138848ef..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv1_xko.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_cytology_ajcc6_table_csv1_xko",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Cytology AJCC 6 Table CSv1",
- "title" : "Extension Cytology AJCC 6 Table CSv1",
- "notes" : "**Note**: For CS Version 2 cases (CS Version Input Original equals 02XXXX) or Year of Diagnosis greater than 2009) and for CS Extension codes 100-110, 116-120, 126-400, and 510-540 ONLY. The T category for AJCC 6 staging is assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site Specific Factor 2 as shown in this table.",
- "last_modified" : "2015-05-27T16:19:14.533Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "VALUE:T1NOS" ], [ "110", "000", "VALUE:T1a" ], [ "116", "000", "VALUE:T1NOS" ], [ "120", "000", "VALUE:T1b" ], [ "126", "000", "VALUE:T1b" ], [ "130", "000", "VALUE:T1c" ], [ "140", "000", "VALUE:T1NOS" ], [ "160", "000", "VALUE:T3a" ], [ "400", "000", "VALUE:T1NOS" ], [ "510", "000", "VALUE:T2a" ], [ "520", "000", "VALUE:T2b" ], [ "523", "000", "VALUE:T2NOS" ], [ "530", "000", "VALUE:T1NOS" ], [ "540", "000", "VALUE:T1NOS" ], [ "100", "010", "VALUE:T3a" ], [ "110", "010", "VALUE:T3a" ], [ "116", "010", "VALUE:T3a" ], [ "120", "010", "VALUE:T3a" ], [ "126", "010", "VALUE:T3a" ], [ "130", "010", "VALUE:T3a" ], [ "140", "010", "VALUE:T3a" ], [ "160", "010", "VALUE:T3a" ], [ "400", "010", "VALUE:T3a" ], [ "510", "010", "VALUE:T3a" ], [ "520", "010", "VALUE:T3a" ], [ "523", "010", "VALUE:T3a" ], [ "530", "010", "VALUE:T3a" ], [ "540", "010", "VALUE:T3a" ], [ "100", "020", "VALUE:T1NOS" ], [ "110", "020", "VALUE:T1a" ], [ "116", "020", "VALUE:T1NOS" ], [ "120", "020", "VALUE:T1b" ], [ "126", "020", "VALUE:T1b" ], [ "130", "020", "VALUE:T1c" ], [ "140", "020", "VALUE:T1NOS" ], [ "160", "020", "VALUE:T3a" ], [ "400", "020", "VALUE:T1NOS" ], [ "510", "020", "VALUE:T2a" ], [ "520", "020", "VALUE:T2b" ], [ "523", "020", "VALUE:T2NOS" ], [ "530", "020", "VALUE:T1NOS" ], [ "540", "020", "VALUE:T1NOS" ], [ "100", "888", "ERROR:" ], [ "110", "888", "ERROR:" ], [ "116", "888", "ERROR:" ], [ "120", "888", "ERROR:" ], [ "126", "888", "ERROR:" ], [ "130", "888", "ERROR:" ], [ "140", "888", "ERROR:" ], [ "160", "888", "ERROR:" ], [ "400", "888", "ERROR:" ], [ "510", "888", "ERROR:" ], [ "520", "888", "ERROR:" ], [ "523", "888", "ERROR:" ], [ "530", "888", "ERROR:" ], [ "540", "888", "ERROR:" ], [ "100", "988", "VALUE:T1NOS" ], [ "110", "988", "VALUE:T1a" ], [ "116", "988", "VALUE:T1NOS" ], [ "120", "988", "VALUE:T1b" ], [ "126", "988", "VALUE:T1b" ], [ "130", "988", "VALUE:T1c" ], [ "140", "988", "VALUE:T1NOS" ], [ "160", "988", "VALUE:T3a" ], [ "400", "988", "VALUE:T1NOS" ], [ "510", "988", "VALUE:T2a" ], [ "520", "988", "VALUE:T2b" ], [ "523", "988", "VALUE:T2NOS" ], [ "530", "988", "VALUE:T1NOS" ], [ "540", "988", "VALUE:T1NOS" ], [ "100", "997-999", "VALUE:T1NOS" ], [ "110", "997-999", "VALUE:T1a" ], [ "116", "997-999", "VALUE:T1NOS" ], [ "120", "997-999", "VALUE:T1b" ], [ "126", "997-999", "VALUE:T1b" ], [ "130", "997-999", "VALUE:T1c" ], [ "140", "997-999", "VALUE:T1NOS" ], [ "160", "997-999", "VALUE:T3a" ], [ "400", "997-999", "VALUE:T1NOS" ], [ "510", "997-999", "VALUE:T2a" ], [ "520", "997-999", "VALUE:T2b" ], [ "523", "997-999", "VALUE:T2NOS" ], [ "530", "997-999", "VALUE:T1NOS" ], [ "540", "997-999", "VALUE:T1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv2_xkm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv2_xkm.json
deleted file mode 100644
index 12ea39ddb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv2_xkm.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_cytology_ajcc6_table_csv2_xkm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Cytology AJCC 6 Table CSv2",
- "title" : "Extension Cytology AJCC 6 Table CSv2",
- "subtitle" : "CS Version Input Original Equals 02XXXX or Year of Diagnosis is greater than 2009",
- "notes" : "**Note**: For CS Version 2 cases (CS Version Input Original equals 02XXXX or Year of Diagnosis is greater than 2009) and for CS Extension codes 100-145, and 180-525 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site-Specific Factor 2 as shown in this table.",
- "last_modified" : "2015-05-27T16:19:14.588Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "VALUE:T1NOS" ], [ "110", "000", "VALUE:T1a" ], [ "120", "000", "VALUE:T1b" ], [ "123", "000", "VALUE:T2a" ], [ "125", "000", "VALUE:T1a" ], [ "130", "000", "VALUE:T1c" ], [ "133", "000", "VALUE:T2a" ], [ "135", "000", "VALUE:T1c" ], [ "140", "000", "VALUE:T1NOS" ], [ "143", "000", "VALUE:T2a" ], [ "145", "000", "VALUE:T2a" ], [ "180", "000", "VALUE:T1NOS" ], [ "400", "000", "VALUE:T1NOS" ], [ "500", "000", "VALUE:T2NOS" ], [ "510", "000", "VALUE:T2a" ], [ "520", "000", "VALUE:T2b" ], [ "525", "000", "VALUE:T2NOS" ], [ "100", "010", "VALUE:T3a" ], [ "110", "010", "VALUE:T3a" ], [ "120", "010", "VALUE:T3a" ], [ "123", "010", "VALUE:T3a" ], [ "125", "010", "VALUE:T3a" ], [ "130", "010", "VALUE:T3a" ], [ "133", "010", "VALUE:T3a" ], [ "135", "010", "VALUE:T3a" ], [ "140", "010", "VALUE:T3a" ], [ "143", "010", "VALUE:T3a" ], [ "145", "010", "VALUE:T3a" ], [ "180", "010", "VALUE:T3a" ], [ "400", "010", "VALUE:T3a" ], [ "500", "010", "VALUE:T3a" ], [ "510", "010", "VALUE:T3a" ], [ "520", "010", "VALUE:T3a" ], [ "525", "010", "VALUE:T3a" ], [ "100", "020", "VALUE:T1NOS" ], [ "110", "020", "VALUE:T1a" ], [ "120", "020", "VALUE:T1b" ], [ "123", "020", "VALUE:T2a" ], [ "125", "020", "VALUE:T1a" ], [ "130", "020", "VALUE:T1c" ], [ "133", "020", "VALUE:T2a" ], [ "135", "020", "VALUE:T1c" ], [ "140", "020", "VALUE:T1NOS" ], [ "143", "020", "VALUE:T2a" ], [ "145", "020", "VALUE:T2a" ], [ "180", "020", "VALUE:T1NOS" ], [ "400", "020", "VALUE:T1NOS" ], [ "500", "020", "VALUE:T2NOS" ], [ "510", "020", "VALUE:T2a" ], [ "520", "020", "VALUE:T2b" ], [ "525", "020", "VALUE:T2NOS" ], [ "100", "888", "ERROR:" ], [ "110", "888", "ERROR:" ], [ "120", "888", "ERROR:" ], [ "123", "888", "ERROR:" ], [ "125", "888", "ERROR:" ], [ "130", "888", "ERROR:" ], [ "133", "888", "ERROR:" ], [ "135", "888", "ERROR:" ], [ "140", "888", "ERROR:" ], [ "143", "888", "ERROR:" ], [ "145", "888", "ERROR:" ], [ "180", "888", "ERROR:" ], [ "400", "888", "ERROR:" ], [ "500", "888", "ERROR:" ], [ "510", "888", "ERROR:" ], [ "520", "888", "ERROR:" ], [ "525", "888", "ERROR:" ], [ "100", "988", "ERROR:" ], [ "110", "988", "ERROR:" ], [ "120", "988", "ERROR:" ], [ "123", "988", "ERROR:" ], [ "125", "988", "ERROR:" ], [ "130", "988", "ERROR:" ], [ "133", "988", "ERROR:" ], [ "135", "988", "ERROR:" ], [ "140", "988", "ERROR:" ], [ "143", "988", "ERROR:" ], [ "145", "988", "ERROR:" ], [ "180", "988", "ERROR:" ], [ "400", "988", "ERROR:" ], [ "500", "988", "ERROR:" ], [ "510", "988", "ERROR:" ], [ "520", "988", "ERROR:" ], [ "525", "988", "ERROR:" ], [ "100", "997-999", "VALUE:T1NOS" ], [ "110", "997-999", "VALUE:T1a" ], [ "120", "997-999", "VALUE:T1b" ], [ "123", "997-999", "VALUE:T2a" ], [ "125", "997-999", "VALUE:T1a" ], [ "130", "997-999", "VALUE:T1c" ], [ "133", "997-999", "VALUE:T2a" ], [ "135", "997-999", "VALUE:T1c" ], [ "140", "997-999", "VALUE:T1NOS" ], [ "143", "997-999", "VALUE:T2a" ], [ "145", "997-999", "VALUE:T2a" ], [ "180", "997-999", "VALUE:T1NOS" ], [ "400", "997-999", "VALUE:T1NOS" ], [ "500", "997-999", "VALUE:T2NOS" ], [ "510", "997-999", "VALUE:T2a" ], [ "520", "997-999", "VALUE:T2b" ], [ "525", "997-999", "VALUE:T2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv2_xkq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv2_xkq.json
deleted file mode 100644
index d78fa83c8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_ajcc6_table_csv2_xkq.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_cytology_ajcc6_table_csv2_xkq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Cytology AJCC 6 Table CSv2",
- "title" : "Extension Cytology AJCC 6 Table CSv2",
- "notes" : "**Note**: For CS Version 2 cases (CS Version Input Original equals 02XXXX) or Year of Diagnosis greater than 2009) and for CS Extension codes 100-110, 116-120, 126-400, and 510-540 ONLY. The T category for AJCC 6 staging is assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site Specific Factor 2 as shown in this table.",
- "last_modified" : "2015-05-27T16:19:14.656Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "VALUE:T1NOS" ], [ "110", "000", "VALUE:T1a" ], [ "116", "000", "VALUE:T1NOS" ], [ "120", "000", "VALUE:T1b" ], [ "126", "000", "VALUE:T1b" ], [ "130", "000", "VALUE:T1c" ], [ "140", "000", "VALUE:T1NOS" ], [ "160", "000", "VALUE:T3a" ], [ "400", "000", "VALUE:T1NOS" ], [ "510", "000", "VALUE:T2a" ], [ "520", "000", "VALUE:T2b" ], [ "523", "000", "VALUE:T2NOS" ], [ "530", "000", "VALUE:T1NOS" ], [ "540", "000", "VALUE:T1NOS" ], [ "100", "010", "VALUE:T3a" ], [ "110", "010", "VALUE:T3a" ], [ "116", "010", "VALUE:T3a" ], [ "120", "010", "VALUE:T3a" ], [ "126", "010", "VALUE:T3a" ], [ "130", "010", "VALUE:T3a" ], [ "140", "010", "VALUE:T3a" ], [ "160", "010", "VALUE:T3a" ], [ "400", "010", "VALUE:T3a" ], [ "510", "010", "VALUE:T3a" ], [ "520", "010", "VALUE:T3a" ], [ "523", "010", "VALUE:T3a" ], [ "530", "010", "VALUE:T3a" ], [ "540", "010", "VALUE:T3a" ], [ "100", "020", "VALUE:T1NOS" ], [ "110", "020", "VALUE:T1a" ], [ "116", "020", "VALUE:T1NOS" ], [ "120", "020", "VALUE:T1b" ], [ "126", "020", "VALUE:T1b" ], [ "130", "020", "VALUE:T1c" ], [ "140", "020", "VALUE:T1NOS" ], [ "160", "020", "VALUE:T3a" ], [ "400", "020", "VALUE:T1NOS" ], [ "510", "020", "VALUE:T2a" ], [ "520", "020", "VALUE:T2b" ], [ "523", "020", "VALUE:T2NOS" ], [ "530", "020", "VALUE:T1NOS" ], [ "540", "020", "VALUE:T1NOS" ], [ "100", "888, 988", "ERROR:" ], [ "110", "888, 988", "ERROR:" ], [ "116", "888, 988", "ERROR:" ], [ "120", "888, 988", "ERROR:" ], [ "126", "888, 988", "ERROR:" ], [ "130", "888, 988", "ERROR:" ], [ "140", "888, 988", "ERROR:" ], [ "160", "888, 988", "ERROR:" ], [ "400", "888, 988", "ERROR:" ], [ "510", "888, 988", "ERROR:" ], [ "520", "888, 988", "ERROR:" ], [ "523", "888, 988", "ERROR:" ], [ "530", "888, 988", "ERROR:" ], [ "540", "888, 988", "ERROR:" ], [ "100", "997-999", "VALUE:T1NOS" ], [ "110", "997-999", "VALUE:T1a" ], [ "116", "997-999", "VALUE:T1NOS" ], [ "120", "997-999", "VALUE:T1b" ], [ "126", "997-999", "VALUE:T1b" ], [ "130", "997-999", "VALUE:T1c" ], [ "140", "997-999", "VALUE:T1NOS" ], [ "160", "997-999", "VALUE:T3a" ], [ "400", "997-999", "VALUE:T1NOS" ], [ "510", "997-999", "VALUE:T2a" ], [ "520", "997-999", "VALUE:T2b" ], [ "523", "997-999", "VALUE:T2NOS" ], [ "530", "997-999", "VALUE:T1NOS" ], [ "540", "997-999", "VALUE:T1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xkl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xkl.json
deleted file mode 100644
index 56f9c4eef..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xkl.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_cytology_summary_stage_xkl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Cytology Summary Stage",
- "title" : "Extension Cytology Summary Stage Table",
- "notes" : "**Note**: For CS Extension codes 100-110, 115-120, 125-130, 135-140, and 160-400 ONLY. The SS77 and SS2000 stages are assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site Specific Factor 2 (SSF2) as shown in this table.",
- "last_modified" : "2015-05-27T16:19:14.710Z",
- "definition" : [ {
- "key" : "ssf2",
- "name" : "CS SSF2",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "VALUE:L", "VALUE:L" ], [ "010", "VALUE:RE", "VALUE:RE" ], [ "020", "VALUE:L", "VALUE:L" ], [ "888", "ERROR:", "ERROR:" ], [ "988, 997-999", "VALUE:L", "VALUE:L" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xkp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xkp.json
deleted file mode 100644
index b37355833..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xkp.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_cytology_summary_stage_xkp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Cytology Summary Stage",
- "title" : "Extension Cytology Summary Stage Table",
- "notes" : "**Note**: For CS Extension codes 100-400, 530, and 540 ONLY. The SS77 and SS2000 stages are assigned based on the value of CS Extension and peritoneal cytology status coded in CS Site Specific Factor 2 as shown in this table.",
- "last_modified" : "2015-05-27T16:19:14.758Z",
- "definition" : [ {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "VALUE:L", "VALUE:L" ], [ "010", "VALUE:RE", "VALUE:RE" ], [ "020", "VALUE:L", "VALUE:L" ], [ "888", "ERROR:", "ERROR:" ], [ "988, 997-999", "VALUE:L", "VALUE:L" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xqa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xqa.json
deleted file mode 100644
index 057bb9912..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_cytology_summary_stage_xqa.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_cytology_summary_stage_xqa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Cytology Summary Stage",
- "title" : "Extension Cytology Summary Stage Table",
- "notes" : "**Note**: For CS Extension codes 100-120, 125-130, 135-140, 160-400, and 540 ONLY. The SS77 or SS2000 category (SS) is assigned based on the value of CS Extension and peritoneal cytology status as coded in Site Specific Factor 2 (SSF2).",
- "last_modified" : "2015-05-27T16:19:14.817Z",
- "definition" : [ {
- "key" : "ssf2",
- "name" : "SSF2 Code",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "VALUE:L", "VALUE:L" ], [ "010", "VALUE:RE", "VALUE:RE" ], [ "020", "VALUE:L", "VALUE:L" ], [ "888", "ERROR", "ERROR:" ], [ "988", "VALUE:L", "VALUE:L" ], [ "997-999", "VALUE:L", "VALUE:L" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_6_cab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_6_cab.json
deleted file mode 100644
index afbc7da2b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_6_cab.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_eval_6_cab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note 1**: THE CODES FOR THIS ITEM FOR PROSTATE DIFFER FROM THE CODES USED FOR MOST OTHER SITES.\n\n**Note 2**: Since extension detail is coded in both CS Extension - Clinical Extension and CS Site-Specific Factor 3 - Pathologic Extension, the registrar should assign the CS Tumor Size/Ext Eval based on which of these two fields reflects the best information for the case; thus, determining the T category. In general, clinical eval codes (0, 1, 5, and 9) indicate the information from CS Extension - Clinical Extension should be used while pathologic eval codes (3, 4, 6, and 8) indicate the information from CS Site-Specific Factor 3 - Pathologic Extension should be used. The unique eval code 2 indicates information from CS Extension - Clinical Extension should be used but assigns a pathologic (p) staging basis. However, if the assigned eval code is directed to information that is not useful for staging, the algorithm will override this choice and use information from the field most useful for staging. See CS Extension - Clinical Extension Note 8 and the Special Calculation tables for further details.\n\n* If prostatectomy was performed and the information is useful for staging (CS Site-Specific Factor 3 is coded 200-750), assign CS Tumor Size/Ext Eval code 4 or 6.\n* If autopsy is performed and the information is useful for staging (CS Site-Specific Factor 3 is coded 200-750), assign CS Tumor Size/Ext Eval code 3 or 8.\n* If prostatectomy or autopsy was performed but the information is not useful for staging (CS Site-Specific Factor 3 is coded 950-999), CS Tumor Size/Ext Eval should be assigned based on the information coded in CS Extension - Clinical Extension.\n* When CS Extension - Clinical Extension is coded 100-300, 410-750 (invasive) and CS Site-Specific Factor 3 - Pathologic Extension is coded 000 (noninvasive), assign CS Tumor Size/Ext Eval based on information coded in CS Extension - Clinical Extension.\n* When CS Extension - Clinical Extension is coded 000, 950, or 999 and CS Site-Specific Factor 3 - Pathologic Extension is coded 000 (noninvasive), assign CS Tumor Size/Ext Eval based on information coded in CS Site-Specific Factor 3 - Pathologic Extension.\n\n**Note 3**: AJCC allows pathologic staging to be assigned on the basis of some biopsies without resection. According to the AJCC manual, \"In general, total prostatoseminal-vesiculectomy, including regional node specimen, and histologic confirmation are required for pathologic T classification\". Simple prostatectomy is acceptable for pathologic T classification when disease is confined to the prostate and margins are negative. Under certain circumstances, pathologic T classification can be determined with other means. \"For example, (1) positive biopsy of the rectum permits a pT4 classification without prostatoseminal-vesiculectomy, and (2) a biopsy revealing carcinoma in extraprostatic soft tissue permits a pT3 classification, as does a biopsy revealing adenocarcinoma infiltrating the seminal vesicles.\" For these circumstances, assign CS Tumor Size/Ext Eval code 2 unless prostatectomy/autopsy information coded in CS Site-Specific Factor 3 - Pathologic Extension derives a higher T category.\n\n**Note 4**: According to AJCC, staging basis for transurethral resection of prostate (TURP) is clinical and is recorded as CS Tumor Size/Ext Eval \"1\" (c).\n\n**Note 5**: For CS Extension - Clinical Extension codes 100 -150 without prostatectomy assign CS Tumor Size/Ext Eval code 1 as these extension codes are only proven by TURP or needle core biopsy.\n\n**Note 6**: For CS Extension - Clinical Extension codes 200 - 240 without prostatectomy assign CS Tumor Size/Ext Eval code 0 as these extension codes are based on physical examination and/or imaging only and NOT biopsy.\n\n**Note 7**: If the extension (CS Extension - Clinical Extension) prior to neoadjuvant therapy is as extensive or more extensive than the extension at prostatectomy (CS Site-Specific Factor 3 - Pathologic Extension), assign CS Tumor Size/Ext Eval code 5.\n\n**Note 8**: If the extension (CS Extension - Clinical Extension) prior to neoadjuvant therapy is less extensive than the extension at prostatectomy (CS Site-Specific Factor 3 - Pathologic Extension), assign CS Tumor Size/Ext Eval code 6.",
- "last_modified" : "2015-05-27T16:19:14.859Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging: \n\nNo prostatectomy performed or prostatectomy performed but information not useful for staging (see Note 2). Evaluation based on physical examination including digital rectal examination (DRE), imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging: \n\nNo prostatectomy performed or prostatectomy performed but information not useful for staging (see Note 2). Evaluation based on endoscopic examination, diagnostic biopsy, including needle core biopsy or fine needle aspiration biopsy, transurethral resection (TURP) or other invasive techniques including surgical observation without biopsy. No autopsy evidence used.", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging: \n\nNo prostatectomy performed, but positive biopsy of extraprostatic tissue allows assignment to CS Extension codes 410-700 (see Note 3). \n\nOR\n\nProstatectomy performed but positive biopsy of extraprostatic tissue derives higher T category (T3/T4 based on CS Extension codes 410-700) than the T category derived from prostatectomy (see Note 3).\n\nNot to be used with CS Extension codes 000-300.", "VALUE:p" ], [ "3", "Meets criteria for AJCC pathologic staging: \n\nNo prostatectomy done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p" ], [ "4", "Meets criteria for AJCC pathologic staging:\n\nProstatectomy performed WITHOUT pre-surgical systemic treatment or radiation \n\nOR \n\nProstatectomy performed, unknown if pre-surgical systemic treatment or radiation performed AND evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nProstatectomy performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence (CS Extension - Clinical Extension), unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nProstatectomy performed AFTER neoadjuvant therapy and tumor size/extension based on pathologic evidence (CS Site-Specific Factor 3 - Pathologic Extension) because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a" ], [ "9", "Unknown if prostatectomy done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_6_cac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_6_cac.json
deleted file mode 100644
index 556fb33fc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_6_cac.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_eval_6_cac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: This item reflects the validity of the classification of CS Tumor Size and CS Extension based on the diagnostic methods employed.",
- "last_modified" : "2015-05-27T16:19:14.916Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "No surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c" ], [ "1", "No surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques including surgical observation without biopsy. No autopsy evidence used.\n\nDoes not meet criteria for AJCC pathologic staging.", "VALUE:c" ], [ "2", "No surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p" ], [ "3", "Surgical resection performed WITHOUT pre-surgical systemic treatment or radiation OR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed. Evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n \nMeets criteria for AJCC pathologic staging.", "VALUE:p" ], [ "5", "Surgical resection performed WITH pre-surgical systemic treatment or radiation, BUT tumor size/extension based on clinical evidence.", "VALUE:c" ], [ "6", "Surgical resection performed WITH pre-surgical systemic treatment or radiation; tumor size and/or extension based on pathologic evidence.", "VALUE:yp" ], [ "8", "Evidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cab.json
deleted file mode 100644
index 13ecbfb47..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cab.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_eval_cab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note 1**: THE CODES FOR THIS ITEM FOR PROSTATE DIFFER FROM THE CODES USED FOR MOST OTHER SITES.\n\n**Note 2**: Since extension detail is coded in both CS Extension - Clinical Extension and CS Site-Specific Factor 3 - Pathologic Extension, the registrar should assign the CS Tumor Size/Ext Eval based on which of these two fields reflects the best information for the case; thus, determining the T category. In general, clinical eval codes (0, 1, 5, and 9) indicate the information from CS Extension - Clinical Extension should be used while pathologic eval codes (3, 4, 6, and 8) indicate the information from CS Site-Specific Factor 3 - Pathologic Extension should be used. The unique eval code 2 indicates information from CS Extension - Clinical Extension should be used but assigns a pathologic (p) staging basis. However, if the assigned eval code is directed to information that is not useful for staging, the algorithm will override this choice and use information from the field most useful for staging. See CS Extension - Clinical Extension Note 8 and the Special Calculation tables for further details.\n\n* If prostatectomy was performed and the information is useful for staging (CS Site-Specific Factor 3 is coded 200-750), assign CS Tumor Size/Ext Eval code 4 or 6.\n* If autopsy is performed and the information is useful for staging (CS Site-Specific Factor 3 is coded 200-750), assign CS Tumor Size/Ext Eval code 3 or 8.\n* If prostatectomy or autopsy was performed but the information is not useful for staging (CS Site-Specific Factor 3 is coded 950-999), CS Tumor Size/Ext Eval should be assigned based on the information coded in CS Extension - Clinical Extension.\n* When CS Extension - Clinical Extension is coded 100-300, 410-750 (invasive) and CS Site-Specific Factor 3 - Pathologic Extension is coded 000 (noninvasive), assign CS Tumor Size/Ext Eval based on information coded in CS Extension - Clinical Extension.\n* When CS Extension - Clinical Extension is coded 000, 950, or 999 and CS Site-Specific Factor 3 - Pathologic Extension is coded 000 (noninvasive), assign CS Tumor Size/Ext Eval based on information coded in CS Site-Specific Factor 3 - Pathologic Extension.\n\n**Note 3**: AJCC allows pathologic staging to be assigned on the basis of some biopsies without resection. According to the AJCC manual, \"In general, total prostatoseminal-vesiculectomy, including regional node specimen, and histologic confirmation are required for pathologic T classification\". Simple prostatectomy is acceptable for pathologic T classification when disease is confined to the prostate and margins are negative. Under certain circumstances, pathologic T classification can be determined with other means. \"For example, (1) positive biopsy of the rectum permits a pT4 classification without prostatoseminal-vesiculectomy, and (2) a biopsy revealing carcinoma in extraprostatic soft tissue permits a pT3 classification, as does a biopsy revealing adenocarcinoma infiltrating the seminal vesicles.\" For these circumstances, assign CS Tumor Size/Ext Eval code 2 unless prostatectomy/autopsy information coded in CS Site-Specific Factor 3 - Pathologic Extension derives a higher T category.\n\n**Note 4**: According to AJCC, staging basis for transurethral resection of prostate (TURP) is clinical and is recorded as CS Tumor Size/Ext Eval \"1\" (c).\n\n**Note 5**: For CS Extension - Clinical Extension codes 100 -150 without prostatectomy assign CS Tumor Size/Ext Eval code 1 as these extension codes are only proven by TURP or needle core biopsy.\n\n**Note 6**: For CS Extension - Clinical Extension codes 200 - 240 without prostatectomy assign CS Tumor Size/Ext Eval code 0 as these extension codes are based on physical examination and/or imaging only and NOT biopsy.\n\n**Note 7**: If the extension (CS Extension - Clinical Extension) prior to neoadjuvant therapy is as extensive or more extensive than the extension at prostatectomy (CS Site-Specific Factor 3 - Pathologic Extension), assign CS Tumor Size/Ext Eval code 5.\n\n**Note 8**: If the extension (CS Extension - Clinical Extension) prior to neoadjuvant therapy is less extensive than the extension at prostatectomy (CS Site-Specific Factor 3 - Pathologic Extension), assign CS Tumor Size/Ext Eval code 6.",
- "last_modified" : "2015-05-27T16:19:14.970Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging: \n\nNo prostatectomy performed or prostatectomy performed but information not useful for staging (see Note 2). Evaluation based on physical examination including digital rectal examination (DRE), imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging: \n\nNo prostatectomy performed or prostatectomy performed but information not useful for staging (see Note 2). Evaluation based on endoscopic examination, diagnostic biopsy, including needle core biopsy or fine needle aspiration biopsy, transurethral resection (TURP) or other invasive techniques including surgical observation without biopsy. No autopsy evidence used.", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging: \n\nNo prostatectomy performed, but positive biopsy of extraprostatic tissue allows assignment to CS Extension codes 410-700 (see Note 3). \n\nOR\n\nProstatectomy performed but positive biopsy of extraprostatic tissue derives higher T category (T3/T4 based on CS Extension codes 410-700) than the T category derived from prostatectomy (see Note 3).\n\nNot to be used with CS Extension codes 000-300.", "VALUE:p" ], [ "3", "Meets criteria for AJCC pathologic staging: \n\nNo prostatectomy done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p" ], [ "4", "Meets criteria for AJCC pathologic staging:\n\nProstatectomy performed WITHOUT pre-surgical systemic treatment or radiation \n\nOR \n\nProstatectomy performed, unknown if pre-surgical systemic treatment or radiation performed AND evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nProstatectomy performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence (CS Extension - Clinical Extension), unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nProstatectomy performed AFTER neoadjuvant therapy and tumor size/extension based on pathologic evidence (CS Site-Specific Factor 3 - Pathologic Extension) because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a" ], [ "9", "Unknown if prostatectomy done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cac.json
deleted file mode 100644
index 5ec8ab853..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cac.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_eval_cac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: This item reflects the validity of the classification of CS Tumor Size and CS Extension based on the diagnostic methods employed.",
- "last_modified" : "2015-05-27T16:19:15.022Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "No surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c" ], [ "1", "No surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques including surgical observation without biopsy. No autopsy evidence used.\n\nDoes not meet criteria for AJCC pathologic staging.", "VALUE:c" ], [ "2", "No surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p" ], [ "3", "Surgical resection performed WITHOUT pre-surgical systemic treatment or radiation OR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed. Evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n \nMeets criteria for AJCC pathologic staging.", "VALUE:p" ], [ "5", "Surgical resection performed WITH pre-surgical systemic treatment or radiation, BUT tumor size/extension based on clinical evidence.", "VALUE:c" ], [ "6", "Surgical resection performed WITH pre-surgical systemic treatment or radiation; tumor size and/or extension based on pathologic evidence.", "VALUE:yp" ], [ "8", "Evidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cae.json
deleted file mode 100644
index 8db6727f5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cae.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "extension_eval_cae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "last_modified" : "2015-05-27T16:19:15.072Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_tdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_tdescriptor",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging:\n\nEvaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No surgical resection done.", "VALUE:c", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging:\n\nEvaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques, including surgical observation without biopsy. No surgical resection done.", "VALUE:c", "VALUE:p" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nEvidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy). No surgical resection done.", "VALUE:p", "VALUE:p" ], [ "3", "Either meets criteria for AJCC pathologic staging:\n\nA. Surgical resection performed WITHOUT pre-surgical systemic treatment or radiation \nOR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed\nAND Evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n\nB. No surgical resection done. Evaluation based on positive biopsy of highest T classification.", "VALUE:p", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence, because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp", "VALUE:yp" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy)", "VALUE:a", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_caf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_caf.json
deleted file mode 100644
index b70d4a285..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_caf.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_eval_caf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: According to AJCC, \"The use of the term pathologic staging is reserved for patients who undergo staging laparotomy with an explicit intent to assess the presence of abdominal disease or to define histologic microscopic disease extent in the abdomen. Staging laparotomy and pathological staging have been essentially abandoned as useful procedures.\" (7th ed., page 610) Therefore, Collaborative Staging uses a modified evaluation scheme for lymphomas, and it applies to the CS Tumor Size/Ext-Eval field only. The other Eval fields are coded as \"not applicable\" for this schema.",
- "last_modified" : "2015-05-27T16:19:15.118Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging:\n\nNo staging laparotomy done. No autopsy evidence used", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy)", "VALUE:p" ], [ "3", "Meets criteria for AJCC pathologic staging:\n\nStaging laparotomy done", "VALUE:p" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a" ], [ "9", "Unknown if staging laparotomy done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cag.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cag.json
deleted file mode 100644
index d5b659ef1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cag.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_eval_cag",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: According to AJCC, staging basis for transurethral resection of bladder tumor (TURBT) is clinical and is recorded as CS Tumor Size/Ext Eval \"1\" (c).",
- "last_modified" : "2015-05-27T16:19:15.161Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging: \n\n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging:\n\n\nNo surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques including surgical observation without biopsy. No autopsy evidence used.", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p" ], [ "3", "Either criteria meets AJCC pathologic staging:\n\n\nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation \n\nOR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed \nAND evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n\nNo surgical resection done. Evaluation based on positive biopsy of highest T classification.", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence, because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp" ], [ "8", "Meets criteria for autopsy (a) staging:\n\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_caj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_caj.json
deleted file mode 100644
index 917a1426c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_caj.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_eval_caj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: The staging basis 6 for this schema is blank because AJCC stage is not applicable in the 6th Edition.",
- "last_modified" : "2015-05-27T16:19:15.213Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c", "VALUE:" ], [ "1", "Does not meet criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques including surgical observation without biopsy. No autopsy evidence used.", "VALUE:c", "VALUE:" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p", "VALUE:" ], [ "3", "Either criteria meets AJCC pathologic staging: \n\n \nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation \n\nOR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed AND evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n\n \n\nNo surgical resection done. Evaluation based on positive biopsy of highest T classification.", "VALUE:p", "VALUE:" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c", "VALUE:" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp", "VALUE:" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a", "VALUE:" ], [ "9", "Not applicable for this site (Version 1)\nUnknown if surgical resection done\nNot assessed; cannot be accessed\nUnknown if accessed\nNot documented in patient record", "VALUE:c", "VALUE:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cak.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cak.json
deleted file mode 100644
index bafa72a38..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cak.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_eval_cak",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: CS Tumor Size/Ext Eval for ocular adnexal lymphomas is based on the standard table for AJCC 7th Edition staging. Code 3 is appropriate ONLY for 2004-2009 cases where a staging laparotomy is performed. The AJCC 6th Edition noted: \"Staging laparotomy and pathologic staging have been essentially abandoned as useful procedures.\"",
- "last_modified" : "2015-05-27T16:19:15.259Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, other non-invasive clinical evidence, endoscopic examination, fine-needle aspiration, or other invasive techniques including surgical observation without biopsy. No autopsy evidence used", "VALUE:c", "VALUE:c" ], [ "1", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on diagnostic biopsy excluding fine-needle aspiration. No autopsy evidence used.", "VALUE:p", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p", "VALUE:c" ], [ "3", "Staging laparotomy done\n\nNote: This code is retained for compatibility with lymphoma data collected under AJCC 6 definitions. The code is available for 2004-2009 cases where a staging laparotomy is performed. See code 4 for pathologic criteria for cases diagnosed in 2010 and later.", "VALUE:p", "VALUE:p" ], [ "4", "Meets criteria for AJCC pathologic staging:\n\nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation, \nOR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed,\nAND evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n\nNo surgical resection done. Evaluation based on positive biopsy of highest T classification.", "VALUE:p", "VALUE:c" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant treatment) is more extensive (see code 6).", "VALUE:c", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence, because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp", "VALUE:c" ], [ "8", "Meets criteria for AJCC autopsy staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:a", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cal.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cal.json
deleted file mode 100644
index ba5c5d47b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cal.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_eval_cal",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: The staging basis AJCC 7 for this schema is blank because AJCC stage is not applicable in the 7th Edition.",
- "last_modified" : "2015-05-27T16:19:15.307Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis AJCC 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_ajcc_6",
- "name" : "Staging Basis AJCC 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging: \n \n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques, including surgical observation without biopsy. No autopsy evidence used.", "VALUE:", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy)", "VALUE:", "VALUE:p" ], [ "3", "Either criteria meets AJCC pathologic staging:\n\nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation \nOR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed\nAND Evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n\nNo surgical resection done. Evaluation based on positive biopsy of highest T classification.", "VALUE:", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence, because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:", "VALUE:yp" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy)", "VALUE:", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cam.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cam.json
deleted file mode 100644
index c1457d9d4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cam.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_eval_cam",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: The staging basis AJCC 7 for this schema is blank because AJCC stage is not applicable for this site and histology. Data was collected in this item in CSv1 and is being retained.",
- "last_modified" : "2015-05-27T16:19:15.353Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "OBSOLETE DATA RETAINED V0200\n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:", "VALUE:c" ], [ "1", "OBSOLETE DATA RETAINED V0200\n\nNo surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques including surgical observation without biopsy. No autopsy evidence used. \nDoes not meet criteria for AJCC pathologic T staging.", "VALUE:", "VALUE:c" ], [ "2", "OBSOLETE DATA RETAINED V0200\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:", "VALUE:p" ], [ "3", "OBSOLETE DATA RETAINED V0200\n\nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation OR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed. Evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen. \nMeets criteria for AJCC pathologic T staging.", "VALUE:", "VALUE:p" ], [ "5", "OBSOLETE DATA RETAINED V0200\n\nSurgical resection performed WITH pre-surgical systemic treatment or radiation, BUT tumor size/extension based on clinical evidence.", "VALUE:", "VALUE:c" ], [ "6", "OBSOLETE DATA RETAINED V0200\n\nSurgical resection performed WITH pre-surgical systemic treatment or radiation; tumor size and/or extension based on pathologic evidence.", "VALUE:", "VALUE:yp" ], [ "8", "OBSOLETE DATA RETAINED V0200\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy).", "VALUE:", "VALUE:a" ], [ "9", "Unknown if surgical resection done V01XX\nNot assessed; cannot be assessed V01XX\nUnknown if assessed V01XX\n\nNot applicable for this schema V0200", "VALUE:", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cna.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cna.json
deleted file mode 100644
index 66d36671b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cna.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_eval_cna",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "notes" : "**Note**: The staging basis for this schema is blank because AJCC stage is not applicable.",
- "last_modified" : "2015-05-27T16:19:15.399Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "9", "Not applicable for this schema", "VALUE:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpa.json
deleted file mode 100644
index 1122dd95a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpa.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "extension_eval_cpa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "last_modified" : "2015-05-27T16:19:15.446Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging: \n \n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques, including surgical observation without biopsy. No autopsy evidence used.", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy)", "VALUE:p" ], [ "3", "Either criteria meets AJCC pathologic staging:\n\nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation \nOR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed\nAND Evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n\nNo surgical resection done. Evaluation based on positive biopsy of highest T classification.", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence, because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy)", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpb.json
deleted file mode 100644
index 442ed1b89..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpb.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id" : "extension_eval_cpb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "last_modified" : "2015-05-27T16:19:15.494Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging: \n \n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c", "VALUE:" ], [ "1", "Does not meet criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques, including surgical observation without biopsy. No autopsy evidence used.", "VALUE:c", "VALUE:" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy)", "VALUE:p", "VALUE:" ], [ "3", "Either criteria meets AJCC pathologic staging:\n\nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation \nOR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed\nAND Evaluation based on evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.\n\nNo surgical resection done. Evaluation based on positive biopsy of highest T classification.", "VALUE:p", "VALUE:" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c", "VALUE:" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence, because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp", "VALUE:" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy)", "VALUE:a", "VALUE:" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c", "VALUE:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpc.json
deleted file mode 100644
index 01442d3a5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_eval_cpc.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "extension_eval_cpc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Eval",
- "title" : "CS Tumor Size/Ext Eval",
- "last_modified" : "2015-05-27T16:19:15.541Z",
- "definition" : [ {
- "key" : "extension_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "tdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging: \n\nNo surgical resection done. Evaluation based on physical examination, imaging examination, or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c" ], [ "1", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done. Evaluation based on endoscopic examination, diagnostic biopsy, including fine needle aspiration biopsy, or other invasive techniques including surgical observation without biopsy. No autopsy evidence used.", "VALUE:p" ], [ "2", "Meets criteria for AJCC pathologic staging:\n\nNo surgical resection done, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy)", "VALUE:p" ], [ "3", "Meets criteria for AJCC pathologic staging:\n\nSurgical resection performed WITHOUT pre-surgical systemic treatment or radiation OR surgical resection performed, unknown if pre-surgical systemic treatment or radiation performed. Evidence acquired before treatment, supplemented or modified by the additional evidence acquired during and from surgery, particularly from pathologic examination of the resected specimen.", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy and tumor size/extension based on clinical evidence, unless the pathologic evidence at surgery (AFTER neoadjuvant) is more extensive (see code 6).", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging:\n\nSurgical resection performed AFTER neoadjuvant therapy AND tumor size/extension based on pathologic evidence, because pathologic evidence at surgery is more extensive than clinical evidence before treatment.", "VALUE:yp" ], [ "8", "Meets criteria for autopsy (a) staging:\n\nEvidence from autopsy only (tumor was unsuspected or undiagnosed prior to autopsy)", "VALUE:a" ], [ "9", "Unknown if surgical resection done\nNot assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_grade_lvi_xdm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_grade_lvi_xdm.json
deleted file mode 100644
index 079871a7d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_grade_lvi_xdm.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_grade_lvi_xdm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Grade LVI",
- "title" : "Extension Grade LVI Table",
- "notes" : "**Note**: For CS Extension codes 100, 300, 310, 320 and 500 ONLY, the AJCC 7th Edition T category is assigned based on the value of Grade and Lymph-vascular Invasion as shown in this table.",
- "last_modified" : "2015-05-27T16:19:15.587Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "1-2", "0", "VALUE:T1a" ], [ "100", "1-2", "1", "VALUE:T1b" ], [ "100", "1-2", "8-9", "VALUE:T1NOS" ], [ "100", "3-4", "0", "VALUE:T1b" ], [ "100", "3-4", "1", "VALUE:T1b" ], [ "100", "3-4", "8-9", "VALUE:T1b" ], [ "100", "9", "0", "VALUE:T1NOS" ], [ "100", "9", "1", "VALUE:T1b" ], [ "100", "9", "8-9", "VALUE:T1NOS" ], [ "300", "1-2", "0", "VALUE:T1a" ], [ "300", "1-2", "1", "VALUE:T1b" ], [ "300", "1-2", "8-9", "VALUE:T1NOS" ], [ "300", "3-4", "0", "VALUE:T1b" ], [ "300", "3-4", "1", "VALUE:T1b" ], [ "300", "3-4", "8-9", "VALUE:T1b" ], [ "300", "9", "0", "VALUE:T1NOS" ], [ "300", "9", "1", "VALUE:T1b" ], [ "300", "9", "8-9", "VALUE:T1NOS" ], [ "305", "1-2", "0", "VALUE:T1a" ], [ "305", "1-2", "1", "VALUE:T1b" ], [ "305", "1-2", "8-9", "VALUE:T1NOS" ], [ "305", "3-4", "0", "VALUE:T1b" ], [ "305", "3-4", "1", "VALUE:T1b" ], [ "305", "3-4", "8-9", "VALUE:T1b" ], [ "305", "9", "0", "VALUE:T1NOS" ], [ "305", "9", "1", "VALUE:T1b" ], [ "305", "9", "8-9", "VALUE:T1NOS" ], [ "310", "1-2", "0", "VALUE:T1a" ], [ "310", "1-2", "1", "VALUE:T1b" ], [ "310", "1-2", "8-9", "VALUE:T1a" ], [ "310", "3-4", "0", "VALUE:T1b" ], [ "310", "3-4", "1", "VALUE:T1b" ], [ "310", "3-4", "8-9", "VALUE:T1b" ], [ "310", "9", "0", "VALUE:T1a" ], [ "310", "9", "1", "VALUE:T1b" ], [ "310", "9", "8-9", "VALUE:T1a" ], [ "320", "1-2", "0", "VALUE:T1a" ], [ "320", "1-2", "1", "VALUE:T1b" ], [ "320", "1-2", "8-9", "VALUE:T1b" ], [ "320", "3-4", "0", "VALUE:T1b" ], [ "320", "3-4", "1", "VALUE:T1b" ], [ "320", "3-4", "8-9", "VALUE:T1b" ], [ "320", "9", "0", "VALUE:T1b" ], [ "320", "9", "1", "VALUE:T1b" ], [ "320", "9", "8-9", "VALUE:T1b" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ajcc6_xeh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ajcc6_xeh.json
deleted file mode 100644
index 0e91cabd0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ajcc6_xeh.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_mets_ajcc6_xeh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Mets AJCC6",
- "title" : "Extension Mets AJCC 6 Table",
- "notes" : "**Note**: For CS Mets at DX codes 00 and 99, the M category for AJCC 6 staging is determined by the value of CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:15.637Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000,050,100,110,120,130,140,150,160,170,200,300,400", "00", "VALUE:M0" ], [ "410,420", "00", "ERROR:" ], [ "450,458,460,470,500", "00", "VALUE:M0" ], [ "510-514", "00", "VALUE:M1" ], [ "550,560,565,570,600,650,660,665", "00", "VALUE:M0" ], [ "670,675,680,690", "00", "ERROR:" ], [ "700,750,800", "00", "VALUE:M0" ], [ "810", "00", "VALUE:M1" ], [ "850,900,950", "00", "VALUE:M0" ], [ "999", "00", "VALUE:MX" ], [ "000,050,100,110,120,130,140,150,160,170,200,300,400", "99", "VALUE:MX" ], [ "410,420", "99", "ERROR:" ], [ "450,458,460,470,500", "99", "VALUE:MX" ], [ "510-514", "99", "VALUE:M1" ], [ "550,560,565,570,600,650,660,665", "99", "VALUE:MX" ], [ "670,675,680,690", "99", "ERROR:" ], [ "700,750,800", "99", "VALUE:MX" ], [ "810", "99", "VALUE:M1" ], [ "850,900,950", "99", "VALUE:MX" ], [ "999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ssf1_ajcc6_xjo_m.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ssf1_ajcc6_xjo_m.json
deleted file mode 100644
index 0a9f539be..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ssf1_ajcc6_xjo_m.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_mets_ssf1_ajcc6_xjo_m",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Mets SSF1 AJCC6 - M",
- "title" : "Extension Mets SSF1 AJCC 6 Table - M",
- "subtitle" : "CS SSF1 888 with CS Extension and CS Mets at DX",
- "notes" : "**Note**: When CS Site-Specific Factor 1 is coded 888, OBSOLETE not applicable code, the T and M categories for AJCC 6 staging result in ERROR as shown in this table.",
- "last_modified" : "2015-05-27T16:19:15.894Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000-999", "00-99", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ssf1_ajcc6_xjo_t.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ssf1_ajcc6_xjo_t.json
deleted file mode 100644
index 148971468..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_mets_ssf1_ajcc6_xjo_t.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_mets_ssf1_ajcc6_xjo_t",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Mets SSF1 AJCC6 - T",
- "title" : "Extension Mets SSF1 AJCC 6 Table - T",
- "subtitle" : "CS SSF1 888 with CS Extension and CS Mets at DX",
- "notes" : "**Note**: When CS Site-Specific Factor 1 is coded 888, OBSOLETE not applicable code, the T and M categories for AJCC 6 staging result in ERROR as shown in this table.",
- "last_modified" : "2015-05-27T16:19:15.947Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000-999", "00-99", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc6_table_csv1_xbv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc6_table_csv1_xbv.json
deleted file mode 100644
index ac3f3d37c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc6_table_csv1_xbv.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_orchiectomy_lviajcc6_table_csv1_xbv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Orchiectomy LVI AJCC 6 Table CSv1",
- "title" : "Extension Orchiectomy LVI AJCC 6 Table CSv1",
- "notes" : "**Note**: For cases coded under CSv1 (CS Version Input Original less than 020000) and Year of Diagnosis less than 2010 with CS Extension codes 100-550 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Site-Specific Factor 4, Radical Orchiectomy Performed, and Lymph-Vascular Invasion if coded, as follows:",
- "last_modified" : "2015-05-27T16:19:15.990Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf4",
- "name" : "CS SSF 4",
- "type" : "INPUT"
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "VALUE:T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100,150,160,200,300,310,320,330,400,450,460,470,500,550", "001", "0,1,8,9", "ERROR:" ], [ "100,150,160,200,300,310,320,330,400,450,460,470,500,550", "001", "", "ERROR:" ], [ "100,150,160,200,300,310,320,330,400,450,460,470,500,550", "988", "0,1,8,9", "ERROR:" ], [ "100,150,160,200,300,310,320,330,400,450,460,470,500,550", "988", "", "ERROR:" ], [ "100", "000", "0,8,9", "VALUE:TX" ], [ "100", "000", "1", "VALUE:TX" ], [ "100", "000", "", "VALUE:TX" ], [ "100", "010", "0,8,9", "VALUE:T1" ], [ "100", "010", "1", "VALUE:T2" ], [ "100", "010", "", "VALUE:T1" ], [ "100", "999", "0,8,9", "VALUE:TX" ], [ "100", "999", "1", "VALUE:TX" ], [ "100", "999", "", "VALUE:TX" ], [ "150", "000", "0,8,9", "VALUE:TX" ], [ "150", "000", "1", "VALUE:TX" ], [ "150", "000", "", "VALUE:TX" ], [ "150", "010", "0,8,9", "VALUE:T2" ], [ "150", "010", "1", "VALUE:T2" ], [ "150", "010", "", "VALUE:T2" ], [ "150", "999", "0,8,9", "VALUE:TX" ], [ "150", "999", "1", "VALUE:TX" ], [ "150", "999", "", "VALUE:TX" ], [ "160", "000", "0,8,9", "VALUE:TX" ], [ "160", "000", "1", "VALUE:TX" ], [ "160", "000", "", "VALUE:TX" ], [ "160", "010", "0,8,9", "VALUE:T1" ], [ "160", "010", "1", "VALUE:T2" ], [ "160", "010", "", "VALUE:T1" ], [ "160", "999", "0,8,9", "VALUE:TX" ], [ "160", "999", "1", "VALUE:TX" ], [ "160", "999", "", "VALUE:TX" ], [ "200", "000", "0,8,9", "VALUE:TX" ], [ "200", "000", "1", "VALUE:TX" ], [ "200", "000", "", "VALUE:TX" ], [ "200", "010", "0,8,9", "VALUE:T2" ], [ "200", "010", "1", "VALUE:T2" ], [ "200", "010", "", "VALUE:T2" ], [ "200", "999", "0,8,9", "VALUE:TX" ], [ "200", "999", "1", "VALUE:TX" ], [ "200", "999", "", "VALUE:TX" ], [ "300", "000", "0,8,9", "VALUE:TX" ], [ "300", "000", "1", "VALUE:TX" ], [ "300", "000", "", "VALUE:TX" ], [ "300", "010", "0,8,9", "VALUE:T1" ], [ "300", "010", "1", "VALUE:T2" ], [ "300", "010", "", "VALUE:T1" ], [ "300", "999", "0,8,9", "VALUE:TX" ], [ "300", "999", "1", "VALUE:TX" ], [ "300", "999", "", "VALUE:TX" ], [ "310", "000", "0,8,9", "VALUE:TX" ], [ "310", "000", "1", "VALUE:TX" ], [ "310", "000", "", "VALUE:TX" ], [ "310", "010", "0,8,9", "VALUE:TX" ], [ "310", "010", "1", "VALUE:T2" ], [ "310", "010", "", "VALUE:TX" ], [ "310", "999", "0,8,9", "VALUE:TX" ], [ "310", "999", "1", "VALUE:TX" ], [ "310", "999", "", "VALUE:TX" ], [ "320", "000", "0,8,9", "VALUE:TX" ], [ "320", "000", "1", "VALUE:TX" ], [ "320", "000", "", "VALUE:TX" ], [ "320", "010", "0,8,9", "VALUE:T1" ], [ "320", "010", "1", "VALUE:T2" ], [ "320", "010", "", "VALUE:T1" ], [ "320", "999", "0,8,9", "VALUE:T1" ], [ "320", "999", "1", "VALUE:T2" ], [ "320", "999", "", "VALUE:T1" ], [ "330", "000", "0,8,9", "VALUE:TX" ], [ "330", "000", "1", "VALUE:TX" ], [ "330", "000", "", "VALUE:TX" ], [ "330", "010", "0,8,9", "VALUE:T2" ], [ "330", "010", "1", "VALUE:T2" ], [ "330", "010", "", "VALUE:T2" ], [ "330", "999", "0,8,9", "VALUE:T2" ], [ "330", "999", "1", "VALUE:T2" ], [ "330", "999", "", "VALUE:T2" ], [ "400", "000", "0,8,9", "VALUE:TX" ], [ "400", "000", "1", "VALUE:TX" ], [ "400", "000", "", "VALUE:TX" ], [ "400", "010", "0,8,9", "VALUE:T1" ], [ "400", "010", "1", "VALUE:T2" ], [ "400", "010", "", "VALUE:T1" ], [ "400", "999", "0,8,9", "VALUE:TX" ], [ "400", "999", "1", "VALUE:TX" ], [ "400", "999", "", "VALUE:TX" ], [ "450", "000", "0,8,9", "VALUE:TX" ], [ "450", "000", "1", "VALUE:TX" ], [ "450", "000", "", "VALUE:TX" ], [ "450", "010", "0,8,9", "VALUE:T2" ], [ "450", "010", "1", "VALUE:T2" ], [ "450", "010", "", "VALUE:T2" ], [ "450", "999", "0,8,9", "VALUE:TX" ], [ "450", "999", "1", "VALUE:TX" ], [ "450", "999", "", "VALUE:TX" ], [ "460", "000", "0,8,9", "VALUE:TX" ], [ "460", "000", "1", "VALUE:TX" ], [ "460", "000", "", "VALUE:TX" ], [ "460", "010", "0,8,9", "VALUE:T1" ], [ "460", "010", "1", "VALUE:T2" ], [ "460", "010", "", "VALUE:T1" ], [ "460", "999", "0,8,9", "VALUE:TX" ], [ "460", "999", "1", "VALUE:TX" ], [ "460", "999", "", "VALUE:TX" ], [ "470", "000", "0,8,9", "VALUE:TX" ], [ "470", "000", "1", "VALUE:TX" ], [ "470", "000", "", "VALUE:TX" ], [ "470", "010", "0,8,9", "VALUE:T1" ], [ "470", "010", "1", "VALUE:T2" ], [ "470", "010", "", "VALUE:T1" ], [ "470", "999", "0,8,9", "VALUE:TX" ], [ "470", "999", "1", "VALUE:TX" ], [ "470", "999", "", "VALUE:TX" ], [ "500", "000", "0,8,9", "VALUE:TX" ], [ "500", "000", "1", "VALUE:TX" ], [ "500", "000", "", "VALUE:TX" ], [ "500", "010", "0,8,9", "VALUE:T3" ], [ "500", "010", "1", "VALUE:T3" ], [ "500", "010", "", "VALUE:T3" ], [ "500", "999", "0,8,9", "VALUE:TX" ], [ "500", "999", "1", "VALUE:TX" ], [ "500", "999", "", "VALUE:TX" ], [ "550", "000", "0,8,9", "VALUE:TX" ], [ "550", "000", "1", "VALUE:TX" ], [ "550", "000", "", "VALUE:TX" ], [ "550", "010", "0,8,9", "VALUE:T3" ], [ "550", "010", "1", "VALUE:T3" ], [ "550", "010", "", "VALUE:T3" ], [ "550", "999", "0,8,9", "VALUE:T3" ], [ "550", "999", "1", "VALUE:T3" ], [ "550", "999", "", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc6_table_csv2_xis.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc6_table_csv2_xis.json
deleted file mode 100644
index 19ddae256..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc6_table_csv2_xis.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_orchiectomy_lviajcc6_table_csv2_xis",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Orchiectomy LVI AJCC 6 Table CSv2",
- "title" : "Extension Orchiectomy LVI AJCC 6 Table CSv2",
- "notes" : "**Note**: For cases coded under CSv2 (CS Version Input Original greater than 020000) or Year of Diagnosis greater than 2009 with CS Extension codes 100-550 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Site-Specific Factor 4, Radical Orchiectomy Performed, and Lymph-Vascular Invasion as follows:",
- "last_modified" : "2015-05-27T16:19:16.048Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf4",
- "name" : "CS SSF 4",
- "type" : "INPUT"
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "VALUE:T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100-550", "001", "0,1,8,9", "ERROR:" ], [ "100-550", "988", "0,1,8,9", "ERROR:" ], [ "100", "000", "0", "ERROR:" ], [ "100", "000", "1", "ERROR:" ], [ "100", "000", "8-9", "ERROR:" ], [ "100", "010", "0", "ERROR:" ], [ "100", "010", "1", "ERROR:" ], [ "100", "010", "8-9", "ERROR:" ], [ "100", "999", "0", "ERROR:" ], [ "100", "999", "1", "ERROR:" ], [ "100", "999", "8-9", "ERROR:" ], [ "150", "000", "0", "ERROR:" ], [ "150", "000", "1", "ERROR:" ], [ "150", "000", "8-9", "ERROR:" ], [ "150", "010", "0", "ERROR:" ], [ "150", "010", "1", "ERROR:" ], [ "150", "010", "8-9", "ERROR:" ], [ "150", "999", "0", "ERROR:" ], [ "150", "999", "1", "ERROR:" ], [ "150", "999", "8-9", "ERROR:" ], [ "160", "000", "0", "VALUE:TX" ], [ "160", "000", "1", "VALUE:TX" ], [ "160", "000", "8-9", "VALUE:TX" ], [ "160", "010", "0", "VALUE:T1" ], [ "160", "010", "1", "VALUE:T2" ], [ "160", "010", "8-9", "VALUE:T1" ], [ "160", "999", "0", "VALUE:TX" ], [ "160", "999", "1", "VALUE:TX" ], [ "160", "999", "8-9", "VALUE:TX" ], [ "200", "000", "0", "VALUE:TX" ], [ "200", "000", "1", "VALUE:TX" ], [ "200", "000", "8-9", "VALUE:TX" ], [ "200", "010", "0", "VALUE:T2" ], [ "200", "010", "1", "VALUE:T2" ], [ "200", "010", "8-9", "VALUE:T2" ], [ "200", "999", "0", "VALUE:TX" ], [ "200", "999", "1", "VALUE:TX" ], [ "200", "999", "8-9", "VALUE:TX" ], [ "300", "000", "0", "VALUE:TX" ], [ "300", "000", "1", "VALUE:TX" ], [ "300", "000", "8-9", "VALUE:TX" ], [ "300", "010", "0", "VALUE:T1" ], [ "300", "010", "1", "VALUE:T2" ], [ "300", "010", "8-9", "VALUE:T1" ], [ "300", "999", "0", "VALUE:TX" ], [ "300", "999", "1", "VALUE:TX" ], [ "300", "999", "8-9", "VALUE:TX" ], [ "310", "000", "0", "VALUE:TX" ], [ "310", "000", "1", "VALUE:TX" ], [ "310", "000", "8-9", "VALUE:TX" ], [ "310", "010", "0", "VALUE:TX" ], [ "310", "010", "1", "VALUE:T2" ], [ "310", "010", "8-9", "VALUE:TX" ], [ "310", "999", "0", "VALUE:TX" ], [ "310", "999", "1", "VALUE:TX" ], [ "310", "999", "8-9", "VALUE:TX" ], [ "320", "000", "0", "VALUE:TX" ], [ "320", "000", "1", "VALUE:TX" ], [ "320", "000", "8-9", "VALUE:TX" ], [ "320", "010", "0", "VALUE:T1" ], [ "320", "010", "1", "VALUE:T2" ], [ "320", "010", "8-9", "VALUE:T1" ], [ "320", "999", "0", "VALUE:T1" ], [ "320", "999", "1", "VALUE:T2" ], [ "320", "999", "8-9", "VALUE:T1" ], [ "330", "000", "0", "VALUE:TX" ], [ "330", "000", "1", "VALUE:TX" ], [ "330", "000", "8-9", "VALUE:TX" ], [ "330", "010", "0", "VALUE:T2" ], [ "330", "010", "1", "VALUE:T2" ], [ "330", "010", "8-9", "VALUE:T2" ], [ "330", "999", "0", "VALUE:T2" ], [ "330", "999", "1", "VALUE:T2" ], [ "330", "999", "8-9", "VALUE:T2" ], [ "400", "000", "0", "ERROR:" ], [ "400", "000", "1", "ERROR:" ], [ "400", "000", "8-9", "ERROR:" ], [ "400", "010", "0", "ERROR:" ], [ "400", "010", "1", "ERROR:" ], [ "400", "010", "8-9", "ERROR:" ], [ "400", "999", "0", "ERROR:" ], [ "400", "999", "1", "ERROR:" ], [ "400", "999", "8-9", "ERROR:" ], [ "450", "000", "0", "ERROR:" ], [ "450", "000", "1", "ERROR:" ], [ "450", "000", "8-9", "ERROR:" ], [ "450", "010", "0", "ERROR:" ], [ "450", "010", "1", "ERROR:" ], [ "450", "010", "8-9", "ERROR:" ], [ "450", "999", "0", "ERROR:" ], [ "450", "999", "1", "ERROR:" ], [ "450", "999", "8-9", "ERROR:" ], [ "460", "000", "0", "VALUE:TX" ], [ "460", "000", "1", "VALUE:TX" ], [ "460", "000", "8-9", "VALUE:TX" ], [ "460", "010", "0", "VALUE:T1" ], [ "460", "010", "1", "VALUE:T2" ], [ "460", "010", "8-9", "VALUE:T1" ], [ "460", "999", "0", "VALUE:TX" ], [ "460", "999", "1", "VALUE:TX" ], [ "460", "999", "8-9", "VALUE:TX" ], [ "470", "000", "0", "VALUE:TX" ], [ "470", "000", "1", "VALUE:TX" ], [ "470", "000", "8-9", "VALUE:TX" ], [ "470", "010", "0", "VALUE:T1" ], [ "470", "010", "1", "VALUE:T2" ], [ "470", "010", "8-9", "VALUE:T1" ], [ "470", "999", "0", "VALUE:TX" ], [ "470", "999", "1", "VALUE:TX" ], [ "470", "999", "8-9", "VALUE:TX" ], [ "500", "000", "0", "VALUE:TX" ], [ "500", "000", "1", "VALUE:TX" ], [ "500", "000", "8-9", "VALUE:TX" ], [ "500", "010", "0", "VALUE:T3" ], [ "500", "010", "1", "VALUE:T3" ], [ "500", "010", "8-9", "VALUE:T3" ], [ "500", "999", "0", "VALUE:TX" ], [ "500", "999", "1", "VALUE:TX" ], [ "500", "999", "8-9", "VALUE:TX" ], [ "550", "000", "0", "VALUE:TX" ], [ "550", "000", "1", "VALUE:TX" ], [ "550", "000", "8-9", "VALUE:TX" ], [ "550", "010", "0", "VALUE:T3" ], [ "550", "010", "1", "VALUE:T3" ], [ "550", "010", "8-9", "VALUE:T3" ], [ "550", "999", "0", "VALUE:T3" ], [ "550", "999", "1", "VALUE:T3" ], [ "550", "999", "8-9", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc7_xgs.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc7_xgs.json
deleted file mode 100644
index af1c1782d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_orchiectomy_lviajcc7_xgs.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_orchiectomy_lviajcc7_xgs",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Orchiectomy LVI AJCC7",
- "title" : "Extension Orchiectomy LVI AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 160-330 and 460-550 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Site-Specific Factor 4, Radical Orchiectomy Performed, and Lymph-Vascular Invasion as follows:",
- "last_modified" : "2015-05-27T16:19:16.106Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf4",
- "name" : "CS SSF 4",
- "type" : "INPUT"
- }, {
- "key" : "lvi",
- "name" : "Lymph-vascular Invasion",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "VALUE:T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "160-330, 460-550", "001", "0,1,8,9", "ERROR:" ], [ "160-330, 460-550", "988", "0,1,8,9", "ERROR:" ], [ "160", "000", "0", "VALUE:TX" ], [ "160", "000", "1", "VALUE:TX" ], [ "160", "000", "8-9", "VALUE:TX" ], [ "160", "010", "0", "VALUE:T1" ], [ "160", "010", "1", "VALUE:T2" ], [ "160", "010", "8-9", "VALUE:T1" ], [ "160", "999", "0", "VALUE:TX" ], [ "160", "999", "1", "VALUE:TX" ], [ "160", "999", "8-9", "VALUE:TX" ], [ "200", "000", "0", "VALUE:TX" ], [ "200", "000", "1", "VALUE:TX" ], [ "200", "000", "8-9", "VALUE:TX" ], [ "200", "010", "0", "VALUE:T2" ], [ "200", "010", "1", "VALUE:T2" ], [ "200", "010", "8-9", "VALUE:T2" ], [ "200", "999", "0", "VALUE:TX" ], [ "200", "999", "1", "VALUE:TX" ], [ "200", "999", "8-9", "VALUE:TX" ], [ "300", "000", "0", "VALUE:TX" ], [ "300", "000", "1", "VALUE:TX" ], [ "300", "000", "8-9", "VALUE:TX" ], [ "300", "010", "0", "VALUE:T1" ], [ "300", "010", "1", "VALUE:T2" ], [ "300", "010", "8-9", "VALUE:T1" ], [ "300", "999", "0", "VALUE:TX" ], [ "300", "999", "1", "VALUE:TX" ], [ "300", "999", "8-9", "VALUE:TX" ], [ "310", "000", "0", "VALUE:TX" ], [ "310", "000", "1", "VALUE:TX" ], [ "310", "000", "8-9", "VALUE:TX" ], [ "310", "010", "0", "VALUE:TX" ], [ "310", "010", "1", "VALUE:T2" ], [ "310", "010", "8-9", "VALUE:TX" ], [ "310", "999", "0", "VALUE:TX" ], [ "310", "999", "1", "VALUE:TX" ], [ "310", "999", "8-9", "VALUE:TX" ], [ "320", "000", "0", "VALUE:TX" ], [ "320", "000", "1", "VALUE:TX" ], [ "320", "000", "8-9", "VALUE:TX" ], [ "320", "010", "0", "VALUE:T1" ], [ "320", "010", "1", "VALUE:T2" ], [ "320", "010", "8-9", "VALUE:T1" ], [ "320", "999", "0", "VALUE:T1" ], [ "320", "999", "1", "VALUE:T2" ], [ "320", "999", "8-9", "VALUE:T1" ], [ "330", "000", "0", "VALUE:TX" ], [ "330", "000", "1", "VALUE:TX" ], [ "330", "000", "8-9", "VALUE:TX" ], [ "330", "010", "0", "VALUE:T2" ], [ "330", "010", "1", "VALUE:T2" ], [ "330", "010", "8-9", "VALUE:T2" ], [ "330", "999", "0", "VALUE:T2" ], [ "330", "999", "1", "VALUE:T2" ], [ "330", "999", "8-9", "VALUE:T2" ], [ "460", "000", "0", "VALUE:TX" ], [ "460", "000", "1", "VALUE:TX" ], [ "460", "000", "8-9", "VALUE:TX" ], [ "460", "010", "0", "VALUE:T1" ], [ "460", "010", "1", "VALUE:T2" ], [ "460", "010", "8-9", "VALUE:T1" ], [ "460", "999", "0", "VALUE:TX" ], [ "460", "999", "1", "VALUE:TX" ], [ "460", "999", "8-9", "VALUE:TX" ], [ "470", "000", "0", "VALUE:TX" ], [ "470", "000", "1", "VALUE:TX" ], [ "470", "000", "8-9", "VALUE:TX" ], [ "470", "010", "0", "VALUE:T2" ], [ "470", "010", "1", "VALUE:T2" ], [ "470", "010", "8-9", "VALUE:T2" ], [ "470", "999", "0", "VALUE:TX" ], [ "470", "999", "1", "VALUE:TX" ], [ "470", "999", "8-9", "VALUE:TX" ], [ "500", "000", "0", "VALUE:TX" ], [ "500", "000", "1", "VALUE:TX" ], [ "500", "000", "8-9", "VALUE:TX" ], [ "500", "010", "0", "VALUE:T3" ], [ "500", "010", "1", "VALUE:T3" ], [ "500", "010", "8-9", "VALUE:T3" ], [ "500", "999", "0", "VALUE:TX" ], [ "500", "999", "1", "VALUE:TX" ], [ "500", "999", "8-9", "VALUE:TX" ], [ "550", "000", "0", "VALUE:TX" ], [ "550", "000", "1", "VALUE:TX" ], [ "550", "000", "8-9", "VALUE:TX" ], [ "550", "010", "0", "VALUE:T3" ], [ "550", "010", "1", "VALUE:T3" ], [ "550", "010", "8-9", "VALUE:T3" ], [ "550", "999", "0", "VALUE:T3" ], [ "550", "999", "1", "VALUE:T3" ], [ "550", "999", "8-9", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_periductal_invasion_ajcc7_xks.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_periductal_invasion_ajcc7_xks.json
deleted file mode 100644
index 9c35e8a04..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_periductal_invasion_ajcc7_xks.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_periductal_invasion_ajcc7_xks",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Periductal Invasion AJCC7",
- "title" : "Extension Periductal Invasion AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-520, 580, 620, 631-650, 660-665, 675-755, 765-800 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Site-Specific Factor 10, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.155Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf10",
- "name" : "CS SSF 10",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100-170, 500-510", "000", "VALUE:T1" ], [ "200-270, 520, 631", "000", "VALUE:T2a" ], [ "300-475, 632, 650, 675", "000", "VALUE:T2b" ], [ "480", "000", "VALUE:T2NOS" ], [ "580, 620, 640-645, 660-665, 700-755, 765-800", "000", "VALUE:T3" ], [ "999", "000", "VALUE:TX" ], [ "100-170, 500-510", "010", "VALUE:T4" ], [ "200-270, 520, 631", "010", "VALUE:T4" ], [ "300-475, 632, 650, 675", "010", "VALUE:T4" ], [ "480", "010", "VALUE:T4" ], [ "580, 620, 640-645, 660-665, 700-755, 765-800", "010", "VALUE:T4 " ], [ "999", "010", "VALUE:T4" ], [ "100-170, 500-510", "988, 999", "VALUE:T1" ], [ "200-270, 520, 631", "988, 999", "VALUE:T2a" ], [ "300-475, 632, 650, 675", "988, 999", "VALUE:T2b" ], [ "480", "988, 999", "VALUE:T2NOS" ], [ "580, 620, 640-645, 660-665, 700-755, 765-800", "988, 999", "VALUE:T3" ], [ "999", "988, 999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_table_csv1_xjb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_table_csv1_xjb.json
deleted file mode 100644
index 7b7f32cf9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_table_csv1_xjb.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_table_csv1_xjb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6 Table Csv1",
- "title" : "Extension Size, AJCC 6 Table CSv1",
- "notes" : "**Note**: For CS Version 1 cases (CS Version Input Original equals 01XXXX) and Year of Diagnosis is less than 2010 and CS Site-Specific Factor 6 Perineural Invasion = 988 or blank, for CS Extension codes 100-400 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.199Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "340", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "100", "001-005", "VALUE:T1" ], [ "150", "001-005", "VALUE:T1" ], [ "155", "001-005", "VALUE:T1" ], [ "200", "001-005", "VALUE:T2" ], [ "250", "001-005", "VALUE:T1" ], [ "270", "001-005", "VALUE:TX" ], [ "300", "001-005", "VALUE:T3" ], [ "320", "001-005", "VALUE:TX" ], [ "340", "001-005", "VALUE:TX" ], [ "400", "001-005", "VALUE:T1" ], [ "100", "006-010", "VALUE:T1" ], [ "150", "006-010", "VALUE:T1" ], [ "155", "006-010", "VALUE:T1" ], [ "200", "006-010", "VALUE:T2" ], [ "250", "006-010", "VALUE:T2" ], [ "270", "006-010", "VALUE:TX" ], [ "300", "006-010", "VALUE:T3" ], [ "320", "006-010", "VALUE:TX" ], [ "340", "006-010", "VALUE:TX" ], [ "400", "006-010", "VALUE:T1" ], [ "100", "011-989", "VALUE:T1" ], [ "150", "011-989", "VALUE:T1" ], [ "155", "011-989", "VALUE:T1" ], [ "200", "011-989", "VALUE:T2" ], [ "250", "011-989", "VALUE:T3" ], [ "270", "011-989", "VALUE:TX" ], [ "300", "011-989", "VALUE:T3" ], [ "320", "011-989", "VALUE:TX" ], [ "340", "011-989", "VALUE:TX" ], [ "400", "011-989", "VALUE:T1" ], [ "100", "990", "VALUE:T1" ], [ "150", "990", "VALUE:T1" ], [ "155", "990", "VALUE:T1" ], [ "200", "990", "VALUE:T2" ], [ "250", "990", "VALUE:T1" ], [ "270", "990", "VALUE:TX" ], [ "300", "990", "VALUE:T3" ], [ "320", "990", "VALUE:TX" ], [ "340", "990", "VALUE:TX" ], [ "400", "990", "VALUE:T1" ], [ "100", "991", "VALUE:T1" ], [ "150", "991", "VALUE:T1" ], [ "155", "991", "VALUE:T1" ], [ "200", "991", "VALUE:T2" ], [ "250", "991", "VALUE:T2" ], [ "270", "991", "VALUE:TX" ], [ "300", "991", "VALUE:T3" ], [ "320", "991", "VALUE:TX" ], [ "340", "991", "VALUE:TX" ], [ "400", "991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T2" ], [ "250", "992", "VALUE:T2" ], [ "270", "992", "VALUE:TX" ], [ "300", "992", "VALUE:T3" ], [ "320", "992", "VALUE:TX" ], [ "340", "992", "VALUE:TX" ], [ "400", "992", "VALUE:T1" ], [ "100", "993-995", "VALUE:T1" ], [ "150", "993-995", "VALUE:T1" ], [ "155", "993-995", "VALUE:T1" ], [ "200", "993-995", "VALUE:T2" ], [ "250", "993-995", "VALUE:T3" ], [ "270", "993-995", "VALUE:TX" ], [ "300", "993-995", "VALUE:T3" ], [ "320", "993-995", "VALUE:TX" ], [ "340", "993-995", "VALUE:TX" ], [ "400", "993-995", "VALUE:T1" ], [ "100", "996-998", "ERROR:" ], [ "150", "996-998", "ERROR:" ], [ "155", "996-998", "ERROR:" ], [ "200", "996-998", "ERROR:" ], [ "250", "996-998", "ERROR:" ], [ "270", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "320", "996-998", "ERROR:" ], [ "340", "996-998", "ERROR:" ], [ "400", "996-998", "ERROR:" ], [ "100", "999", "VALUE:T1" ], [ "150", "999", "VALUE:T1" ], [ "155", "999", "VALUE:T1" ], [ "200", "999", "VALUE:T2" ], [ "250", "999", "VALUE:TX" ], [ "270", "999", "VALUE:TX" ], [ "300", "999", "VALUE:T3" ], [ "320", "999", "VALUE:TX" ], [ "340", "999", "VALUE:TX" ], [ "400", "999", "VALUE:T1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xai.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xai.json
deleted file mode 100644
index 8307f24f0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xai.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xai",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100-650 ONLY, the T category is assigned based on value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.251Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "405", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "530", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "610", "000", "ERROR:" ], [ "620", "000", "ERROR:" ], [ "640", "000", "ERROR:" ], [ "645", "000", "ERROR:" ], [ "650", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "530", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "610", "001-020", "VALUE:T1" ], [ "620", "001-020", "VALUE:T1" ], [ "640", "001-020", "VALUE:T1" ], [ "645", "001-020", "VALUE:T1" ], [ "650", "001-020", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "530", "021-040", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2" ], [ "610", "021-040", "VALUE:T2" ], [ "620", "021-040", "VALUE:T2" ], [ "640", "021-040", "VALUE:T2" ], [ "645", "021-040", "VALUE:T2" ], [ "650", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "530", "041-989", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3" ], [ "610", "041-989", "VALUE:T3" ], [ "620", "041-989", "VALUE:T3" ], [ "640", "041-989", "VALUE:T3" ], [ "645", "041-989", "VALUE:T3" ], [ "650", "041-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "530", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1" ], [ "620", "990-991", "VALUE:T1" ], [ "640", "990-991", "VALUE:T1" ], [ "645", "990-991", "VALUE:T1" ], [ "650", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "405", "992", "VALUE:T1" ], [ "410", "992", "VALUE:T2" ], [ "500", "992", "VALUE:T1" ], [ "530", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "610", "992", "VALUE:T1" ], [ "620", "992", "VALUE:T1" ], [ "640", "992", "VALUE:T1" ], [ "645", "992", "VALUE:T1" ], [ "650", "992", "VALUE:T3" ], [ "100", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "530", "993-994", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2" ], [ "610", "993-994", "VALUE:T2" ], [ "620", "993-994", "VALUE:T2" ], [ "640", "993-994", "VALUE:T2" ], [ "645", "993-994", "VALUE:T2" ], [ "650", "993-994", "VALUE:T3" ], [ "100", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "400", "995", "VALUE:T3" ], [ "405", "995", "VALUE:T1" ], [ "410", "995", "VALUE:T2" ], [ "500", "995", "VALUE:T3" ], [ "530", "995", "VALUE:T3" ], [ "600", "995", "VALUE:T3" ], [ "610", "995", "VALUE:T3" ], [ "620", "995", "VALUE:T3" ], [ "640", "995", "VALUE:T3" ], [ "645", "995", "VALUE:T3" ], [ "650", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "405", "996", "VALUE:T3" ], [ "410", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "530", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "610", "996", "VALUE:T3" ], [ "620", "996", "VALUE:T3" ], [ "640", "996", "VALUE:T3" ], [ "645", "996", "VALUE:T3" ], [ "650", "996", "VALUE:T3" ], [ "100", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "405", "997-998", "ERROR:" ], [ "410", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "530", "997-998", "ERROR:" ], [ "600", "997-998", "ERROR:" ], [ "610", "997-998", "ERROR:" ], [ "620", "997-998", "ERROR:" ], [ "640", "997-998", "ERROR:" ], [ "645", "997-998", "ERROR:" ], [ "650", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "405", "999", "VALUE:T1" ], [ "410", "999", "VALUE:T2" ], [ "500", "999", "VALUE:TX" ], [ "530", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "610", "999", "VALUE:TX" ], [ "620", "999", "VALUE:TX" ], [ "640", "999", "VALUE:TX" ], [ "645", "999", "VALUE:TX" ], [ "650", "999", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xak.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xak.json
deleted file mode 100644
index ffcebd6d3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xak.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xak",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 390, 400, 420, and 440 ONLY, the T category is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.309Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "390", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "440", "000", "ERROR:" ], [ "390", "001-050", "VALUE:T2" ], [ "400", "001-050", "VALUE:T2" ], [ "420", "001-050", "VALUE:T2" ], [ "440", "001-050", "VALUE:T2" ], [ "390", "051-989", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3" ], [ "420", "051-989", "VALUE:T3" ], [ "440", "051-989", "VALUE:T3" ], [ "390", "990-995", "VALUE:T2" ], [ "400", "990-995", "VALUE:T2" ], [ "420", "990-995", "VALUE:T2" ], [ "440", "990-995", "VALUE:T2" ], [ "390", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "420", "996", "VALUE:T3" ], [ "440", "996", "VALUE:T3" ], [ "390", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "420", "997-998", "ERROR:" ], [ "440", "997-998", "ERROR:" ], [ "390", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "440", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xat.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xat.json
deleted file mode 100644
index d3165a25f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xat.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xat",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100, 300, and 610-650 ONLY, the T category is assigned based on the value of CS Tumor Size and CS Extension as shown in this table,",
- "last_modified" : "2015-05-27T16:19:16.363Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "610", "000", "ERROR:" ], [ "620", "000", "ERROR:" ], [ "630", "000", "ERROR:" ], [ "650", "000", "ERROR:" ], [ "100", "001-025", "VALUE:T1" ], [ "300", "001-025", "VALUE:T1" ], [ "610", "001-025", "VALUE:T1" ], [ "620", "001-025", "VALUE:T1" ], [ "630", "001-025", "VALUE:T1" ], [ "650", "001-025", "VALUE:T3a" ], [ "100", "026-050", "VALUE:T2" ], [ "300", "026-050", "VALUE:T2" ], [ "610", "026-050", "VALUE:T2" ], [ "620", "026-050", "VALUE:T2" ], [ "630", "026-050", "VALUE:T2" ], [ "650", "026-050", "VALUE:T3a" ], [ "100", "051-989", "VALUE:T2" ], [ "300", "051-989", "VALUE:T2" ], [ "610", "051-989", "VALUE:T2" ], [ "620", "051-989", "VALUE:T2" ], [ "630", "051-989", "VALUE:T2" ], [ "650", "051-989", "VALUE:T3b" ], [ "100", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1" ], [ "620", "990-991", "VALUE:T1" ], [ "630", "990-991", "VALUE:T1" ], [ "650", "990-991", "VALUE:T3a" ], [ "100", "992-993", "VALUE:T1" ], [ "300", "992-993", "VALUE:T1" ], [ "610", "992-993", "VALUE:T1" ], [ "620", "992-993", "VALUE:T2" ], [ "630", "992-993", "VALUE:T2" ], [ "650", "992-993", "VALUE:T3a" ], [ "100", "994-995", "VALUE:T2" ], [ "300", "994-995", "VALUE:T2" ], [ "610", "994-995", "VALUE:T1" ], [ "620", "994-995", "VALUE:T2" ], [ "630", "994-995", "VALUE:T2" ], [ "650", "994-995", "VALUE:T3a" ], [ "100", "996", "VALUE:T2" ], [ "300", "996", "VALUE:T2" ], [ "610", "996", "VALUE:T2" ], [ "620", "996", "VALUE:T2" ], [ "630", "996", "VALUE:T2" ], [ "650", "996", "VALUE:T3b" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "610", "999", "VALUE:T1" ], [ "620", "999", "VALUE:T2" ], [ "630", "999", "VALUE:T2" ], [ "650", "999", "VALUE:T3NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xav.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xav.json
deleted file mode 100644
index 52ec8a41e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xav.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xav",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100-645 ONLY, the T category is assigned based on value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.415Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "405", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "640", "000", "ERROR:" ], [ "645", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "640", "001-020", "VALUE:T1" ], [ "645", "001-020", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2" ], [ "640", "021-040", "VALUE:T2" ], [ "645", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3" ], [ "640", "041-989", "VALUE:T3" ], [ "645", "041-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "640", "990-991", "VALUE:T1" ], [ "645", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "405", "992", "VALUE:T1" ], [ "410", "992", "VALUE:T2" ], [ "500", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "640", "992", "VALUE:T1" ], [ "645", "992", "VALUE:T3" ], [ "100", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2" ], [ "640", "993-994", "VALUE:T2" ], [ "645", "993-994", "VALUE:T3" ], [ "100", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "400", "995", "VALUE:T3" ], [ "405", "995", "VALUE:T1" ], [ "410", "995", "VALUE:T2" ], [ "500", "995", "VALUE:T3" ], [ "600", "995", "VALUE:T3" ], [ "640", "995", "VALUE:T3" ], [ "645", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "405", "996", "VALUE:T3" ], [ "410", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "640", "996", "VALUE:T3" ], [ "645", "996", "VALUE:T3" ], [ "100", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "405", "997-998", "ERROR:" ], [ "410", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "600", "997-998", "ERROR:" ], [ "640", "997-998", "ERROR:" ], [ "645", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "405", "999", "VALUE:T1" ], [ "410", "999", "VALUE:T2" ], [ "500", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "640", "999", "VALUE:TX" ], [ "645", "999", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xaz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xaz.json
deleted file mode 100644
index 221a7dab5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xaz.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xaz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100-550 ONLY, the T category is assigned based on value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.472Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "305", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "510", "000", "ERROR:" ], [ "520", "000", "ERROR:" ], [ "530", "000", "ERROR:" ], [ "531", "000", "ERROR:" ], [ "533", "000", "ERROR:" ], [ "535", "000", "ERROR:" ], [ "538", "000", "ERROR:" ], [ "540", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "420", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "510", "001-020", "VALUE:T1" ], [ "520", "001-020", "VALUE:T1" ], [ "530", "001-020", "VALUE:T1" ], [ "531", "001-020", "VALUE:T1" ], [ "533", "001-020", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1" ], [ "538", "001-020", "VALUE:T1" ], [ "540", "001-020", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2" ], [ "150", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "305", "021-040", "VALUE:T2" ], [ "310", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "420", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "510", "021-040", "VALUE:T2" ], [ "520", "021-040", "VALUE:T2" ], [ "530", "021-040", "VALUE:T2" ], [ "531", "021-040", "VALUE:T2" ], [ "533", "021-040", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2" ], [ "538", "021-040", "VALUE:T2" ], [ "540", "021-040", "VALUE:T2" ], [ "550", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "150", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "305", "041-989", "VALUE:T3" ], [ "310", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "420", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "510", "041-989", "VALUE:T3" ], [ "520", "041-989", "VALUE:T3" ], [ "530", "041-989", "VALUE:T3" ], [ "531", "041-989", "VALUE:T3" ], [ "533", "041-989", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3" ], [ "538", "041-989", "VALUE:T3" ], [ "540", "041-989", "VALUE:T3" ], [ "550", "041-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "305", "990-991", "VALUE:T1" ], [ "310", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "420", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "510", "990-991", "VALUE:T1" ], [ "520", "990-991", "VALUE:T1" ], [ "530", "990-991", "VALUE:T1" ], [ "531", "990-991", "VALUE:T1" ], [ "533", "990-991", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1" ], [ "538", "990-991", "VALUE:T1" ], [ "540", "990-991", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "305", "992", "VALUE:T1" ], [ "310", "992", "VALUE:T2" ], [ "400", "992", "VALUE:T1" ], [ "420", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "510", "992", "VALUE:T1" ], [ "520", "992", "VALUE:T1" ], [ "530", "992", "VALUE:T1" ], [ "531", "992", "VALUE:T1" ], [ "533", "992", "VALUE:T1" ], [ "535", "992", "VALUE:T1" ], [ "538", "992", "VALUE:T1" ], [ "540", "992", "VALUE:T3" ], [ "550", "992", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2" ], [ "150", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "305", "993-994", "VALUE:T1" ], [ "310", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "420", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "510", "993-994", "VALUE:T2" ], [ "520", "993-994", "VALUE:T2" ], [ "530", "993-994", "VALUE:T2" ], [ "531", "993-994", "VALUE:T2" ], [ "533", "993-994", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2" ], [ "538", "993-994", "VALUE:T2" ], [ "540", "993-994", "VALUE:T3" ], [ "550", "993-994", "VALUE:T2" ], [ "100", "995", "VALUE:T3" ], [ "150", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "305", "995", "VALUE:T1" ], [ "310", "995", "VALUE:T2" ], [ "400", "995", "VALUE:T3" ], [ "420", "995", "VALUE:T3" ], [ "500", "995", "VALUE:T3" ], [ "510", "995", "VALUE:T3" ], [ "520", "995", "VALUE:T3" ], [ "530", "995", "VALUE:T3" ], [ "531", "995", "VALUE:T3" ], [ "533", "995", "VALUE:T3" ], [ "535", "995", "VALUE:T3" ], [ "538", "995", "VALUE:T3" ], [ "540", "995", "VALUE:T3" ], [ "550", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "305", "996", "VALUE:T3" ], [ "310", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "420", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "510", "996", "VALUE:T3" ], [ "520", "996", "VALUE:T3" ], [ "530", "996", "VALUE:T3" ], [ "531", "996", "VALUE:T3" ], [ "533", "996", "VALUE:T3" ], [ "535", "996", "VALUE:T3" ], [ "538", "996", "VALUE:T3" ], [ "540", "996", "VALUE:T3" ], [ "550", "996", "VALUE:T3" ], [ "100", "997-998", "ERROR:" ], [ "150", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "305", "997-998", "ERROR:" ], [ "310", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "420", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "510", "997-998", "ERROR:" ], [ "520", "997-998", "ERROR:" ], [ "530", "997-998", "ERROR:" ], [ "531", "997-998", "ERROR:" ], [ "533", "997-998", "ERROR:" ], [ "535", "997-998", "ERROR:" ], [ "538", "997-998", "ERROR:" ], [ "540", "997-998", "ERROR:" ], [ "550", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "305", "999", "VALUE:T1" ], [ "310", "999", "VALUE:T2" ], [ "400", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "510", "999", "VALUE:TX" ], [ "520", "999", "VALUE:TX" ], [ "530", "999", "VALUE:TX" ], [ "531", "999", "VALUE:TX" ], [ "533", "999", "VALUE:TX" ], [ "535", "999", "VALUE:TX" ], [ "538", "999", "VALUE:TX" ], [ "540", "999", "VALUE:T3" ], [ "550", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xbc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xbc.json
deleted file mode 100644
index 1b4329829..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xbc.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xbc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 000, 100 - 550, 950, and 999 ONLY, where histology does not equal 8020, 8021, 8030, 8031, or 8032, and grade does not equal 4, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and/or CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.536Z",
- "definition" : [ {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,2,3,9", "000", "000", "ERROR:" ], [ "1,2,3,9", "100", "000", "ERROR:" ], [ "1,2,3,9", "200", "000", "ERROR:" ], [ "1,2,3,9", "300", "000", "ERROR:" ], [ "1,2,3,9", "400", "000", "ERROR:" ], [ "1,2,3,9", "405", "000", "ERROR:" ], [ "1,2,3,9", "410", "000", "ERROR:" ], [ "1,2,3,9", "415", "000", "ERROR:" ], [ "1,2,3,9", "420", "000", "ERROR:" ], [ "1,2,3,9", "450", "000", "ERROR:" ], [ "1,2,3,9", "480", "000", "ERROR:" ], [ "1,2,3,9", "490", "000", "ERROR:" ], [ "1,2,3,9", "500", "000", "ERROR:" ], [ "1,2,3,9", "520", "000", "ERROR:" ], [ "1,2,3,9", "550", "000", "ERROR:" ], [ "1,2,3,9", "950", "000", "VALUE:T0" ], [ "1,2,3,9", "999", "000", "ERROR:" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "000", "ERROR:" ], [ "1,2,3,9", "000", "001-020", "VALUE:TX" ], [ "1,2,3,9", "100", "001-020", "VALUE:T1" ], [ "1,2,3,9", "200", "001-020", "VALUE:T1" ], [ "1,2,3,9", "300", "001-020", "VALUE:T1" ], [ "1,2,3,9", "400", "001-020", "VALUE:T1" ], [ "1,2,3,9", "405", "001-020", "VALUE:T1" ], [ "1,2,3,9", "410", "001-020", "VALUE:T1" ], [ "1,2,3,9", "415", "001-020", "VALUE:T1" ], [ "1,2,3,9", "420", "001-020", "VALUE:T1" ], [ "1,2,3,9", "450", "001-020", "VALUE:T3" ], [ "1,2,3,9", "480", "001-020", "VALUE:T3" ], [ "1,2,3,9", "490", "001-020", "VALUE:T3" ], [ "1,2,3,9", "500", "001-020", "VALUE:T4a" ], [ "1,2,3,9", "520", "001-020", "VALUE:T4a" ], [ "1,2,3,9", "550", "001-020", "VALUE:T4a" ], [ "1,2,3,9", "950", "001-020", "ERROR:" ], [ "1,2,3,9", "999", "001-020", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "001-020", "ERROR:" ], [ "1,2,3,9", "000", "021-040", "VALUE:TX" ], [ "1,2,3,9", "100", "021-040", "VALUE:T2" ], [ "1,2,3,9", "200", "021-040", "VALUE:T2" ], [ "1,2,3,9", "300", "021-040", "VALUE:T2" ], [ "1,2,3,9", "400", "021-040", "VALUE:T2" ], [ "1,2,3,9", "405", "021-040", "VALUE:T2" ], [ "1,2,3,9", "410", "021-040", "VALUE:T2" ], [ "1,2,3,9", "415", "021-040", "VALUE:T2" ], [ "1,2,3,9", "420", "021-040", "VALUE:T2" ], [ "1,2,3,9", "450", "021-040", "VALUE:T3" ], [ "1,2,3,9", "480", "021-040", "VALUE:T3" ], [ "1,2,3,9", "490", "021-040", "VALUE:T3" ], [ "1,2,3,9", "500", "021-040", "VALUE:T4a" ], [ "1,2,3,9", "520", "021-040", "VALUE:T4a" ], [ "1,2,3,9", "550", "021-040", "VALUE:T4a" ], [ "1,2,3,9", "950", "021-040", "ERROR:" ], [ "1,2,3,9", "999", "021-040", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "021-040", "ERROR:" ], [ "1,2,3,9", "000", "041-989", "VALUE:TX" ], [ "1,2,3,9", "100", "041-989", "VALUE:T3" ], [ "1,2,3,9", "200", "041-989", "VALUE:T3" ], [ "1,2,3,9", "300", "041-989", "VALUE:T3" ], [ "1,2,3,9", "400", "041-989", "VALUE:T3" ], [ "1,2,3,9", "405", "041-989", "VALUE:T3" ], [ "1,2,3,9", "410", "041-989", "VALUE:T3" ], [ "1,2,3,9", "415", "041-989", "VALUE:T3" ], [ "1,2,3,9", "420", "041-989", "VALUE:T3" ], [ "1,2,3,9", "450", "041-989", "VALUE:T3" ], [ "1,2,3,9", "480", "041-989", "VALUE:T3" ], [ "1,2,3,9", "490", "041-989", "VALUE:T3" ], [ "1,2,3,9", "500", "041-989", "VALUE:T4a" ], [ "1,2,3,9", "520", "041-989", "VALUE:T4a" ], [ "1,2,3,9", "550", "041-989", "VALUE:T4a" ], [ "1,2,3,9", "950", "041-989", "ERROR:" ], [ "1,2,3,9", "999", "041-989", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "041-989", "ERROR:" ], [ "1,2,3,9", "000", "990-991", "VALUE:TX" ], [ "1,2,3,9", "100", "990-991", "VALUE:T1" ], [ "1,2,3,9", "200", "990-991", "VALUE:T1" ], [ "1,2,3,9", "300", "990-991", "VALUE:T1" ], [ "1,2,3,9", "400", "990-991", "VALUE:T1" ], [ "1,2,3,9", "405", "990-991", "VALUE:T1" ], [ "1,2,3,9", "410", "990-991", "VALUE:T1" ], [ "1,2,3,9", "415", "990-991", "VALUE:T1" ], [ "1,2,3,9", "420", "990-991", "VALUE:T1" ], [ "1,2,3,9", "450", "990-991", "VALUE:T3" ], [ "1,2,3,9", "480", "990-991", "VALUE:T3" ], [ "1,2,3,9", "490", "990-991", "VALUE:T3" ], [ "1,2,3,9", "500", "990-991", "VALUE:T4a" ], [ "1,2,3,9", "520", "990-991", "VALUE:T4a" ], [ "1,2,3,9", "550", "990-991", "VALUE:T4a" ], [ "1,2,3,9", "950", "990-991", "ERROR:" ], [ "1,2,3,9", "999", "990-991", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "990-991", "ERROR:" ], [ "1,2,3,9", "000", "992", "VALUE:TX" ], [ "1,2,3,9", "100", "992", "VALUE:T1" ], [ "1,2,3,9", "200", "992", "VALUE:T1" ], [ "1,2,3,9", "300", "992", "VALUE:T1" ], [ "1,2,3,9", "400", "992", "VALUE:T1" ], [ "1,2,3,9", "405", "992", "VALUE:T1" ], [ "1,2,3,9", "410", "992", "VALUE:T1" ], [ "1,2,3,9", "415", "992", "VALUE:T1" ], [ "1,2,3,9", "420", "992", "VALUE:T2" ], [ "1,2,3,9", "450", "992", "VALUE:T3" ], [ "1,2,3,9", "480", "992", "VALUE:T3" ], [ "1,2,3,9", "490", "992", "VALUE:T3" ], [ "1,2,3,9", "500", "992", "VALUE:T4a" ], [ "1,2,3,9", "520", "992", "VALUE:T4a" ], [ "1,2,3,9", "550", "992", "VALUE:T4a" ], [ "1,2,3,9", "950", "992", "ERROR:" ], [ "1,2,3,9", "999", "992", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "992", "ERROR:" ], [ "1,2,3,9", "000", "993-994", "VALUE:TX" ], [ "1,2,3,9", "100", "993-994", "VALUE:T2" ], [ "1,2,3,9", "200", "993-994", "VALUE:T2" ], [ "1,2,3,9", "300", "993-994", "VALUE:T2" ], [ "1,2,3,9", "400", "993-994", "VALUE:T2" ], [ "1,2,3,9", "405", "993-994", "VALUE:T1" ], [ "1,2,3,9", "410", "993-994", "VALUE:T2" ], [ "1,2,3,9", "415", "993-994", "VALUE:T2" ], [ "1,2,3,9", "420", "993-994", "VALUE:T2" ], [ "1,2,3,9", "450", "993-994", "VALUE:T3" ], [ "1,2,3,9", "480", "993-994", "VALUE:T3" ], [ "1,2,3,9", "490", "993-994", "VALUE:T3" ], [ "1,2,3,9", "500", "993-994", "VALUE:T4a" ], [ "1,2,3,9", "520", "993-994", "VALUE:T4a" ], [ "1,2,3,9", "550", "993-994", "VALUE:T4a" ], [ "1,2,3,9", "950", "993-994", "ERROR:" ], [ "1,2,3,9", "999", "993-994", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "993-994", "ERROR:" ], [ "1,2,3,9", "000", "995", "VALUE:TX" ], [ "1,2,3,9", "100", "995", "VALUE:T3" ], [ "1,2,3,9", "200", "995", "VALUE:T3" ], [ "1,2,3,9", "300", "995", "VALUE:T3" ], [ "1,2,3,9", "400", "995", "VALUE:T3" ], [ "1,2,3,9", "405", "995", "VALUE:T1" ], [ "1,2,3,9", "410", "995", "VALUE:T3" ], [ "1,2,3,9", "415", "995", "VALUE:T3" ], [ "1,2,3,9", "420", "995", "VALUE:T3" ], [ "1,2,3,9", "450", "995", "VALUE:T3" ], [ "1,2,3,9", "480", "995", "VALUE:T3" ], [ "1,2,3,9", "490", "995", "VALUE:T3" ], [ "1,2,3,9", "500", "995", "VALUE:T4a" ], [ "1,2,3,9", "520", "995", "VALUE:T4a" ], [ "1,2,3,9", "550", "995", "VALUE:T4a" ], [ "1,2,3,9", "950", "995", "ERROR:" ], [ "1,2,3,9", "999", "995", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "995", "ERROR:" ], [ "1,2,3,9", "000", "996", "VALUE:TX" ], [ "1,2,3,9", "100", "996", "VALUE:T3" ], [ "1,2,3,9", "200", "996", "VALUE:T3" ], [ "1,2,3,9", "300", "996", "VALUE:T3" ], [ "1,2,3,9", "400", "996", "VALUE:T3" ], [ "1,2,3,9", "405", "996", "VALUE:T3" ], [ "1,2,3,9", "410", "996", "VALUE:T3" ], [ "1,2,3,9", "415", "996", "VALUE:T3" ], [ "1,2,3,9", "420", "996", "VALUE:T3" ], [ "1,2,3,9", "450", "996", "VALUE:T3" ], [ "1,2,3,9", "480", "996", "VALUE:T3" ], [ "1,2,3,9", "490", "996", "VALUE:T3" ], [ "1,2,3,9", "500", "996", "VALUE:T3" ], [ "1,2,3,9", "520", "996", "VALUE:T3" ], [ "1,2,3,9", "550", "996", "VALUE:T3" ], [ "1,2,3,9", "950", "996", "ERROR:" ], [ "1,2,3,9", "999", "996", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "996", "ERROR:" ], [ "1,2,3,9", "000", "999", "VALUE:TX" ], [ "1,2,3,9", "100", "999", "VALUE:TX" ], [ "1,2,3,9", "200", "999", "VALUE:TX" ], [ "1,2,3,9", "300", "999", "VALUE:TX" ], [ "1,2,3,9", "400", "999", "VALUE:TX" ], [ "1,2,3,9", "405", "999", "VALUE:T1" ], [ "1,2,3,9", "410", "999", "VALUE:T1" ], [ "1,2,3,9", "415", "999", "VALUE:T1" ], [ "1,2,3,9", "420", "999", "VALUE:T2" ], [ "1,2,3,9", "450", "999", "VALUE:T3" ], [ "1,2,3,9", "480", "999", "VALUE:T3" ], [ "1,2,3,9", "490", "999", "VALUE:T3" ], [ "1,2,3,9", "500", "999", "VALUE:T4a" ], [ "1,2,3,9", "520", "999", "VALUE:T4a" ], [ "1,2,3,9", "550", "999", "VALUE:T4a" ], [ "1,2,3,9", "950", "999", "ERROR:" ], [ "1,2,3,9", "999", "999", "VALUE:TX" ], [ "5,6,7,8", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "999", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xda.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xda.json
deleted file mode 100644
index f357cc733..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xda.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xda",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 300, 400, 420, 460, 465, 560, and 650 ONLY, the T category is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.613Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "465", "000", "ERROR:" ], [ "650", "000", "ERROR:" ], [ "300", "001-050", "VALUE:T2" ], [ "400", "001-050", "VALUE:T2" ], [ "420", "001-050", "VALUE:T2" ], [ "460", "001-050", "VALUE:T2" ], [ "465", "001-050", "VALUE:T2" ], [ "650", "001-050", "VALUE:T2" ], [ "300", "051-989", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3" ], [ "420", "051-989", "VALUE:T3" ], [ "460", "051-989", "VALUE:T3" ], [ "465", "051-989", "VALUE:T3" ], [ "650", "051-989", "VALUE:T3" ], [ "300", "990-995", "VALUE:T2" ], [ "400", "990-995", "VALUE:T2" ], [ "420", "990-995", "VALUE:T2" ], [ "460", "990-995", "VALUE:T2" ], [ "465", "990-995", "VALUE:T2" ], [ "650", "990-995", "VALUE:T2" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "420", "996", "VALUE:T3" ], [ "460", "996", "VALUE:T3" ], [ "465", "996", "VALUE:T3" ], [ "650", "996", "VALUE:T3" ], [ "300", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "420", "997-998", "ERROR:" ], [ "460", "997-998", "ERROR:" ], [ "465", "997-998", "ERROR:" ], [ "650", "997-998", "ERROR:" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "460", "999", "VALUE:TX" ], [ "465", "999", "VALUE:TX" ], [ "650", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xdk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xdk.json
deleted file mode 100644
index a9d48606d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xdk.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xdk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100 through 568, 575, and 580 ONLY, the T category for AJCC 6th Edition staging is assigned based on value of CS Tumor Size, as follows:",
- "last_modified" : "2015-05-27T16:19:16.661Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "105", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "205", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "305", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "530", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "555", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "565", "000", "ERROR:" ], [ "566", "000", "ERROR:" ], [ "568", "000", "ERROR:" ], [ "575", "000", "ERROR:" ], [ "580", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "105", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "205", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1" ], [ "330", "001-020", "VALUE:T1" ], [ "350", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "530", "001-020", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1" ], [ "555", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "565", "001-020", "VALUE:T1" ], [ "566", "001-020", "VALUE:T1" ], [ "568", "001-020", "VALUE:T1" ], [ "575", "001-020", "VALUE:T1" ], [ "580", "001-020", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2" ], [ "105", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "205", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "305", "021-040", "VALUE:T2" ], [ "330", "021-040", "VALUE:T2" ], [ "350", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "530", "021-040", "VALUE:T2" ], [ "550", "021-040", "VALUE:T2" ], [ "555", "021-040", "VALUE:T2" ], [ "560", "021-040", "VALUE:T2" ], [ "565", "021-040", "VALUE:T2" ], [ "566", "021-040", "VALUE:T2" ], [ "568", "021-040", "VALUE:T2" ], [ "575", "021-040", "VALUE:T2" ], [ "580", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "105", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "205", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "305", "041-989", "VALUE:T3" ], [ "330", "041-989", "VALUE:T3" ], [ "350", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "530", "041-989", "VALUE:T3" ], [ "550", "041-989", "VALUE:T3" ], [ "555", "041-989", "VALUE:T3" ], [ "560", "041-989", "VALUE:T3" ], [ "565", "041-989", "VALUE:T3" ], [ "566", "041-989", "VALUE:T3" ], [ "568", "041-989", "VALUE:T3" ], [ "575", "041-989", "VALUE:T3" ], [ "580", "041-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "105", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "205", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "305", "990-991", "VALUE:T1" ], [ "330", "990-991", "VALUE:T1" ], [ "350", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "530", "990-991", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1" ], [ "555", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "565", "990-991", "VALUE:T1" ], [ "566", "990-991", "VALUE:T1" ], [ "568", "990-991", "VALUE:T1" ], [ "575", "990-991", "VALUE:T1" ], [ "580", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "105", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "205", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "305", "992", "VALUE:T1" ], [ "330", "992", "VALUE:T1" ], [ "350", "992", "VALUE:T2" ], [ "400", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "530", "992", "VALUE:T1" ], [ "550", "992", "VALUE:T1" ], [ "555", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T1" ], [ "565", "992", "VALUE:T1" ], [ "566", "992", "VALUE:T1" ], [ "568", "992", "VALUE:T1" ], [ "575", "992", "VALUE:T3" ], [ "580", "992", "VALUE:T3" ], [ "100", "993-994", "VALUE:T2" ], [ "105", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "205", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "305", "993-994", "VALUE:T2" ], [ "330", "993-994", "VALUE:T1" ], [ "350", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "530", "993-994", "VALUE:T2" ], [ "550", "993-994", "VALUE:T2" ], [ "555", "993-994", "VALUE:T2" ], [ "560", "993-994", "VALUE:T2" ], [ "565", "993-994", "VALUE:T2" ], [ "566", "993-994", "VALUE:T2" ], [ "568", "993-994", "VALUE:T2" ], [ "575", "993-994", "VALUE:T3" ], [ "580", "993-994", "VALUE:T3" ], [ "100", "995", "VALUE:T3" ], [ "105", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "205", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "305", "995", "VALUE:T3" ], [ "330", "995", "VALUE:T1" ], [ "350", "995", "VALUE:T2" ], [ "400", "995", "VALUE:T3" ], [ "500", "995", "VALUE:T3" ], [ "530", "995", "VALUE:T3" ], [ "550", "995", "VALUE:T3" ], [ "555", "995", "VALUE:T3" ], [ "560", "995", "VALUE:T3" ], [ "565", "995", "VALUE:T3" ], [ "566", "995", "VALUE:T3" ], [ "568", "995", "VALUE:T3" ], [ "575", "995", "VALUE:T3" ], [ "580", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "105", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "205", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "305", "996", "VALUE:T3" ], [ "330", "996", "VALUE:T3" ], [ "350", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "530", "996", "VALUE:T3" ], [ "550", "996", "VALUE:T3" ], [ "555", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "565", "996", "VALUE:T3" ], [ "566", "996", "VALUE:T3" ], [ "568", "996", "VALUE:T3" ], [ "575", "996", "VALUE:T3" ], [ "580", "996", "VALUE:T3" ], [ "100", "997-998", "ERROR:" ], [ "105", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "205", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "305", "997-998", "ERROR:" ], [ "330", "997-998", "ERROR:" ], [ "350", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "530", "997-998", "ERROR:" ], [ "550", "997-998", "ERROR:" ], [ "555", "997-998", "ERROR:" ], [ "560", "997-998", "ERROR:" ], [ "565", "997-998", "ERROR:" ], [ "566", "997-998", "ERROR:" ], [ "568", "997-998", "ERROR:" ], [ "575", "997-998", "ERROR:" ], [ "580", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "105", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "205", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "305", "999", "VALUE:TX" ], [ "330", "999", "VALUE:T1" ], [ "350", "999", "VALUE:T2" ], [ "400", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "530", "999", "VALUE:TX" ], [ "550", "999", "VALUE:TX" ], [ "555", "999", "VALUE:TX" ], [ "560", "999", "VALUE:TX" ], [ "565", "999", "VALUE:TX" ], [ "566", "999", "VALUE:TX" ], [ "568", "999", "VALUE:TX" ], [ "575", "999", "VALUE:T3" ], [ "580", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xea.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xea.json
deleted file mode 100644
index 5712add6c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xea.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xea",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100- 405 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.724Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "405", "000", "ERROR:" ], [ "100", "001-025", "VALUE:T1" ], [ "300", "001-025", "VALUE:T1" ], [ "400", "001-025", "VALUE:T3a" ], [ "405", "001-025", "VALUE:T3a" ], [ "100", "026-050", "VALUE:T2" ], [ "300", "026-050", "VALUE:T2" ], [ "400", "026-050", "VALUE:T3a" ], [ "405", "026-050", "VALUE:T3a" ], [ "100", "051-989", "VALUE:T2" ], [ "300", "051-989", "VALUE:T2" ], [ "400", "051-989", "VALUE:T3b" ], [ "405", "051-989", "VALUE:T3b" ], [ "100", "990-992", "VALUE:T1" ], [ "300", "990-992", "VALUE:T1" ], [ "400", "990-992", "VALUE:T3a" ], [ "405", "990-992", "VALUE:T3a" ], [ "100", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "400", "993-995", "VALUE:T3a" ], [ "405", "993-995", "VALUE:T3a" ], [ "100", "996", "VALUE:T2" ], [ "300", "996", "VALUE:T2" ], [ "400", "996", "VALUE:T3b" ], [ "405", "996", "VALUE:T3b" ], [ "100", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "405", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:T3NOS" ], [ "405", "999", "VALUE:T3NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xfw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xfw.json
deleted file mode 100644
index 75c0d65ef..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xfw.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xfw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100, 400, 500, and 510 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.768Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "510", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "510", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2" ], [ "510", "021-050", "VALUE:T2" ], [ "100", "051-989", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3" ], [ "500", "051-989", "VALUE:T3" ], [ "510", "051-989", "VALUE:T3" ], [ "100", "990-992", "VALUE:T1" ], [ "400", "990-992", "VALUE:T1" ], [ "500", "990-992", "VALUE:T1" ], [ "510", "990-992", "VALUE:T1" ], [ "100", "993-995", "VALUE:T2" ], [ "400", "993-995", "VALUE:T2" ], [ "500", "993-995", "VALUE:T2" ], [ "510", "993-995", "VALUE:T2" ], [ "100", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "510", "999", "VALUE:T1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xir.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xir.json
deleted file mode 100644
index e405ee9ff..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xir.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xir",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100-800, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.813Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "360", "000", "ERROR:" ], [ "370", "000", "ERROR:" ], [ "380", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "800", "000", "ERROR:" ], [ "100", "001-050", "VALUE:T1b" ], [ "300", "001-050", "VALUE:T1b" ], [ "350", "001-050", "VALUE:T1b" ], [ "360", "001-050", "VALUE:T1b" ], [ "370", "001-050", "VALUE:T1b" ], [ "380", "001-050", "VALUE:T1b" ], [ "400", "001-050", "VALUE:T1b" ], [ "600", "001-050", "VALUE:T1b" ], [ "800", "001-050", "VALUE:T1b" ], [ "100", "051-989", "VALUE:T2b" ], [ "300", "051-989", "VALUE:T2b" ], [ "350", "051-989", "VALUE:T2b" ], [ "360", "051-989", "VALUE:T2b" ], [ "370", "051-989", "VALUE:T2b" ], [ "380", "051-989", "VALUE:T2b" ], [ "400", "051-989", "VALUE:T2b" ], [ "600", "051-989", "VALUE:T2b" ], [ "800", "051-989", "VALUE:T2b" ], [ "100", "990-995", "VALUE:T1b" ], [ "300", "990-995", "VALUE:T1b" ], [ "350", "990-995", "VALUE:T1b" ], [ "360", "990-995", "VALUE:T1b" ], [ "370", "990-995", "VALUE:T1b" ], [ "380", "990-995", "VALUE:T1b" ], [ "400", "990-995", "VALUE:T1b" ], [ "600", "990-995", "VALUE:T1b" ], [ "800", "990-995", "VALUE:T1b" ], [ "100", "996-997", "VALUE:T2b" ], [ "300", "996-997", "VALUE:T2b" ], [ "350", "996-997", "VALUE:T2b" ], [ "360", "996-997", "VALUE:T2b" ], [ "370", "996-997", "VALUE:T2b" ], [ "380", "996-997", "VALUE:T2b" ], [ "400", "996-997", "VALUE:T2b" ], [ "600", "996-997", "VALUE:T2b" ], [ "800", "996-997", "VALUE:T2b" ], [ "100", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "350", "998", "ERROR:" ], [ "360", "998", "ERROR:" ], [ "370", "998", "ERROR:" ], [ "380", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "600", "998", "ERROR:" ], [ "800", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "350", "999", "VALUE:T1b" ], [ "360", "999", "VALUE:T1b" ], [ "370", "999", "VALUE:T2b" ], [ "380", "999", "VALUE:T2b" ], [ "400", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "800", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xji.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xji.json
deleted file mode 100644
index caa76bb5a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xji.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xji",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100-400 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.864Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "305", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1" ], [ "320", "001-020", "VALUE:T1" ], [ "330", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "305", "021-050", "VALUE:T2" ], [ "310", "021-050", "VALUE:T2" ], [ "320", "021-050", "VALUE:T2" ], [ "330", "021-050", "VALUE:T3" ], [ "400", "021-050", "VALUE:T2" ], [ "100", "051-989", "VALUE:T3" ], [ "300", "051-989", "VALUE:T3" ], [ "305", "051-989", "VALUE:T3" ], [ "310", "051-989", "VALUE:T3" ], [ "320", "051-989", "VALUE:T3" ], [ "330", "051-989", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3" ], [ "100", "990-992", "VALUE:T1" ], [ "300", "990-992", "VALUE:T1" ], [ "305", "990-992", "VALUE:T1" ], [ "310", "990-992", "VALUE:T1" ], [ "320", "990-992", "VALUE:T1" ], [ "330", "990-992", "VALUE:T1" ], [ "400", "990-992", "VALUE:T1" ], [ "100", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "305", "993-995", "VALUE:T2" ], [ "310", "993-995", "VALUE:T2" ], [ "320", "993-995", "VALUE:T2" ], [ "330", "993-995", "VALUE:T2" ], [ "400", "993-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "305", "996", "VALUE:T3" ], [ "310", "996", "VALUE:T1" ], [ "320", "996", "VALUE:T2" ], [ "330", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "305", "999", "VALUE:T1" ], [ "310", "999", "VALUE:T1" ], [ "320", "999", "VALUE:T2" ], [ "330", "999", "VALUE:T3" ], [ "400", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xjj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xjj.json
deleted file mode 100644
index e3168e30d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xjj.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xjj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 110-300 and 410-470 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.909Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "430", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "470", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "510", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1NOS" ], [ "110", "001-020", "VALUE:T1a" ], [ "120", "001-020", "VALUE:T1b" ], [ "130", "001-020", "VALUE:T1NOS" ], [ "150", "001-020", "VALUE:T1NOS" ], [ "200", "001-020", "VALUE:T1NOS" ], [ "300", "001-020", "VALUE:T1NOS" ], [ "410", "001-020", "VALUE:T1a" ], [ "420", "001-020", "VALUE:T1b" ], [ "430", "001-020", "VALUE:T1NOS" ], [ "450", "001-020", "VALUE:T1NOS" ], [ "460", "001-020", "VALUE:T1NOS" ], [ "470", "001-020", "VALUE:T1NOS" ], [ "500", "001-020", "VALUE:T1NOS" ], [ "510", "001-020", "VALUE:T1NOS" ], [ "100", "021-989", "VALUE:T2" ], [ "110", "021-989", "VALUE:T2" ], [ "120", "021-989", "VALUE:T2" ], [ "130", "021-989", "VALUE:T2" ], [ "150", "021-989", "VALUE:T2" ], [ "200", "021-989", "VALUE:T2" ], [ "300", "021-989", "VALUE:T2" ], [ "410", "021-989", "VALUE:T2" ], [ "420", "021-989", "VALUE:T2" ], [ "430", "021-989", "VALUE:T2" ], [ "450", "021-989", "VALUE:T2" ], [ "460", "021-989", "VALUE:T2" ], [ "470", "021-989", "VALUE:T2" ], [ "500", "021-989", "VALUE:T2" ], [ "510", "021-989", "VALUE:T2" ], [ "100", "990-992", "VALUE:T1NOS" ], [ "110", "990-992", "VALUE:T1a" ], [ "120", "990-992", "VALUE:T1b" ], [ "130", "990-992", "VALUE:T1NOS" ], [ "150", "990-992", "VALUE:T1NOS" ], [ "200", "990-992", "VALUE:T1NOS" ], [ "300", "990-992", "VALUE:T1NOS" ], [ "410", "990-992", "VALUE:T1a" ], [ "420", "990-992", "VALUE:T1b" ], [ "430", "990-992", "VALUE:T1NOS" ], [ "450", "990-992", "VALUE:T1NOS" ], [ "460", "990-992", "VALUE:T1NOS" ], [ "470", "990-992", "VALUE:T1NOS" ], [ "500", "990-992", "VALUE:T1NOS" ], [ "510", "990-992", "VALUE:T1NOS" ], [ "100", "993-995", "VALUE:T2" ], [ "110", "993-995", "VALUE:T2" ], [ "120", "993-995", "VALUE:T2" ], [ "130", "993-995", "VALUE:T2" ], [ "150", "993-995", "VALUE:T2" ], [ "200", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "410", "993-995", "VALUE:T2" ], [ "420", "993-995", "VALUE:T2" ], [ "430", "993-995", "VALUE:T2" ], [ "450", "993-995", "VALUE:T2" ], [ "460", "993-995", "VALUE:T2" ], [ "470", "993-995", "VALUE:T2" ], [ "500", "993-995", "VALUE:T2" ], [ "510", "993-995", "VALUE:T2" ], [ "100", "996", "VALUE:T2" ], [ "110", "996", "VALUE:T2" ], [ "120", "996", "VALUE:T2" ], [ "130", "996", "VALUE:T2" ], [ "150", "996", "VALUE:T2" ], [ "200", "996", "VALUE:T2" ], [ "300", "996", "VALUE:T2" ], [ "410", "996", "VALUE:T2" ], [ "420", "996", "VALUE:T2" ], [ "430", "996", "VALUE:T2" ], [ "450", "996", "VALUE:T2" ], [ "460", "996", "VALUE:T2" ], [ "470", "996", "VALUE:T2" ], [ "500", "996", "VALUE:T2" ], [ "510", "996", "VALUE:T2" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "410", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "430", "999", "VALUE:TX" ], [ "450", "999", "VALUE:T1NOS" ], [ "460", "999", "VALUE:T2" ], [ "470", "999", "VALUE:T2" ], [ "500", "999", "VALUE:TX" ], [ "510", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xqb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xqb.json
deleted file mode 100644
index 77a2b2973..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xqb.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xqb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100-310, 400, and 450 ONLY, the AJCC 6th Edition T category is assigned based on value of tumor size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:16.961Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "305", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "450", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "305", "021-050", "VALUE:T2" ], [ "310", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "450", "021-050", "VALUE:T2" ], [ "100", "051-989", "VALUE:T3" ], [ "300", "051-989", "VALUE:T3" ], [ "305", "051-989", "VALUE:T3" ], [ "310", "051-989", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3" ], [ "450", "051-989", "VALUE:T3" ], [ "100", "990-992", "VALUE:T1" ], [ "300", "990-992", "VALUE:T1" ], [ "305", "990-992", "VALUE:T1" ], [ "310", "990-992", "VALUE:T1" ], [ "400", "990-992", "VALUE:T1" ], [ "450", "990-992", "VALUE:T1" ], [ "100", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "305", "993-995", "VALUE:T2" ], [ "310", "993-995", "VALUE:T2" ], [ "400", "993-995", "VALUE:T2" ], [ "450", "993-995", "VALUE:T2" ], [ "100", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "305", "996-998", "ERROR:" ], [ "310", "996-998", "ERROR:" ], [ "400", "996-998", "ERROR:" ], [ "450", "996-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "305", "999", "VALUE:TX" ], [ "310", "999", "VALUE:T1" ], [ "400", "999", "VALUE:TX" ], [ "450", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xqc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xqc.json
deleted file mode 100644
index 93b0437fe..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc6_xqc.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc6_xqc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC6",
- "title" : "Extension Size AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 110-300 and 410-470 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.006Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "125", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "425", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "470", "000", "ERROR:" ], [ "110", "001-020", "VALUE:T1a" ], [ "120", "001-020", "VALUE:T1b" ], [ "125", "001-020", "VALUE:T1NOS" ], [ "200", "001-020", "VALUE:T1NOS" ], [ "300", "001-020", "VALUE:T1NOS" ], [ "410", "001-020", "VALUE:T1a" ], [ "420", "001-020", "VALUE:T1b" ], [ "425", "001-020", "VALUE:T1NOS" ], [ "450", "001-020", "VALUE:T1a" ], [ "460", "001-020", "VALUE:T1b" ], [ "470", "001-020", "VALUE:T1NOS" ], [ "110", "021-989", "VALUE:T2" ], [ "120", "021-989", "VALUE:T2" ], [ "125", "021-989", "VALUE:T2" ], [ "200", "021-989", "VALUE:T2" ], [ "300", "021-989", "VALUE:T2" ], [ "410", "021-989", "VALUE:T2" ], [ "420", "021-989", "VALUE:T2" ], [ "425", "021-989", "VALUE:T2" ], [ "450", "021-989", "VALUE:T2" ], [ "460", "021-989", "VALUE:T2" ], [ "470", "021-989", "VALUE:T2" ], [ "110", "990-992", "VALUE:T1a" ], [ "120", "990-992", "VALUE:T1b" ], [ "125", "990-992", "VALUE:T1NOS" ], [ "200", "990-992", "VALUE:T1NOS" ], [ "300", "990-992", "VALUE:T1NOS" ], [ "410", "990-992", "VALUE:T1a" ], [ "420", "990-992", "VALUE:T1b" ], [ "425", "990-992", "VALUE:T1NOS" ], [ "450", "990-992", "VALUE:T1a" ], [ "460", "990-992", "VALUE:T1b" ], [ "470", "990-992", "VALUE:T1NOS" ], [ "110", "993-995", "VALUE:T2" ], [ "120", "993-995", "VALUE:T2" ], [ "125", "993-995", "VALUE:T2" ], [ "200", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "410", "993-995", "VALUE:T2" ], [ "420", "993-995", "VALUE:T2" ], [ "425", "993-995", "VALUE:T2" ], [ "450", "993-995", "VALUE:T2" ], [ "460", "993-995", "VALUE:T2" ], [ "470", "993-995", "VALUE:T2" ], [ "110", "996-998", "ERROR:" ], [ "120", "996-998", "ERROR:" ], [ "125", "996-998", "ERROR:" ], [ "200", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "410", "996-998", "ERROR:" ], [ "420", "996-998", "ERROR:" ], [ "425", "996-998", "ERROR:" ], [ "450", "996-998", "ERROR:" ], [ "460", "996-998", "ERROR:" ], [ "470", "996-998", "ERROR:" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "125", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "410", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "425", "999", "VALUE:TX" ], [ "450", "999", "VALUE:T1a" ], [ "460", "999", "VALUE:T1b" ], [ "470", "999", "VALUE:T1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xbl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xbl.json
deleted file mode 100644
index 98b3a0e80..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xbl.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xbl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 110, 125-300, 410, 425, 450, and 470 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.054Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "000", "ERROR:" ], [ "125", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "425", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "470", "000", "ERROR:" ], [ "110", "001-020", "VALUE:T1a" ], [ "125", "001-020", "VALUE:T1NOS" ], [ "200", "001-020", "VALUE:T1NOS" ], [ "300", "001-020", "VALUE:T1NOS" ], [ "410", "001-020", "VALUE:T1a" ], [ "425", "001-020", "VALUE:T1NOS" ], [ "450", "001-020", "VALUE:T1a" ], [ "470", "001-020", "VALUE:T1NOS" ], [ "110", "021-989", "VALUE:T1b" ], [ "125", "021-989", "VALUE:T1b" ], [ "200", "021-989", "VALUE:T1b" ], [ "300", "021-989", "VALUE:T1b" ], [ "410", "021-989", "VALUE:T1b" ], [ "425", "021-989", "VALUE:T1b" ], [ "450", "021-989", "VALUE:T1b" ], [ "470", "021-989", "VALUE:T1b" ], [ "110", "990-992", "VALUE:T1a" ], [ "125", "990-992", "VALUE:T1NOS" ], [ "200", "990-992", "VALUE:T1NOS" ], [ "300", "990-992", "VALUE:T1NOS" ], [ "410", "990-992", "VALUE:T1a" ], [ "425", "990-992", "VALUE:T1NOS" ], [ "450", "990-992", "VALUE:T1a" ], [ "470", "990-992", "VALUE:T1NOS" ], [ "110", "993-995", "VALUE:T1b" ], [ "125", "993-995", "VALUE:T1b" ], [ "200", "993-995", "VALUE:T1b" ], [ "300", "993-995", "VALUE:T1b" ], [ "410", "993-995", "VALUE:T1b" ], [ "425", "993-995", "VALUE:T1b" ], [ "450", "993-995", "VALUE:T1b" ], [ "470", "993-995", "VALUE:T1b" ], [ "110", "996-998", "ERROR:" ], [ "125", "996-998", "ERROR:" ], [ "200", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "410", "996-998", "ERROR:" ], [ "425", "996-998", "ERROR:" ], [ "450", "996-998", "ERROR:" ], [ "470", "996-998", "ERROR:" ], [ "110", "999", "VALUE:T1NOS" ], [ "125", "999", "VALUE:T1NOS" ], [ "200", "999", "VALUE:T1NOS" ], [ "300", "999", "VALUE:T1NOS" ], [ "410", "999", "VALUE:T1NOS" ], [ "425", "999", "VALUE:T1NOS" ], [ "450", "999", "VALUE:T1a" ], [ "470", "999", "VALUE:T1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdj.json
deleted file mode 100644
index f2036fc06..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdj.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xdj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-120 160-300, 320-335, 370, 401-410, and 451 ONLY, the T category for AJCC 7staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.103Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "335", "000", "ERROR:" ], [ "370", "000", "ERROR:" ], [ "401", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "451", "000", "ERROR:" ], [ "458", "000", "ERROR:" ], [ "100", "001-010", "VALUE:T1a" ], [ "110", "001-010", "VALUE:T1a" ], [ "120", "001-010", "VALUE:T1a" ], [ "160", "001-010", "VALUE:T1a" ], [ "200", "001-010", "VALUE:T1a" ], [ "300", "001-010", "VALUE:T1a" ], [ "320", "001-010", "VALUE:T1a" ], [ "330", "001-010", "VALUE:T1a" ], [ "335", "001-010", "VALUE:T1a" ], [ "370", "001-010", "VALUE:T2" ], [ "401", "001-010", "VALUE:T1a" ], [ "410", "001-010", "VALUE:T2" ], [ "451", "001-010", "VALUE:T1a" ], [ "458", "001-010", "VALUE:T1a" ], [ "100", "011-020", "VALUE:T1b" ], [ "110", "011-020", "VALUE:T1b" ], [ "120", "011-020", "VALUE:T1b" ], [ "160", "011-020", "VALUE:T1b" ], [ "200", "011-020", "VALUE:T1b" ], [ "300", "011-020", "VALUE:T1b" ], [ "320", "011-020", "VALUE:T1b" ], [ "330", "011-020", "VALUE:T1b" ], [ "335", "011-020", "VALUE:T1b" ], [ "370", "011-020", "VALUE:T2" ], [ "401", "011-020", "VALUE:T1b" ], [ "410", "011-020", "VALUE:T2" ], [ "451", "011-020", "VALUE:T1b" ], [ "458", "011-020", "VALUE:T1b" ], [ "100", "021-040", "VALUE:T2" ], [ "110", "021-040", "VALUE:T2" ], [ "120", "021-040", "VALUE:T2" ], [ "160", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "320", "021-040", "VALUE:T2" ], [ "330", "021-040", "VALUE:T2" ], [ "335", "021-040", "VALUE:T2" ], [ "370", "021-040", "VALUE:T2" ], [ "401", "021-040", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2" ], [ "451", "021-040", "VALUE:T2" ], [ "458", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "110", "041-989", "VALUE:T3" ], [ "120", "041-989", "VALUE:T3" ], [ "160", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "320", "041-989", "VALUE:T3" ], [ "330", "041-989", "VALUE:T3" ], [ "335", "041-989", "VALUE:T3" ], [ "370", "041-989", "VALUE:T3" ], [ "401", "041-989", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3" ], [ "451", "041-989", "VALUE:T3" ], [ "458", "041-989", "VALUE:T3" ], [ "100", "990", "VALUE:T1a" ], [ "110", "990", "VALUE:T1a" ], [ "120", "990", "VALUE:T1a" ], [ "160", "990", "VALUE:T1a" ], [ "200", "990", "VALUE:T1a" ], [ "300", "990", "VALUE:T1a" ], [ "320", "990", "VALUE:T1a" ], [ "330", "990", "VALUE:T1a" ], [ "335", "990", "VALUE:T1NOS" ], [ "370", "990", "VALUE:T1a" ], [ "401", "990", "VALUE:T1a" ], [ "410", "990", "VALUE:T2" ], [ "451", "990", "VALUE:T1a" ], [ "458", "990", "VALUE:T1a" ], [ "100", "991", "VALUE:T1a" ], [ "110", "991", "VALUE:T1a" ], [ "120", "991", "VALUE:T1a" ], [ "160", "991", "VALUE:T1a" ], [ "200", "991", "VALUE:T1a" ], [ "300", "991", "VALUE:T1a" ], [ "320", "991", "VALUE:T1a" ], [ "330", "991", "VALUE:T1b" ], [ "335", "991", "VALUE:T1NOS" ], [ "370", "991", "VALUE:T1b" ], [ "401", "991", "VALUE:T1a" ], [ "410", "991", "VALUE:T2" ], [ "451", "991", "VALUE:T1b" ], [ "458", "991", "VALUE:T1a" ], [ "100", "992", "VALUE:T1b" ], [ "110", "992", "VALUE:T1b" ], [ "120", "992", "VALUE:T1b" ], [ "160", "992", "VALUE:T1b" ], [ "200", "992", "VALUE:T1b" ], [ "300", "992", "VALUE:T1b" ], [ "320", "992", "VALUE:T1b" ], [ "330", "992", "VALUE:T1b" ], [ "335", "992", "VALUE:T1NOS" ], [ "370", "992", "VALUE:T2" ], [ "401", "992", "VALUE:T1b" ], [ "410", "992", "VALUE:T1b" ], [ "451", "992", "VALUE:T2" ], [ "458", "992", "VALUE:T1b" ], [ "100", "993-994", "VALUE:T2" ], [ "110", "993-994", "VALUE:T2" ], [ "120", "993-994", "VALUE:T2" ], [ "160", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "320", "993-994", "VALUE:T2" ], [ "330", "993-994", "VALUE:T2" ], [ "335", "993-994", "VALUE:T2" ], [ "370", "993-994", "VALUE:T3" ], [ "401", "993-994", "VALUE:T2" ], [ "410", "993-994", "VALUE:T2" ], [ "451", "993-994", "VALUE:T3" ], [ "458", "993-994", "VALUE:T2" ], [ "100", "995", "VALUE:T3" ], [ "110", "995", "VALUE:T3" ], [ "120", "995", "VALUE:T3" ], [ "160", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "320", "995", "VALUE:T3" ], [ "330", "995", "VALUE:T3" ], [ "335", "995", "VALUE:T3" ], [ "370", "995", "VALUE:T3" ], [ "401", "995", "VALUE:T3" ], [ "410", "995", "VALUE:T3" ], [ "451", "995", "VALUE:T3" ], [ "458", "995", "VALUE:T3" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "200", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "320", "998", "ERROR:" ], [ "330", "998", "ERROR:" ], [ "335", "998", "ERROR:" ], [ "370", "998", "ERROR:" ], [ "401", "998", "ERROR:" ], [ "410", "998", "ERROR:" ], [ "451", "998", "ERROR:" ], [ "458", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "320", "999", "VALUE:T1a" ], [ "330", "999", "VALUE:T1b" ], [ "335", "999", "VALUE:T1NOS" ], [ "370", "999", "VALUE:TX" ], [ "401", "999", "VALUE:TX" ], [ "410", "999", "VALUE:TX" ], [ "451", "999", "VALUE:TX" ], [ "458", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdl.json
deleted file mode 100644
index 495f0388e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdl.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xdl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 105, 205, 305, 330, 350, 400, 500, 530, 555, and 565 ONLY, the T category for AJCC 7 staging is assigned based on value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.162Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "105", "000", "ERROR:" ], [ "205", "000", "ERROR:" ], [ "305", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "530", "000", "ERROR:" ], [ "555", "000", "ERROR:" ], [ "565", "000", "ERROR:" ], [ "566", "000", "ERROR:" ], [ "105", "001-020", "VALUE:T1" ], [ "205", "001-020", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1" ], [ "330", "001-020", "VALUE:T1" ], [ "350", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "530", "001-020", "VALUE:T1" ], [ "555", "001-020", "VALUE:T1" ], [ "565", "001-020", "VALUE:T1" ], [ "566", "001-020", "VALUE:T1" ], [ "105", "021-040", "VALUE:T2" ], [ "205", "021-040", "VALUE:T2" ], [ "305", "021-040", "VALUE:T2" ], [ "330", "021-040", "VALUE:T2" ], [ "350", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "530", "021-040", "VALUE:T2" ], [ "555", "021-040", "VALUE:T2" ], [ "565", "021-040", "VALUE:T2" ], [ "566", "021-040", "VALUE:T2" ], [ "105", "041-989", "VALUE:T3" ], [ "205", "041-989", "VALUE:T3" ], [ "305", "041-989", "VALUE:T3" ], [ "330", "041-989", "VALUE:T3" ], [ "350", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "530", "041-989", "VALUE:T3" ], [ "555", "041-989", "VALUE:T3" ], [ "565", "041-989", "VALUE:T3" ], [ "566", "041-989", "VALUE:T3" ], [ "105", "990-991", "VALUE:T1" ], [ "205", "990-991", "VALUE:T1" ], [ "305", "990-991", "VALUE:T1" ], [ "330", "990-991", "VALUE:T1" ], [ "350", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "530", "990-991", "VALUE:T1" ], [ "555", "990-991", "VALUE:T1" ], [ "565", "990-991", "VALUE:T1" ], [ "566", "990-991", "VALUE:T1" ], [ "105", "992", "VALUE:T1" ], [ "205", "992", "VALUE:T1" ], [ "305", "992", "VALUE:T1" ], [ "330", "992", "VALUE:T1" ], [ "350", "992", "VALUE:T2" ], [ "400", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "530", "992", "VALUE:T1" ], [ "555", "992", "VALUE:T1" ], [ "565", "992", "VALUE:T1" ], [ "566", "992", "VALUE:T1" ], [ "105", "993-994", "VALUE:T2" ], [ "205", "993-994", "VALUE:T2" ], [ "305", "993-994", "VALUE:T2" ], [ "330", "993-994", "VALUE:T1" ], [ "350", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "530", "993-994", "VALUE:T2" ], [ "555", "993-994", "VALUE:T2" ], [ "565", "993-994", "VALUE:T2" ], [ "566", "993-994", "VALUE:T2" ], [ "105", "995", "VALUE:T3" ], [ "205", "995", "VALUE:T3" ], [ "305", "995", "VALUE:T3" ], [ "330", "995", "VALUE:T1" ], [ "350", "995", "VALUE:T2" ], [ "400", "995", "VALUE:T3" ], [ "500", "995", "VALUE:T3" ], [ "530", "995", "VALUE:T3" ], [ "555", "995", "VALUE:T3" ], [ "565", "995", "VALUE:T3" ], [ "566", "995", "VALUE:T3" ], [ "105", "996", "VALUE:T3" ], [ "205", "996", "VALUE:T3" ], [ "305", "996", "VALUE:T3" ], [ "330", "996", "VALUE:T3" ], [ "350", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "530", "996", "VALUE:T3" ], [ "555", "996", "VALUE:T3" ], [ "565", "996", "VALUE:T3" ], [ "566", "996", "VALUE:T3" ], [ "105", "997-998", "ERROR:" ], [ "205", "997-998", "ERROR:" ], [ "305", "997-998", "ERROR:" ], [ "330", "997-998", "ERROR:" ], [ "350", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "530", "997-998", "ERROR:" ], [ "555", "997-998", "ERROR:" ], [ "565", "997-998", "ERROR:" ], [ "566", "997-998", "ERROR:" ], [ "105", "999", "VALUE:TX" ], [ "205", "999", "VALUE:TX" ], [ "305", "999", "VALUE:TX" ], [ "330", "999", "VALUE:T1" ], [ "350", "999", "VALUE:T2" ], [ "400", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "530", "999", "VALUE:TX" ], [ "555", "999", "VALUE:TX" ], [ "565", "999", "VALUE:TX" ], [ "566", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdw.json
deleted file mode 100644
index b840e1377..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xdw.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xdw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 150-520 ONLY, the T category is assigned based on value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.219Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "305", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "510", "000", "ERROR:" ], [ "520", "000", "ERROR:" ], [ "150", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "420", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "510", "001-020", "VALUE:T1" ], [ "520", "001-020", "VALUE:T1" ], [ "150", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "305", "021-040", "VALUE:T2" ], [ "310", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "420", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "510", "021-040", "VALUE:T2" ], [ "520", "021-040", "VALUE:T2" ], [ "150", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "305", "041-989", "VALUE:T3" ], [ "310", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "420", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "510", "041-989", "VALUE:T3" ], [ "520", "041-989", "VALUE:T3" ], [ "150", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "305", "990-991", "VALUE:T1" ], [ "310", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "420", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "510", "990-991", "VALUE:T1" ], [ "520", "990-991", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "305", "992", "VALUE:T1" ], [ "310", "992", "VALUE:T2" ], [ "400", "992", "VALUE:T1" ], [ "420", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "510", "992", "VALUE:T1" ], [ "520", "992", "VALUE:T1" ], [ "150", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "305", "993-994", "VALUE:T1" ], [ "310", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "420", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "510", "993-994", "VALUE:T2" ], [ "520", "993-994", "VALUE:T2" ], [ "150", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "305", "995", "VALUE:T1" ], [ "310", "995", "VALUE:T2" ], [ "400", "995", "VALUE:T3" ], [ "420", "995", "VALUE:T3" ], [ "500", "995", "VALUE:T3" ], [ "510", "995", "VALUE:T3" ], [ "520", "995", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "305", "996", "VALUE:T3" ], [ "310", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "420", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "510", "996", "VALUE:T3" ], [ "520", "996", "VALUE:T3" ], [ "150", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "305", "997-998", "ERROR:" ], [ "310", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "420", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "510", "997-998", "ERROR:" ], [ "520", "997-998", "ERROR:" ], [ "150", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "305", "999", "VALUE:T1" ], [ "310", "999", "VALUE:T2" ], [ "400", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "510", "999", "VALUE:TX" ], [ "520", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xeb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xeb.json
deleted file mode 100644
index 6263f6e22..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xeb.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xeb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-800 only, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.279Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "165", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "458", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "570", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "650", "000", "ERROR:" ], [ "660", "000", "ERROR:" ], [ "700", "000", "ERROR:" ], [ "750", "000", "ERROR:" ], [ "800", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "110", "001-020", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1" ], [ "130", "001-020", "VALUE:T1" ], [ "140", "001-020", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1" ], [ "155", "001-020", "VALUE:T1" ], [ "160", "001-020", "VALUE:T1" ], [ "165", "001-020", "VALUE:T1" ], [ "170", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "210", "001-020", "VALUE:T1" ], [ "250", "001-020", "VALUE:T1" ], [ "270", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "450", "001-020", "VALUE:T1" ], [ "458", "001-020", "VALUE:T1" ], [ "460", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "570", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "650", "001-020", "VALUE:T1" ], [ "660", "001-020", "VALUE:T1" ], [ "700", "001-020", "VALUE:T1" ], [ "750", "001-020", "VALUE:T1" ], [ "800", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "110", "021-050", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2" ], [ "130", "021-050", "VALUE:T2" ], [ "140", "021-050", "VALUE:T2" ], [ "150", "021-050", "VALUE:T2" ], [ "155", "021-050", "VALUE:T2" ], [ "160", "021-050", "VALUE:T2" ], [ "165", "021-050", "VALUE:T2" ], [ "170", "021-050", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2" ], [ "210", "021-050", "VALUE:T2" ], [ "250", "021-050", "VALUE:T2" ], [ "270", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "450", "021-050", "VALUE:T2" ], [ "458", "021-050", "VALUE:T2" ], [ "460", "021-050", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2" ], [ "550", "021-050", "VALUE:T2" ], [ "560", "021-050", "VALUE:T2" ], [ "570", "021-050", "VALUE:T2" ], [ "600", "021-050", "VALUE:T2" ], [ "650", "021-050", "VALUE:T2" ], [ "660", "021-050", "VALUE:T2" ], [ "700", "021-050", "VALUE:T2" ], [ "750", "021-050", "VALUE:T2" ], [ "800", "021-050", "VALUE:T2" ], [ "100", "051-100", "VALUE:T3" ], [ "110", "051-100", "VALUE:T3" ], [ "120", "051-100", "VALUE:T3" ], [ "130", "051-100", "VALUE:T3" ], [ "140", "051-100", "VALUE:T3" ], [ "150", "051-100", "VALUE:T3" ], [ "155", "051-100", "VALUE:T3" ], [ "160", "051-100", "VALUE:T3" ], [ "165", "051-100", "VALUE:T3" ], [ "170", "051-100", "VALUE:T3" ], [ "200", "051-100", "VALUE:T3" ], [ "210", "051-100", "VALUE:T3" ], [ "250", "051-100", "VALUE:T3" ], [ "270", "051-100", "VALUE:T3" ], [ "300", "051-100", "VALUE:T3" ], [ "400", "051-100", "VALUE:T3" ], [ "450", "051-100", "VALUE:T3" ], [ "458", "051-100", "VALUE:T3" ], [ "460", "051-100", "VALUE:T3" ], [ "500", "051-100", "VALUE:T3" ], [ "550", "051-100", "VALUE:T3" ], [ "560", "051-100", "VALUE:T3" ], [ "570", "051-100", "VALUE:T3" ], [ "600", "051-100", "VALUE:T3" ], [ "650", "051-100", "VALUE:T3" ], [ "660", "051-100", "VALUE:T3" ], [ "700", "051-100", "VALUE:T3" ], [ "750", "051-100", "VALUE:T3" ], [ "800", "051-100", "VALUE:T3" ], [ "100", "101-989", "VALUE:T4" ], [ "110", "101-989", "VALUE:T4" ], [ "120", "101-989", "VALUE:T4" ], [ "130", "101-989", "VALUE:T4" ], [ "140", "101-989", "VALUE:T4" ], [ "150", "101-989", "VALUE:T4" ], [ "155", "101-989", "VALUE:T4" ], [ "160", "101-989", "VALUE:T4" ], [ "165", "101-989", "VALUE:T4" ], [ "170", "101-989", "VALUE:T4" ], [ "200", "101-989", "VALUE:T4" ], [ "210", "101-989", "VALUE:T4" ], [ "250", "101-989", "VALUE:T4" ], [ "270", "101-989", "VALUE:T4" ], [ "300", "101-989", "VALUE:T4" ], [ "400", "101-989", "VALUE:T4" ], [ "450", "101-989", "VALUE:T4" ], [ "458", "101-989", "VALUE:T4" ], [ "460", "101-989", "VALUE:T4" ], [ "500", "101-989", "VALUE:T4" ], [ "550", "101-989", "VALUE:T4" ], [ "560", "101-989", "VALUE:T4" ], [ "570", "101-989", "VALUE:T4" ], [ "600", "101-989", "VALUE:T4" ], [ "650", "101-989", "VALUE:T4" ], [ "660", "101-989", "VALUE:T4" ], [ "700", "101-989", "VALUE:T4" ], [ "750", "101-989", "VALUE:T4" ], [ "800", "101-989", "VALUE:T4" ], [ "100", "990-991", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "155", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "165", "990-991", "VALUE:T1" ], [ "170", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "210", "990-991", "VALUE:T1" ], [ "250", "990-991", "VALUE:T1" ], [ "270", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "450", "990-991", "VALUE:T1" ], [ "458", "990-991", "VALUE:T1" ], [ "460", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "570", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "650", "990-991", "VALUE:T1" ], [ "660", "990-991", "VALUE:T1" ], [ "700", "990-991", "VALUE:T1" ], [ "750", "990-991", "VALUE:T1" ], [ "800", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "110", "992", "VALUE:T1" ], [ "120", "992", "VALUE:T1" ], [ "130", "992", "VALUE:T1" ], [ "140", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "160", "992", "VALUE:T1" ], [ "165", "992", "VALUE:T1" ], [ "170", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "210", "992", "VALUE:T2" ], [ "250", "992", "VALUE:T3" ], [ "270", "992", "VALUE:T4" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "450", "992", "VALUE:T1" ], [ "458", "992", "VALUE:T1" ], [ "460", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "550", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T1" ], [ "570", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "650", "992", "VALUE:T1" ], [ "660", "992", "VALUE:T1" ], [ "700", "992", "VALUE:T1" ], [ "750", "992", "VALUE:T1" ], [ "800", "992", "VALUE:T1" ], [ "100", "993", "VALUE:T2" ], [ "110", "993", "VALUE:T2" ], [ "120", "993", "VALUE:T2" ], [ "130", "993", "VALUE:T2" ], [ "140", "993", "VALUE:T2" ], [ "150", "993", "VALUE:T2" ], [ "155", "993", "VALUE:T2" ], [ "160", "993", "VALUE:T2" ], [ "165", "993", "VALUE:T2" ], [ "170", "993", "VALUE:T2" ], [ "200", "993", "VALUE:T2" ], [ "210", "993", "VALUE:T2" ], [ "250", "993", "VALUE:T2" ], [ "270", "993", "VALUE:T2" ], [ "300", "993", "VALUE:T2" ], [ "400", "993", "VALUE:T2" ], [ "450", "993", "VALUE:T2" ], [ "458", "993", "VALUE:T2" ], [ "460", "993", "VALUE:T2" ], [ "500", "993", "VALUE:T2" ], [ "550", "993", "VALUE:T2" ], [ "560", "993", "VALUE:T2" ], [ "570", "993", "VALUE:T2" ], [ "600", "993", "VALUE:T2" ], [ "650", "993", "VALUE:T2" ], [ "660", "993", "VALUE:T2" ], [ "700", "993", "VALUE:T2" ], [ "750", "993", "VALUE:T2" ], [ "800", "993", "VALUE:T2" ], [ "100", "994-995", "VALUE:T2" ], [ "110", "994-995", "VALUE:T2" ], [ "120", "994-995", "VALUE:T2" ], [ "130", "994-995", "VALUE:T2" ], [ "140", "994-995", "VALUE:T2" ], [ "150", "994-995", "VALUE:T2" ], [ "155", "994-995", "VALUE:T2" ], [ "160", "994-995", "VALUE:T2" ], [ "165", "994-995", "VALUE:T2" ], [ "170", "994-995", "VALUE:T1" ], [ "200", "994-995", "VALUE:T2" ], [ "210", "994-995", "VALUE:T2" ], [ "250", "994-995", "VALUE:T3" ], [ "270", "994-995", "VALUE:T4" ], [ "300", "994-995", "VALUE:T2" ], [ "400", "994-995", "VALUE:T2" ], [ "450", "994-995", "VALUE:T2" ], [ "458", "994-995", "VALUE:T2" ], [ "460", "994-995", "VALUE:T2" ], [ "500", "994-995", "VALUE:T2" ], [ "550", "994-995", "VALUE:T2" ], [ "560", "994-995", "VALUE:T2" ], [ "570", "994-995", "VALUE:T2" ], [ "600", "994-995", "VALUE:T2" ], [ "650", "994-995", "VALUE:T2" ], [ "660", "994-995", "VALUE:T2" ], [ "700", "994-995", "VALUE:T2" ], [ "750", "994-995", "VALUE:T2" ], [ "800", "994-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "110", "996", "VALUE:T3" ], [ "120", "996", "VALUE:T3" ], [ "130", "996", "VALUE:T3" ], [ "140", "996", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "155", "996", "VALUE:T3" ], [ "160", "996", "VALUE:T3" ], [ "165", "996", "VALUE:T3" ], [ "170", "996", "VALUE:T1" ], [ "200", "996", "VALUE:T3" ], [ "210", "996", "VALUE:T2" ], [ "250", "996", "VALUE:T3" ], [ "270", "996", "VALUE:T4" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "450", "996", "VALUE:T3" ], [ "458", "996", "VALUE:T3" ], [ "460", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "550", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "570", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "650", "996", "VALUE:T3" ], [ "660", "996", "VALUE:T3" ], [ "700", "996", "VALUE:T3" ], [ "750", "996", "VALUE:T3" ], [ "800", "996", "VALUE:T3" ], [ "100", "997", "VALUE:T4" ], [ "110", "997", "VALUE:T4" ], [ "120", "997", "VALUE:T4" ], [ "130", "997", "VALUE:T4" ], [ "140", "997", "VALUE:T4" ], [ "150", "997", "VALUE:T4" ], [ "155", "997", "VALUE:T4" ], [ "160", "997", "VALUE:T4" ], [ "165", "997", "VALUE:T4" ], [ "170", "997", "VALUE:T1" ], [ "200", "997", "VALUE:T4" ], [ "210", "997", "VALUE:T2" ], [ "250", "997", "VALUE:T3" ], [ "270", "997", "VALUE:T4" ], [ "300", "997", "VALUE:T4" ], [ "400", "997", "VALUE:T4" ], [ "450", "997", "VALUE:T4" ], [ "458", "997", "VALUE:T4" ], [ "460", "997", "VALUE:T4" ], [ "500", "997", "VALUE:T4" ], [ "550", "997", "VALUE:T4" ], [ "560", "997", "VALUE:T4" ], [ "570", "997", "VALUE:T4" ], [ "600", "997", "VALUE:T4" ], [ "650", "997", "VALUE:T4" ], [ "660", "997", "VALUE:T4" ], [ "700", "997", "VALUE:T4" ], [ "750", "997", "VALUE:T4" ], [ "800", "997", "VALUE:T4" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "155", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "165", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "200", "998", "ERROR:" ], [ "210", "998", "ERROR:" ], [ "250", "998", "ERROR:" ], [ "270", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "450", "998", "ERROR:" ], [ "458", "998", "ERROR:" ], [ "460", "998", "ERROR:" ], [ "500", "998", "ERROR:" ], [ "550", "998", "ERROR:" ], [ "560", "998", "ERROR:" ], [ "570", "998", "ERROR:" ], [ "600", "998", "ERROR:" ], [ "650", "998", "ERROR:" ], [ "660", "998", "ERROR:" ], [ "700", "998", "ERROR:" ], [ "750", "998", "ERROR:" ], [ "800", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "155", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "165", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1" ], [ "200", "999", "VALUE:TX" ], [ "210", "999", "VALUE:T2" ], [ "250", "999", "VALUE:T3" ], [ "270", "999", "VALUE:T4" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "450", "999", "VALUE:TX" ], [ "458", "999", "VALUE:TX" ], [ "460", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "550", "999", "VALUE:TX" ], [ "560", "999", "VALUE:TX" ], [ "570", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "650", "999", "VALUE:TX" ], [ "660", "999", "VALUE:TX" ], [ "700", "999", "VALUE:TX" ], [ "750", "999", "VALUE:TX" ], [ "800", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xec.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xec.json
deleted file mode 100644
index c5edf1d5d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xec.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xec",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-800 only, the T category for AJCC 7 staging is assigned based on the value of Tumor Size from this table.",
- "last_modified" : "2015-05-27T16:19:17.357Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "165", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "440", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "455", "000", "ERROR:" ], [ "458", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "555", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "570", "000", "ERROR:" ], [ "610", "000", "ERROR:" ], [ "700", "000", "ERROR:" ], [ "800", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "110", "001-020", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1" ], [ "130", "001-020", "VALUE:T1" ], [ "140", "001-020", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1" ], [ "155", "001-020", "VALUE:T1" ], [ "160", "001-020", "VALUE:T1" ], [ "165", "001-020", "VALUE:T1" ], [ "170", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "210", "001-020", "VALUE:T1" ], [ "250", "001-020", "VALUE:T1" ], [ "270", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "440", "001-020", "VALUE:T1" ], [ "450", "001-020", "VALUE:T1" ], [ "455", "001-020", "VALUE:T1" ], [ "458", "001-020", "VALUE:T1" ], [ "460", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1" ], [ "555", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "570", "001-020", "VALUE:T1" ], [ "610", "001-020", "VALUE:T1" ], [ "700", "001-020", "VALUE:T1" ], [ "800", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "110", "021-050", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2" ], [ "130", "021-050", "VALUE:T2" ], [ "140", "021-050", "VALUE:T2" ], [ "150", "021-050", "VALUE:T2" ], [ "155", "021-050", "VALUE:T2" ], [ "160", "021-050", "VALUE:T2" ], [ "165", "021-050", "VALUE:T2" ], [ "170", "021-050", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2" ], [ "210", "021-050", "VALUE:T2" ], [ "250", "021-050", "VALUE:T2" ], [ "270", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "440", "021-050", "VALUE:T2" ], [ "450", "021-050", "VALUE:T2" ], [ "455", "021-050", "VALUE:T2" ], [ "458", "021-050", "VALUE:T2" ], [ "460", "021-050", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2" ], [ "550", "021-050", "VALUE:T2" ], [ "555", "021-050", "VALUE:T2" ], [ "560", "021-050", "VALUE:T2" ], [ "570", "021-050", "VALUE:T2" ], [ "610", "021-050", "VALUE:T2" ], [ "700", "021-050", "VALUE:T2" ], [ "800", "021-050", "VALUE:T2" ], [ "100", "051-100", "VALUE:T3" ], [ "110", "051-100", "VALUE:T3" ], [ "120", "051-100", "VALUE:T3" ], [ "130", "051-100", "VALUE:T3" ], [ "140", "051-100", "VALUE:T3" ], [ "150", "051-100", "VALUE:T3" ], [ "155", "051-100", "VALUE:T3" ], [ "160", "051-100", "VALUE:T3" ], [ "165", "051-100", "VALUE:T3" ], [ "170", "051-100", "VALUE:T3" ], [ "200", "051-100", "VALUE:T3" ], [ "210", "051-100", "VALUE:T3" ], [ "250", "051-100", "VALUE:T3" ], [ "270", "051-100", "VALUE:T3" ], [ "300", "051-100", "VALUE:T3" ], [ "400", "051-100", "VALUE:T3" ], [ "440", "051-100", "VALUE:T3" ], [ "450", "051-100", "VALUE:T3" ], [ "455", "051-100", "VALUE:T3" ], [ "458", "051-100", "VALUE:T3" ], [ "460", "051-100", "VALUE:T3" ], [ "500", "051-100", "VALUE:T3" ], [ "550", "051-100", "VALUE:T3" ], [ "555", "051-100", "VALUE:T3" ], [ "560", "051-100", "VALUE:T3" ], [ "570", "051-100", "VALUE:T3" ], [ "610", "051-100", "VALUE:T3" ], [ "700", "051-100", "VALUE:T3" ], [ "800", "051-100", "VALUE:T3" ], [ "100", "100-989", "VALUE:T4" ], [ "110", "100-989", "VALUE:T4" ], [ "120", "100-989", "VALUE:T4" ], [ "130", "100-989", "VALUE:T4" ], [ "140", "100-989", "VALUE:T4" ], [ "150", "100-989", "VALUE:T4" ], [ "155", "100-989", "VALUE:T4" ], [ "160", "100-989", "VALUE:T4" ], [ "165", "100-989", "VALUE:T4" ], [ "170", "100-989", "VALUE:T4" ], [ "200", "100-989", "VALUE:T4" ], [ "210", "100-989", "VALUE:T4" ], [ "250", "100-989", "VALUE:T4" ], [ "270", "100-989", "VALUE:T4" ], [ "300", "100-989", "VALUE:T4" ], [ "400", "100-989", "VALUE:T4" ], [ "440", "100-989", "VALUE:T4" ], [ "450", "100-989", "VALUE:T4" ], [ "455", "100-989", "VALUE:T4" ], [ "458", "100-989", "VALUE:T4" ], [ "460", "100-989", "VALUE:T4" ], [ "500", "100-989", "VALUE:T4" ], [ "550", "100-989", "VALUE:T4" ], [ "555", "100-989", "VALUE:T4" ], [ "560", "100-989", "VALUE:T4" ], [ "570", "100-989", "VALUE:T4" ], [ "610", "100-989", "VALUE:T4" ], [ "700", "100-989", "VALUE:T4" ], [ "800", "100-989", "VALUE:T4" ], [ "100", "990-991", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "155", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "165", "990-991", "VALUE:T1" ], [ "170", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "210", "990-991", "VALUE:T1" ], [ "250", "990-991", "VALUE:T1" ], [ "270", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "440", "990-991", "VALUE:T1" ], [ "450", "990-991", "VALUE:T1" ], [ "455", "990-991", "VALUE:T1" ], [ "458", "990-991", "VALUE:T1" ], [ "460", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1" ], [ "555", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "570", "990-991", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1" ], [ "700", "990-991", "VALUE:T1" ], [ "800", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "110", "992", "VALUE:T1" ], [ "120", "992", "VALUE:T1" ], [ "130", "992", "VALUE:T1" ], [ "140", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "160", "992", "VALUE:T1" ], [ "165", "992", "VALUE:T1" ], [ "170", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "210", "992", "VALUE:T2" ], [ "250", "992", "VALUE:T3" ], [ "270", "992", "VALUE:T4" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "440", "992", "VALUE:T1" ], [ "450", "992", "VALUE:T1" ], [ "455", "992", "VALUE:T1" ], [ "458", "992", "VALUE:T1" ], [ "460", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "550", "992", "VALUE:T1" ], [ "555", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T1" ], [ "570", "992", "VALUE:T1" ], [ "610", "992", "VALUE:T1" ], [ "700", "992", "VALUE:T1" ], [ "800", "992", "VALUE:T1" ], [ "100", "993", "VALUE:T2" ], [ "110", "993", "VALUE:T2" ], [ "120", "993", "VALUE:T2" ], [ "130", "993", "VALUE:T2" ], [ "140", "993", "VALUE:T2" ], [ "150", "993", "VALUE:T2" ], [ "155", "993", "VALUE:T2" ], [ "160", "993", "VALUE:T2" ], [ "165", "993", "VALUE:T2" ], [ "170", "993", "VALUE:T2" ], [ "200", "993", "VALUE:T2" ], [ "210", "993", "VALUE:T2" ], [ "250", "993", "VALUE:T2" ], [ "270", "993", "VALUE:T2" ], [ "300", "993", "VALUE:T2" ], [ "400", "993", "VALUE:T2" ], [ "440", "993", "VALUE:T2" ], [ "450", "993", "VALUE:T2" ], [ "455", "993", "VALUE:T2" ], [ "458", "993", "VALUE:T2" ], [ "460", "993", "VALUE:T2" ], [ "500", "993", "VALUE:T2" ], [ "550", "993", "VALUE:T2" ], [ "555", "993", "VALUE:T2" ], [ "560", "993", "VALUE:T2" ], [ "570", "993", "VALUE:T2" ], [ "610", "993", "VALUE:T2" ], [ "700", "993", "VALUE:T2" ], [ "800", "993", "VALUE:T2" ], [ "100", "994-995", "VALUE:T2" ], [ "110", "994-995", "VALUE:T2" ], [ "120", "994-995", "VALUE:T2" ], [ "130", "994-995", "VALUE:T2" ], [ "140", "994-995", "VALUE:T2" ], [ "150", "994-995", "VALUE:T2" ], [ "155", "994-995", "VALUE:T2" ], [ "160", "994-995", "VALUE:T2" ], [ "165", "994-995", "VALUE:T2" ], [ "170", "994-995", "VALUE:T1" ], [ "200", "994-995", "VALUE:T2" ], [ "210", "994-995", "VALUE:T2" ], [ "250", "994-995", "VALUE:T3" ], [ "270", "994-995", "VALUE:T4" ], [ "300", "994-995", "VALUE:T2" ], [ "400", "994-995", "VALUE:T2" ], [ "440", "994-995", "VALUE:T2" ], [ "450", "994-995", "VALUE:T2" ], [ "455", "994-995", "VALUE:T2" ], [ "458", "994-995", "VALUE:T2" ], [ "460", "994-995", "VALUE:T2" ], [ "500", "994-995", "VALUE:T2" ], [ "550", "994-995", "VALUE:T2" ], [ "555", "994-995", "VALUE:T2" ], [ "560", "994-995", "VALUE:T2" ], [ "570", "994-995", "VALUE:T2" ], [ "610", "994-995", "VALUE:T2" ], [ "700", "994-995", "VALUE:T2" ], [ "800", "994-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "110", "996", "VALUE:T3" ], [ "120", "996", "VALUE:T3" ], [ "130", "996", "VALUE:T3" ], [ "140", "996", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "155", "996", "VALUE:T3" ], [ "160", "996", "VALUE:T3" ], [ "165", "996", "VALUE:T3" ], [ "170", "996", "VALUE:T1" ], [ "200", "996", "VALUE:T3" ], [ "210", "996", "VALUE:T2" ], [ "250", "996", "VALUE:T3" ], [ "270", "996", "VALUE:T4" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "440", "996", "VALUE:T3" ], [ "450", "996", "VALUE:T3" ], [ "455", "996", "VALUE:T3" ], [ "458", "996", "VALUE:T3" ], [ "460", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "550", "996", "VALUE:T3" ], [ "555", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "570", "996", "VALUE:T3" ], [ "610", "996", "VALUE:T3" ], [ "700", "996", "VALUE:T3" ], [ "800", "996", "VALUE:T3" ], [ "100", "997", "VALUE:T4" ], [ "110", "997", "VALUE:T4" ], [ "120", "997", "VALUE:T4" ], [ "130", "997", "VALUE:T4" ], [ "140", "997", "VALUE:T4" ], [ "150", "997", "VALUE:T4" ], [ "155", "997", "VALUE:T4" ], [ "160", "997", "VALUE:T4" ], [ "165", "997", "VALUE:T4" ], [ "170", "997", "VALUE:T1" ], [ "200", "997", "VALUE:T4" ], [ "210", "997", "VALUE:T2" ], [ "250", "997", "VALUE:T3" ], [ "270", "997", "VALUE:T4" ], [ "300", "997", "VALUE:T4" ], [ "400", "997", "VALUE:T4" ], [ "440", "997", "VALUE:T4" ], [ "450", "997", "VALUE:T4" ], [ "455", "997", "VALUE:T4" ], [ "458", "997", "VALUE:T4" ], [ "460", "997", "VALUE:T4" ], [ "500", "997", "VALUE:T4" ], [ "550", "997", "VALUE:T4" ], [ "555", "997", "VALUE:T4" ], [ "560", "997", "VALUE:T4" ], [ "570", "997", "VALUE:T4" ], [ "610", "997", "VALUE:T4" ], [ "700", "997", "VALUE:T4" ], [ "800", "997", "VALUE:T4" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "155", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "165", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "200", "998", "ERROR:" ], [ "210", "998", "ERROR:" ], [ "250", "998", "ERROR:" ], [ "270", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "440", "998", "ERROR:" ], [ "450", "998", "ERROR:" ], [ "455", "998", "ERROR:" ], [ "458", "998", "ERROR:" ], [ "460", "998", "ERROR:" ], [ "500", "998", "ERROR:" ], [ "550", "998", "ERROR:" ], [ "555", "998", "ERROR:" ], [ "560", "998", "ERROR:" ], [ "570", "998", "ERROR:" ], [ "610", "998", "ERROR:" ], [ "700", "998", "ERROR:" ], [ "800", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "155", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "165", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1" ], [ "200", "999", "VALUE:TX" ], [ "210", "999", "VALUE:T2" ], [ "250", "999", "VALUE:T3" ], [ "270", "999", "VALUE:T4" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "440", "999", "VALUE:TX" ], [ "450", "999", "VALUE:TX" ], [ "455", "999", "VALUE:TX" ], [ "458", "999", "VALUE:TX" ], [ "460", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "550", "999", "VALUE:TX" ], [ "555", "999", "VALUE:TX" ], [ "560", "999", "VALUE:TX" ], [ "570", "999", "VALUE:TX" ], [ "610", "999", "VALUE:TX" ], [ "700", "999", "VALUE:TX" ], [ "800", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xed.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xed.json
deleted file mode 100644
index f22d6116f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xed.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xed",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-800 only, the T category is assigned based on the value of CS Tumor Size from this table.",
- "last_modified" : "2015-05-27T16:19:17.438Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "165", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "340", "000", "ERROR:" ], [ "390", "000", "ERROR:" ], [ "395", "000", "ERROR:" ], [ "398", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "440", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "458", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "610", "000", "ERROR:" ], [ "650", "000", "ERROR:" ], [ "700", "000", "ERROR:" ], [ "800", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "110", "001-020", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1" ], [ "130", "001-020", "VALUE:T1" ], [ "140", "001-020", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1" ], [ "155", "001-020", "VALUE:T1" ], [ "160", "001-020", "VALUE:T1" ], [ "165", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "340", "001-020", "VALUE:T1" ], [ "390", "001-020", "VALUE:T1" ], [ "395", "001-020", "VALUE:T1" ], [ "398", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "440", "001-020", "VALUE:T1" ], [ "450", "001-020", "VALUE:T1" ], [ "458", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "610", "001-020", "VALUE:T1" ], [ "650", "001-020", "VALUE:T1" ], [ "700", "001-020", "VALUE:T1" ], [ "800", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "110", "021-050", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2" ], [ "130", "021-050", "VALUE:T2" ], [ "140", "021-050", "VALUE:T2" ], [ "150", "021-050", "VALUE:T2" ], [ "155", "021-050", "VALUE:T2" ], [ "160", "021-050", "VALUE:T2" ], [ "165", "021-050", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "340", "021-050", "VALUE:T2" ], [ "390", "021-050", "VALUE:T2" ], [ "395", "021-050", "VALUE:T2" ], [ "398", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "440", "021-050", "VALUE:T2" ], [ "450", "021-050", "VALUE:T2" ], [ "458", "021-050", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2" ], [ "550", "021-050", "VALUE:T2" ], [ "560", "021-050", "VALUE:T2" ], [ "600", "021-050", "VALUE:T2" ], [ "610", "021-050", "VALUE:T2" ], [ "650", "021-050", "VALUE:T2" ], [ "700", "021-050", "VALUE:T2" ], [ "800", "021-050", "VALUE:T2" ], [ "100", "051-100", "VALUE:T3" ], [ "110", "051-100", "VALUE:T3" ], [ "120", "051-100", "VALUE:T3" ], [ "130", "051-100", "VALUE:T3" ], [ "140", "051-100", "VALUE:T3" ], [ "150", "051-100", "VALUE:T3" ], [ "155", "051-100", "VALUE:T3" ], [ "160", "051-100", "VALUE:T3" ], [ "165", "051-100", "VALUE:T3" ], [ "200", "051-100", "VALUE:T3" ], [ "300", "051-100", "VALUE:T3" ], [ "340", "051-100", "VALUE:T3" ], [ "390", "051-100", "VALUE:T3" ], [ "395", "051-100", "VALUE:T3" ], [ "398", "051-100", "VALUE:T3" ], [ "400", "051-100", "VALUE:T3" ], [ "440", "051-100", "VALUE:T3" ], [ "450", "051-100", "VALUE:T3" ], [ "458", "051-100", "VALUE:T3" ], [ "500", "051-100", "VALUE:T3" ], [ "550", "051-100", "VALUE:T3" ], [ "560", "051-100", "VALUE:T3" ], [ "600", "051-100", "VALUE:T3" ], [ "610", "051-100", "VALUE:T3" ], [ "650", "051-100", "VALUE:T3" ], [ "700", "051-100", "VALUE:T3" ], [ "800", "051-100", "VALUE:T3" ], [ "100", "101-989", "VALUE:T4" ], [ "110", "101-989", "VALUE:T4" ], [ "120", "101-989", "VALUE:T4" ], [ "130", "101-989", "VALUE:T4" ], [ "140", "101-989", "VALUE:T4" ], [ "150", "101-989", "VALUE:T4" ], [ "155", "101-989", "VALUE:T4" ], [ "160", "101-989", "VALUE:T4" ], [ "165", "101-989", "VALUE:T4" ], [ "200", "101-989", "VALUE:T4" ], [ "300", "101-989", "VALUE:T4" ], [ "340", "101-989", "VALUE:T4" ], [ "390", "101-989", "VALUE:T4" ], [ "395", "101-989", "VALUE:T4" ], [ "398", "101-989", "VALUE:T4" ], [ "400", "101-989", "VALUE:T4" ], [ "440", "101-989", "VALUE:T4" ], [ "450", "101-989", "VALUE:T4" ], [ "458", "101-989", "VALUE:T4" ], [ "500", "101-989", "VALUE:T4" ], [ "550", "101-989", "VALUE:T4" ], [ "560", "101-989", "VALUE:T4" ], [ "600", "101-989", "VALUE:T4" ], [ "610", "101-989", "VALUE:T4" ], [ "650", "101-989", "VALUE:T4" ], [ "700", "101-989", "VALUE:T4" ], [ "800", "101-989", "VALUE:T4" ], [ "100", "990-991", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "155", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "165", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "340", "990-991", "VALUE:T1" ], [ "390", "990-991", "VALUE:T1" ], [ "395", "990-991", "VALUE:T1" ], [ "398", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "440", "990-991", "VALUE:T1" ], [ "450", "990-991", "VALUE:T1" ], [ "458", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1" ], [ "650", "990-991", "VALUE:T1" ], [ "700", "990-991", "VALUE:T1" ], [ "800", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "110", "992", "VALUE:T1" ], [ "120", "992", "VALUE:T1" ], [ "130", "992", "VALUE:T1" ], [ "140", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "160", "992", "VALUE:T1" ], [ "165", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "340", "992", "VALUE:T1" ], [ "390", "992", "VALUE:T2" ], [ "395", "992", "VALUE:T3" ], [ "398", "992", "VALUE:T4" ], [ "400", "992", "VALUE:T1" ], [ "440", "992", "VALUE:T1" ], [ "450", "992", "VALUE:T1" ], [ "458", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "550", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "610", "992", "VALUE:T1" ], [ "650", "992", "VALUE:T1" ], [ "700", "992", "VALUE:T1" ], [ "800", "992", "VALUE:T1" ], [ "100", "993", "VALUE:T2" ], [ "110", "993", "VALUE:T2" ], [ "120", "993", "VALUE:T2" ], [ "130", "993", "VALUE:T2" ], [ "140", "993", "VALUE:T2" ], [ "150", "993", "VALUE:T2" ], [ "155", "993", "VALUE:T2" ], [ "160", "993", "VALUE:T2" ], [ "165", "993", "VALUE:T2" ], [ "200", "993", "VALUE:T2" ], [ "300", "993", "VALUE:T2" ], [ "340", "993", "VALUE:T2" ], [ "390", "993", "VALUE:T2" ], [ "395", "993", "VALUE:T2" ], [ "398", "993", "VALUE:T2" ], [ "400", "993", "VALUE:T2" ], [ "440", "993", "VALUE:T2" ], [ "450", "993", "VALUE:T2" ], [ "458", "993", "VALUE:T2" ], [ "500", "993", "VALUE:T2" ], [ "550", "993", "VALUE:T2" ], [ "560", "993", "VALUE:T2" ], [ "600", "993", "VALUE:T2" ], [ "610", "993", "VALUE:T2" ], [ "650", "993", "VALUE:T2" ], [ "700", "993", "VALUE:T2" ], [ "800", "993", "VALUE:T2" ], [ "100", "994-995", "VALUE:T2" ], [ "110", "994-995", "VALUE:T2" ], [ "120", "994-995", "VALUE:T2" ], [ "130", "994-995", "VALUE:T2" ], [ "140", "994-995", "VALUE:T2" ], [ "150", "994-995", "VALUE:T2" ], [ "155", "994-995", "VALUE:T2" ], [ "160", "994-995", "VALUE:T2" ], [ "165", "994-995", "VALUE:T2" ], [ "200", "994-995", "VALUE:T2" ], [ "300", "994-995", "VALUE:T2" ], [ "340", "994-995", "VALUE:T1" ], [ "390", "994-995", "VALUE:T2" ], [ "395", "994-995", "VALUE:T3" ], [ "398", "994-995", "VALUE:T4" ], [ "400", "994-995", "VALUE:T2" ], [ "440", "994-995", "VALUE:T2" ], [ "450", "994-995", "VALUE:T2" ], [ "458", "994-995", "VALUE:T2" ], [ "500", "994-995", "VALUE:T2" ], [ "550", "994-995", "VALUE:T2" ], [ "560", "994-995", "VALUE:T2" ], [ "600", "994-995", "VALUE:T2" ], [ "610", "994-995", "VALUE:T2" ], [ "650", "994-995", "VALUE:T2" ], [ "700", "994-995", "VALUE:T2" ], [ "800", "994-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "110", "996", "VALUE:T3" ], [ "120", "996", "VALUE:T3" ], [ "130", "996", "VALUE:T3" ], [ "140", "996", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "155", "996", "VALUE:T3" ], [ "160", "996", "VALUE:T3" ], [ "165", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "340", "996", "VALUE:T1" ], [ "390", "996", "VALUE:T2" ], [ "395", "996", "VALUE:T3" ], [ "398", "996", "VALUE:T4" ], [ "400", "996", "VALUE:T3" ], [ "440", "996", "VALUE:T3" ], [ "450", "996", "VALUE:T3" ], [ "458", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "550", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "610", "996", "VALUE:T3" ], [ "650", "996", "VALUE:T3" ], [ "700", "996", "VALUE:T3" ], [ "800", "996", "VALUE:T3" ], [ "100", "997", "VALUE:T4" ], [ "110", "997", "VALUE:T4" ], [ "120", "997", "VALUE:T4" ], [ "130", "997", "VALUE:T4" ], [ "140", "997", "VALUE:T4" ], [ "150", "997", "VALUE:T4" ], [ "155", "997", "VALUE:T4" ], [ "160", "997", "VALUE:T4" ], [ "165", "997", "VALUE:T4" ], [ "200", "997", "VALUE:T4" ], [ "300", "997", "VALUE:T4" ], [ "340", "997", "VALUE:T1" ], [ "390", "997", "VALUE:T2" ], [ "395", "997", "VALUE:T3" ], [ "398", "997", "VALUE:T4" ], [ "400", "997", "VALUE:T4" ], [ "440", "997", "VALUE:T4" ], [ "450", "997", "VALUE:T4" ], [ "458", "997", "VALUE:T4" ], [ "500", "997", "VALUE:T4" ], [ "550", "997", "VALUE:T4" ], [ "560", "997", "VALUE:T4" ], [ "600", "997", "VALUE:T4" ], [ "610", "997", "VALUE:T4" ], [ "650", "997", "VALUE:T4" ], [ "700", "997", "VALUE:T4" ], [ "800", "997", "VALUE:T4" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "155", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "165", "998", "ERROR:" ], [ "200", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "340", "998", "ERROR:" ], [ "390", "998", "ERROR:" ], [ "395", "998", "ERROR:" ], [ "398", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "440", "998", "ERROR:" ], [ "450", "998", "ERROR:" ], [ "458", "998", "ERROR:" ], [ "500", "998", "ERROR:" ], [ "550", "998", "ERROR:" ], [ "560", "998", "ERROR:" ], [ "600", "998", "ERROR:" ], [ "610", "998", "ERROR:" ], [ "650", "998", "ERROR:" ], [ "700", "998", "ERROR:" ], [ "800", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "155", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "165", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "340", "999", "VALUE:T1" ], [ "390", "999", "VALUE:T2" ], [ "395", "999", "VALUE:T3" ], [ "398", "999", "VALUE:T4" ], [ "400", "999", "VALUE:TX" ], [ "440", "999", "VALUE:TX" ], [ "450", "999", "VALUE:TX" ], [ "458", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "550", "999", "VALUE:TX" ], [ "560", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "610", "999", "VALUE:TX" ], [ "650", "999", "VALUE:TX" ], [ "700", "999", "VALUE:TX" ], [ "800", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xef.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xef.json
deleted file mode 100644
index cf5c6bf85..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xef.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xef",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-800 only, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.511Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "165", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "458", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "650", "000", "ERROR:" ], [ "660", "000", "ERROR:" ], [ "670", "000", "ERROR:" ], [ "680", "000", "ERROR:" ], [ "700", "000", "ERROR:" ], [ "800", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "110", "001-020", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1" ], [ "130", "001-020", "VALUE:T1" ], [ "140", "001-020", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1" ], [ "155", "001-020", "VALUE:T1" ], [ "160", "001-020", "VALUE:T1" ], [ "165", "001-020", "VALUE:T1" ], [ "170", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "210", "001-020", "VALUE:T1" ], [ "250", "001-020", "VALUE:T1" ], [ "270", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "450", "001-020", "VALUE:T1" ], [ "458", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "650", "001-020", "VALUE:T1" ], [ "660", "001-020", "VALUE:T1" ], [ "670", "001-020", "VALUE:T1" ], [ "680", "001-020", "VALUE:T1" ], [ "700", "001-020", "VALUE:T1" ], [ "800", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "110", "021-050", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2" ], [ "130", "021-050", "VALUE:T2" ], [ "140", "021-050", "VALUE:T2" ], [ "150", "021-050", "VALUE:T2" ], [ "155", "021-050", "VALUE:T2" ], [ "160", "021-050", "VALUE:T2" ], [ "165", "021-050", "VALUE:T2" ], [ "170", "021-050", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2" ], [ "210", "021-050", "VALUE:T2" ], [ "250", "021-050", "VALUE:T2" ], [ "270", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "450", "021-050", "VALUE:T2" ], [ "458", "021-050", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2" ], [ "550", "021-050", "VALUE:T2" ], [ "560", "021-050", "VALUE:T2" ], [ "600", "021-050", "VALUE:T2" ], [ "650", "021-050", "VALUE:T2" ], [ "660", "021-050", "VALUE:T2" ], [ "670", "021-050", "VALUE:T2" ], [ "680", "021-050", "VALUE:T2" ], [ "700", "021-050", "VALUE:T2" ], [ "800", "021-050", "VALUE:T2" ], [ "100", "051-100", "VALUE:T3" ], [ "110", "051-100", "VALUE:T3" ], [ "120", "051-100", "VALUE:T3" ], [ "130", "051-100", "VALUE:T3" ], [ "140", "051-100", "VALUE:T3" ], [ "150", "051-100", "VALUE:T3" ], [ "155", "051-100", "VALUE:T3" ], [ "160", "051-100", "VALUE:T3" ], [ "165", "051-100", "VALUE:T3" ], [ "170", "051-100", "VALUE:T3" ], [ "200", "051-100", "VALUE:T3" ], [ "210", "051-100", "VALUE:T3" ], [ "250", "051-100", "VALUE:T3" ], [ "270", "051-100", "VALUE:T3" ], [ "300", "051-100", "VALUE:T3" ], [ "400", "051-100", "VALUE:T3" ], [ "450", "051-100", "VALUE:T3" ], [ "458", "051-100", "VALUE:T3" ], [ "500", "051-100", "VALUE:T3" ], [ "550", "051-100", "VALUE:T3" ], [ "560", "051-100", "VALUE:T3" ], [ "600", "051-100", "VALUE:T3" ], [ "650", "051-100", "VALUE:T3" ], [ "660", "051-100", "VALUE:T3" ], [ "670", "051-100", "VALUE:T3" ], [ "680", "051-100", "VALUE:T3" ], [ "700", "051-100", "VALUE:T3" ], [ "800", "051-100", "VALUE:T3" ], [ "100", "101-989", "VALUE:T4" ], [ "110", "101-989", "VALUE:T4" ], [ "120", "101-989", "VALUE:T4" ], [ "130", "101-989", "VALUE:T4" ], [ "140", "101-989", "VALUE:T4" ], [ "150", "101-989", "VALUE:T4" ], [ "155", "101-989", "VALUE:T4" ], [ "160", "101-989", "VALUE:T4" ], [ "165", "101-989", "VALUE:T4" ], [ "170", "101-989", "VALUE:T4" ], [ "200", "101-989", "VALUE:T4" ], [ "210", "101-989", "VALUE:T4" ], [ "250", "101-989", "VALUE:T4" ], [ "270", "101-989", "VALUE:T4" ], [ "300", "101-989", "VALUE:T4" ], [ "400", "101-989", "VALUE:T4" ], [ "450", "101-989", "VALUE:T4" ], [ "458", "101-989", "VALUE:T4" ], [ "500", "101-989", "VALUE:T4" ], [ "550", "101-989", "VALUE:T4" ], [ "560", "101-989", "VALUE:T4" ], [ "600", "101-989", "VALUE:T4" ], [ "650", "101-989", "VALUE:T4" ], [ "660", "101-989", "VALUE:T4" ], [ "670", "101-989", "VALUE:T4" ], [ "680", "101-989", "VALUE:T4" ], [ "700", "101-989", "VALUE:T4" ], [ "800", "101-989", "VALUE:T4" ], [ "100", "990-991", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "155", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "165", "990-991", "VALUE:T1" ], [ "170", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "210", "990-991", "VALUE:T1" ], [ "250", "990-991", "VALUE:T1" ], [ "270", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "450", "990-991", "VALUE:T1" ], [ "458", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "650", "990-991", "VALUE:T1" ], [ "660", "990-991", "VALUE:T1" ], [ "670", "990-991", "VALUE:T1" ], [ "680", "990-991", "VALUE:T1" ], [ "700", "990-991", "VALUE:T1" ], [ "800", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "110", "992", "VALUE:T1" ], [ "120", "992", "VALUE:T1" ], [ "130", "992", "VALUE:T1" ], [ "140", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "160", "992", "VALUE:T1" ], [ "165", "992", "VALUE:T1" ], [ "170", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "210", "992", "VALUE:T2" ], [ "250", "992", "VALUE:T3" ], [ "270", "992", "VALUE:T4" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "450", "992", "VALUE:T1" ], [ "458", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "550", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "650", "992", "VALUE:T1" ], [ "660", "992", "VALUE:T1" ], [ "670", "992", "VALUE:T1" ], [ "680", "992", "VALUE:T1" ], [ "700", "992", "VALUE:T1" ], [ "800", "992", "VALUE:T1" ], [ "100", "993", "VALUE:T2" ], [ "110", "993", "VALUE:T2" ], [ "120", "993", "VALUE:T2" ], [ "130", "993", "VALUE:T2" ], [ "140", "993", "VALUE:T2" ], [ "150", "993", "VALUE:T2" ], [ "155", "993", "VALUE:T2" ], [ "160", "993", "VALUE:T2" ], [ "165", "993", "VALUE:T2" ], [ "170", "993", "VALUE:T2" ], [ "200", "993", "VALUE:T2" ], [ "210", "993", "VALUE:T2" ], [ "250", "993", "VALUE:T2" ], [ "270", "993", "VALUE:T2" ], [ "300", "993", "VALUE:T2" ], [ "400", "993", "VALUE:T2" ], [ "450", "993", "VALUE:T2" ], [ "458", "993", "VALUE:T2" ], [ "500", "993", "VALUE:T2" ], [ "550", "993", "VALUE:T2" ], [ "560", "993", "VALUE:T2" ], [ "600", "993", "VALUE:T2" ], [ "650", "993", "VALUE:T2" ], [ "660", "993", "VALUE:T2" ], [ "670", "993", "VALUE:T2" ], [ "680", "993", "VALUE:T2" ], [ "700", "993", "VALUE:T2" ], [ "800", "993", "VALUE:T2" ], [ "100", "994-995", "VALUE:T2" ], [ "110", "994-995", "VALUE:T2" ], [ "120", "994-995", "VALUE:T2" ], [ "130", "994-995", "VALUE:T2" ], [ "140", "994-995", "VALUE:T2" ], [ "150", "994-995", "VALUE:T2" ], [ "155", "994-995", "VALUE:T2" ], [ "160", "994-995", "VALUE:T2" ], [ "165", "994-995", "VALUE:T2" ], [ "170", "994-995", "VALUE:T1" ], [ "200", "994-995", "VALUE:T2" ], [ "210", "994-995", "VALUE:T2" ], [ "250", "994-995", "VALUE:T3" ], [ "270", "994-995", "VALUE:T4" ], [ "300", "994-995", "VALUE:T2" ], [ "400", "994-995", "VALUE:T2" ], [ "450", "994-995", "VALUE:T2" ], [ "458", "994-995", "VALUE:T2" ], [ "500", "994-995", "VALUE:T2" ], [ "550", "994-995", "VALUE:T2" ], [ "560", "994-995", "VALUE:T2" ], [ "600", "994-995", "VALUE:T2" ], [ "650", "994-995", "VALUE:T2" ], [ "660", "994-995", "VALUE:T2" ], [ "670", "994-995", "VALUE:T2" ], [ "680", "994-995", "VALUE:T2" ], [ "700", "994-995", "VALUE:T2" ], [ "800", "994-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "110", "996", "VALUE:T3" ], [ "120", "996", "VALUE:T3" ], [ "130", "996", "VALUE:T3" ], [ "140", "996", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "155", "996", "VALUE:T3" ], [ "160", "996", "VALUE:T3" ], [ "165", "996", "VALUE:T3" ], [ "170", "996", "VALUE:T1" ], [ "200", "996", "VALUE:T3" ], [ "210", "996", "VALUE:T2" ], [ "250", "996", "VALUE:T3" ], [ "270", "996", "VALUE:T4" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "450", "996", "VALUE:T3" ], [ "458", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "550", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "650", "996", "VALUE:T3" ], [ "660", "996", "VALUE:T3" ], [ "670", "996", "VALUE:T3" ], [ "680", "996", "VALUE:T3" ], [ "700", "996", "VALUE:T3" ], [ "800", "996", "VALUE:T3" ], [ "100", "997", "VALUE:T4" ], [ "110", "997", "VALUE:T4" ], [ "120", "997", "VALUE:T4" ], [ "130", "997", "VALUE:T4" ], [ "140", "997", "VALUE:T4" ], [ "150", "997", "VALUE:T4" ], [ "155", "997", "VALUE:T4" ], [ "160", "997", "VALUE:T4" ], [ "165", "997", "VALUE:T4" ], [ "170", "997", "VALUE:T1" ], [ "200", "997", "VALUE:T4" ], [ "210", "997", "VALUE:T2" ], [ "250", "997", "VALUE:T3" ], [ "270", "997", "VALUE:T4" ], [ "300", "997", "VALUE:T4" ], [ "400", "997", "VALUE:T4" ], [ "450", "997", "VALUE:T4" ], [ "458", "997", "VALUE:T4" ], [ "500", "997", "VALUE:T4" ], [ "550", "997", "VALUE:T4" ], [ "560", "997", "VALUE:T4" ], [ "600", "997", "VALUE:T4" ], [ "650", "997", "VALUE:T4" ], [ "660", "997", "VALUE:T4" ], [ "670", "997", "VALUE:T4" ], [ "680", "997", "VALUE:T4" ], [ "700", "997", "VALUE:T4" ], [ "800", "997", "VALUE:T4" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "155", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "165", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "200", "998", "ERROR:" ], [ "210", "998", "ERROR:" ], [ "250", "998", "ERROR:" ], [ "270", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "450", "998", "ERROR:" ], [ "458", "998", "ERROR:" ], [ "500", "998", "ERROR:" ], [ "550", "998", "ERROR:" ], [ "560", "998", "ERROR:" ], [ "600", "998", "ERROR:" ], [ "650", "998", "ERROR:" ], [ "660", "998", "ERROR:" ], [ "670", "998", "ERROR:" ], [ "680", "998", "ERROR:" ], [ "700", "998", "ERROR:" ], [ "800", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "155", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "165", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1" ], [ "200", "999", "VALUE:TX" ], [ "210", "999", "VALUE:T2" ], [ "250", "999", "VALUE:T3" ], [ "270", "999", "VALUE:T4" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "450", "999", "VALUE:TX" ], [ "458", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "550", "999", "VALUE:TX" ], [ "560", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "650", "999", "VALUE:TX" ], [ "660", "999", "VALUE:TX" ], [ "670", "999", "VALUE:TX" ], [ "680", "999", "VALUE:TX" ], [ "700", "999", "VALUE:TX" ], [ "800", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xej.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xej.json
deleted file mode 100644
index 6fb4a1158..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xej.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xej",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100, 300, and 600-630 ONLY, the T category is assigned based on the value of CS Tumor Size and CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.594Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "610", "000", "ERROR:" ], [ "620", "000", "ERROR:" ], [ "630", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "610", "001-020", "VALUE:T1" ], [ "620", "001-020", "VALUE:T1" ], [ "630", "001-020", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2" ], [ "610", "021-040", "VALUE:T2" ], [ "620", "021-040", "VALUE:T2" ], [ "630", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3" ], [ "610", "041-989", "VALUE:T3" ], [ "620", "041-989", "VALUE:T3" ], [ "630", "041-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1" ], [ "620", "990-991", "VALUE:T1" ], [ "630", "990-991", "VALUE:T1" ], [ "100", "992-993", "VALUE:T1" ], [ "300", "992-993", "VALUE:T1" ], [ "600", "992-993", "VALUE:T1" ], [ "610", "992-993", "VALUE:T1" ], [ "620", "992-993", "VALUE:T2" ], [ "630", "992-993", "VALUE:T3" ], [ "100", "994", "VALUE:T2" ], [ "300", "994", "VALUE:T2" ], [ "600", "994", "VALUE:T2" ], [ "610", "994", "VALUE:T1" ], [ "620", "994", "VALUE:T2" ], [ "630", "994", "VALUE:T3" ], [ "100", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "600", "995", "VALUE:T3" ], [ "610", "995", "VALUE:T1" ], [ "620", "995", "VALUE:T2" ], [ "630", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "610", "996", "VALUE:T3" ], [ "620", "996", "VALUE:T3" ], [ "630", "996", "VALUE:T3" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "610", "999", "VALUE:T1" ], [ "620", "999", "VALUE:T2" ], [ "630", "999", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xet.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xet.json
deleted file mode 100644
index 7569bc929..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xet.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xet",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-800 only, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size from this table.",
- "last_modified" : "2015-05-27T16:19:17.642Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "165", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "458", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "570", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "650", "000", "ERROR:" ], [ "700", "000", "ERROR:" ], [ "750", "000", "ERROR:" ], [ "800", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "110", "001-020", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1" ], [ "130", "001-020", "VALUE:T1" ], [ "140", "001-020", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1" ], [ "155", "001-020", "VALUE:T1" ], [ "160", "001-020", "VALUE:T1" ], [ "165", "001-020", "VALUE:T1" ], [ "170", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "210", "001-020", "VALUE:T1" ], [ "250", "001-020", "VALUE:T1" ], [ "270", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "450", "001-020", "VALUE:T1" ], [ "458", "001-020", "VALUE:T1" ], [ "460", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "570", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "650", "001-020", "VALUE:T1" ], [ "700", "001-020", "VALUE:T1" ], [ "750", "001-020", "VALUE:T1" ], [ "800", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "110", "021-050", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2" ], [ "130", "021-050", "VALUE:T2" ], [ "140", "021-050", "VALUE:T2" ], [ "150", "021-050", "VALUE:T2" ], [ "155", "021-050", "VALUE:T2" ], [ "160", "021-050", "VALUE:T2" ], [ "165", "021-050", "VALUE:T2" ], [ "170", "021-050", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2" ], [ "210", "021-050", "VALUE:T2" ], [ "250", "021-050", "VALUE:T2" ], [ "270", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "450", "021-050", "VALUE:T2" ], [ "458", "021-050", "VALUE:T2" ], [ "460", "021-050", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2" ], [ "550", "021-050", "VALUE:T2" ], [ "560", "021-050", "VALUE:T2" ], [ "570", "021-050", "VALUE:T2" ], [ "600", "021-050", "VALUE:T2" ], [ "650", "021-050", "VALUE:T2" ], [ "700", "021-050", "VALUE:T2" ], [ "750", "021-050", "VALUE:T2" ], [ "800", "021-050", "VALUE:T2" ], [ "100", "051-100", "VALUE:T3" ], [ "110", "051-100", "VALUE:T3" ], [ "120", "051-100", "VALUE:T3" ], [ "130", "051-100", "VALUE:T3" ], [ "140", "051-100", "VALUE:T3" ], [ "150", "051-100", "VALUE:T3" ], [ "155", "051-100", "VALUE:T3" ], [ "160", "051-100", "VALUE:T3" ], [ "165", "051-100", "VALUE:T3" ], [ "170", "051-100", "VALUE:T3" ], [ "200", "051-100", "VALUE:T3" ], [ "210", "051-100", "VALUE:T3" ], [ "250", "051-100", "VALUE:T3" ], [ "270", "051-100", "VALUE:T3" ], [ "300", "051-100", "VALUE:T3" ], [ "400", "051-100", "VALUE:T3" ], [ "450", "051-100", "VALUE:T3" ], [ "458", "051-100", "VALUE:T3" ], [ "460", "051-100", "VALUE:T3" ], [ "500", "051-100", "VALUE:T3" ], [ "550", "051-100", "VALUE:T3" ], [ "560", "051-100", "VALUE:T3" ], [ "570", "051-100", "VALUE:T3" ], [ "600", "051-100", "VALUE:T3" ], [ "650", "051-100", "VALUE:T3" ], [ "700", "051-100", "VALUE:T3" ], [ "750", "051-100", "VALUE:T3" ], [ "800", "051-100", "VALUE:T3" ], [ "100", "101-989", "VALUE:T4" ], [ "110", "101-989", "VALUE:T4" ], [ "120", "101-989", "VALUE:T4" ], [ "130", "101-989", "VALUE:T4" ], [ "140", "101-989", "VALUE:T4" ], [ "150", "101-989", "VALUE:T4" ], [ "155", "101-989", "VALUE:T4" ], [ "160", "101-989", "VALUE:T4" ], [ "165", "101-989", "VALUE:T4" ], [ "170", "101-989", "VALUE:T4" ], [ "200", "101-989", "VALUE:T4" ], [ "210", "101-989", "VALUE:T4" ], [ "250", "101-989", "VALUE:T4" ], [ "270", "101-989", "VALUE:T4" ], [ "300", "101-989", "VALUE:T4" ], [ "400", "101-989", "VALUE:T4" ], [ "450", "101-989", "VALUE:T4" ], [ "458", "101-989", "VALUE:T4" ], [ "460", "101-989", "VALUE:T4" ], [ "500", "101-989", "VALUE:T4" ], [ "550", "101-989", "VALUE:T4" ], [ "560", "101-989", "VALUE:T4" ], [ "570", "101-989", "VALUE:T4" ], [ "600", "101-989", "VALUE:T4" ], [ "650", "101-989", "VALUE:T4" ], [ "700", "101-989", "VALUE:T4" ], [ "750", "101-989", "VALUE:T4" ], [ "800", "101-989", "VALUE:T4" ], [ "100", "990-991", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "155", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "165", "990-991", "VALUE:T1" ], [ "170", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "210", "990-991", "VALUE:T1" ], [ "250", "990-991", "VALUE:T1" ], [ "270", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "450", "990-991", "VALUE:T1" ], [ "458", "990-991", "VALUE:T1" ], [ "460", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "570", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "650", "990-991", "VALUE:T1" ], [ "700", "990-991", "VALUE:T1" ], [ "750", "990-991", "VALUE:T1" ], [ "800", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "110", "992", "VALUE:T1" ], [ "120", "992", "VALUE:T1" ], [ "130", "992", "VALUE:T1" ], [ "140", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "160", "992", "VALUE:T1" ], [ "165", "992", "VALUE:T1" ], [ "170", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "210", "992", "VALUE:T2" ], [ "250", "992", "VALUE:T3" ], [ "270", "992", "VALUE:T4" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "450", "992", "VALUE:T1" ], [ "458", "992", "VALUE:T1" ], [ "460", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "550", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T1" ], [ "570", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "650", "992", "VALUE:T1" ], [ "700", "992", "VALUE:T1" ], [ "750", "992", "VALUE:T1" ], [ "800", "992", "VALUE:T1" ], [ "100", "993", "VALUE:T2" ], [ "110", "993", "VALUE:T2" ], [ "120", "993", "VALUE:T2" ], [ "130", "993", "VALUE:T2" ], [ "140", "993", "VALUE:T2" ], [ "150", "993", "VALUE:T2" ], [ "155", "993", "VALUE:T2" ], [ "160", "993", "VALUE:T2" ], [ "165", "993", "VALUE:T2" ], [ "170", "993", "VALUE:T2" ], [ "200", "993", "VALUE:T2" ], [ "210", "993", "VALUE:T2" ], [ "250", "993", "VALUE:T2" ], [ "270", "993", "VALUE:T2" ], [ "300", "993", "VALUE:T2" ], [ "400", "993", "VALUE:T2" ], [ "450", "993", "VALUE:T2" ], [ "458", "993", "VALUE:T2" ], [ "460", "993", "VALUE:T2" ], [ "500", "993", "VALUE:T2" ], [ "550", "993", "VALUE:T2" ], [ "560", "993", "VALUE:T2" ], [ "570", "993", "VALUE:T2" ], [ "600", "993", "VALUE:T2" ], [ "650", "993", "VALUE:T2" ], [ "700", "993", "VALUE:T2" ], [ "750", "993", "VALUE:T2" ], [ "800", "993", "VALUE:T2" ], [ "100", "994-995", "VALUE:T2" ], [ "110", "994-995", "VALUE:T2" ], [ "120", "994-995", "VALUE:T2" ], [ "130", "994-995", "VALUE:T2" ], [ "140", "994-995", "VALUE:T2" ], [ "150", "994-995", "VALUE:T2" ], [ "155", "994-995", "VALUE:T2" ], [ "160", "994-995", "VALUE:T2" ], [ "165", "994-995", "VALUE:T2" ], [ "170", "994-995", "VALUE:T1" ], [ "200", "994-995", "VALUE:T2" ], [ "210", "994-995", "VALUE:T2" ], [ "250", "994-995", "VALUE:T3" ], [ "270", "994-995", "VALUE:T4" ], [ "300", "994-995", "VALUE:T2" ], [ "400", "994-995", "VALUE:T2" ], [ "450", "994-995", "VALUE:T2" ], [ "458", "994-995", "VALUE:T2" ], [ "460", "994-995", "VALUE:T2" ], [ "500", "994-995", "VALUE:T2" ], [ "550", "994-995", "VALUE:T2" ], [ "560", "994-995", "VALUE:T2" ], [ "570", "994-995", "VALUE:T2" ], [ "600", "994-995", "VALUE:T2" ], [ "650", "994-995", "VALUE:T2" ], [ "700", "994-995", "VALUE:T2" ], [ "750", "994-995", "VALUE:T2" ], [ "800", "994-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "110", "996", "VALUE:T3" ], [ "120", "996", "VALUE:T3" ], [ "130", "996", "VALUE:T3" ], [ "140", "996", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "155", "996", "VALUE:T3" ], [ "160", "996", "VALUE:T3" ], [ "165", "996", "VALUE:T3" ], [ "170", "996", "VALUE:T1" ], [ "200", "996", "VALUE:T3" ], [ "210", "996", "VALUE:T2" ], [ "250", "996", "VALUE:T3" ], [ "270", "996", "VALUE:T4" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "450", "996", "VALUE:T3" ], [ "458", "996", "VALUE:T3" ], [ "460", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "550", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "570", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "650", "996", "VALUE:T3" ], [ "700", "996", "VALUE:T3" ], [ "750", "996", "VALUE:T3" ], [ "800", "996", "VALUE:T3" ], [ "100", "997", "VALUE:T4" ], [ "110", "997", "VALUE:T4" ], [ "120", "997", "VALUE:T4" ], [ "130", "997", "VALUE:T4" ], [ "140", "997", "VALUE:T4" ], [ "150", "997", "VALUE:T4" ], [ "155", "997", "VALUE:T4" ], [ "160", "997", "VALUE:T4" ], [ "165", "997", "VALUE:T4" ], [ "170", "997", "VALUE:T1" ], [ "200", "997", "VALUE:T4" ], [ "210", "997", "VALUE:T2" ], [ "250", "997", "VALUE:T3" ], [ "270", "997", "VALUE:T4" ], [ "300", "997", "VALUE:T4" ], [ "400", "997", "VALUE:T4" ], [ "450", "997", "VALUE:T4" ], [ "458", "997", "VALUE:T4" ], [ "460", "997", "VALUE:T4" ], [ "500", "997", "VALUE:T4" ], [ "550", "997", "VALUE:T4" ], [ "560", "997", "VALUE:T4" ], [ "570", "997", "VALUE:T4" ], [ "600", "997", "VALUE:T4" ], [ "650", "997", "VALUE:T4" ], [ "700", "997", "VALUE:T4" ], [ "750", "997", "VALUE:T4" ], [ "800", "997", "VALUE:T4" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "155", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "165", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "200", "998", "ERROR:" ], [ "210", "998", "ERROR:" ], [ "250", "998", "ERROR:" ], [ "270", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "450", "998", "ERROR:" ], [ "458", "998", "ERROR:" ], [ "460", "998", "ERROR:" ], [ "500", "998", "ERROR:" ], [ "550", "998", "ERROR:" ], [ "560", "998", "ERROR:" ], [ "570", "998", "ERROR:" ], [ "600", "998", "ERROR:" ], [ "650", "998", "ERROR:" ], [ "700", "998", "ERROR:" ], [ "750", "998", "ERROR:" ], [ "800", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "155", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "165", "999", "VALUE:T1" ], [ "170", "999", "VALUE:T1" ], [ "200", "999", "VALUE:TX" ], [ "210", "999", "VALUE:T2" ], [ "250", "999", "VALUE:T3" ], [ "270", "999", "VALUE:T4" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "450", "999", "VALUE:TX" ], [ "458", "999", "VALUE:TX" ], [ "460", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "550", "999", "VALUE:TX" ], [ "560", "999", "VALUE:TX" ], [ "570", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "650", "999", "VALUE:TX" ], [ "700", "999", "VALUE:TX" ], [ "750", "999", "VALUE:TX" ], [ "800", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xeu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xeu.json
deleted file mode 100644
index dbb646ec0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xeu.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xeu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-620 ONLY, the T category is assigned based on value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.720Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "405", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "530", "000", "ERROR:" ], [ "610", "000", "ERROR:" ], [ "620", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "530", "001-020", "VALUE:T1" ], [ "610", "001-020", "VALUE:T1" ], [ "620", "001-020", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "530", "021-040", "VALUE:T2" ], [ "610", "021-040", "VALUE:T2" ], [ "620", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "530", "041-989", "VALUE:T3" ], [ "610", "041-989", "VALUE:T3" ], [ "620", "041-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "530", "990-991", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1" ], [ "620", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "405", "992", "VALUE:T1" ], [ "410", "992", "VALUE:T2" ], [ "500", "992", "VALUE:T1" ], [ "530", "992", "VALUE:T1" ], [ "610", "992", "VALUE:T1" ], [ "620", "992", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "530", "993-994", "VALUE:T2" ], [ "610", "993-994", "VALUE:T2" ], [ "620", "993-994", "VALUE:T2" ], [ "100", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "400", "995", "VALUE:T3" ], [ "405", "995", "VALUE:T1" ], [ "410", "995", "VALUE:T2" ], [ "500", "995", "VALUE:T3" ], [ "530", "995", "VALUE:T3" ], [ "610", "995", "VALUE:T3" ], [ "620", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "405", "996", "VALUE:T3" ], [ "410", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "530", "996", "VALUE:T3" ], [ "610", "996", "VALUE:T3" ], [ "620", "996", "VALUE:T3" ], [ "100", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "405", "997-998", "ERROR:" ], [ "410", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "530", "997-998", "ERROR:" ], [ "610", "997-998", "ERROR:" ], [ "620", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "405", "999", "VALUE:T1" ], [ "410", "999", "VALUE:T2" ], [ "500", "999", "VALUE:TX" ], [ "530", "999", "VALUE:TX" ], [ "610", "999", "VALUE:TX" ], [ "620", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xev.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xev.json
deleted file mode 100644
index 7dfb104d4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xev.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xev",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 390, 400, 420, and 440 ONLY, the T category is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.783Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "390", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "440", "000", "ERROR:" ], [ "390", "001-050", "VALUE:T2" ], [ "400", "001-050", "VALUE:T2" ], [ "420", "001-050", "VALUE:T2" ], [ "440", "001-050", "VALUE:T2" ], [ "390", "051-989", "VALUE:T3a" ], [ "400", "051-989", "VALUE:T3a" ], [ "420", "051-989", "VALUE:T3a" ], [ "440", "051-989", "VALUE:T3a" ], [ "390", "990-995", "VALUE:T2" ], [ "400", "990-995", "VALUE:T2" ], [ "420", "990-995", "VALUE:T2" ], [ "440", "990-995", "VALUE:T2" ], [ "390", "996", "VALUE:T3a" ], [ "400", "996", "VALUE:T3a" ], [ "420", "996", "VALUE:T3a" ], [ "440", "996", "VALUE:T3a" ], [ "390", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "420", "997-998", "ERROR:" ], [ "440", "997-998", "ERROR:" ], [ "390", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "440", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xey.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xey.json
deleted file mode 100644
index 899e7f20d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xey.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xey",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 110-170 and 300 ONLY, the T category is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.835Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "110", "001-010", "VALUE:T1" ], [ "120", "001-010", "VALUE:T1" ], [ "130", "001-010", "VALUE:T1" ], [ "140", "001-010", "VALUE:T1" ], [ "150", "001-010", "VALUE:T1" ], [ "160", "001-010", "VALUE:T1" ], [ "170", "001-010", "VALUE:T1" ], [ "300", "001-010", "VALUE:T1" ], [ "110", "011-989", "VALUE:T2" ], [ "120", "011-989", "VALUE:T2" ], [ "130", "011-989", "VALUE:T2" ], [ "140", "011-989", "VALUE:T2" ], [ "150", "011-989", "VALUE:T2" ], [ "160", "011-989", "VALUE:T2" ], [ "170", "011-989", "VALUE:T2" ], [ "300", "011-989", "VALUE:T2" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "170", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "110", "992-995", "VALUE:T2" ], [ "120", "992-995", "VALUE:T2" ], [ "130", "992-995", "VALUE:T2" ], [ "140", "992-995", "VALUE:T2" ], [ "150", "992-995", "VALUE:T2" ], [ "160", "992-995", "VALUE:T2" ], [ "170", "992-995", "VALUE:T2" ], [ "300", "992-995", "VALUE:T2" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1" ], [ "300", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfc.json
deleted file mode 100644
index eda448250..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfc.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xfc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100 through 600 ONLY, the T category is assigned based on value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:17.884Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "405", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "405", "992", "VALUE:T1" ], [ "410", "992", "VALUE:T2" ], [ "500", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2" ], [ "100", "995", "VALUE:T3" ], [ "200", "995", "VALUE:T3" ], [ "300", "995", "VALUE:T3" ], [ "400", "995", "VALUE:T3" ], [ "405", "995", "VALUE:T1" ], [ "410", "995", "VALUE:T2" ], [ "500", "995", "VALUE:T3" ], [ "600", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "405", "996", "VALUE:T3" ], [ "410", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "100", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "400", "997-998", "ERROR:" ], [ "405", "997-998", "ERROR:" ], [ "410", "997-998", "ERROR:" ], [ "500", "997-998", "ERROR:" ], [ "600", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "405", "999", "VALUE:T1" ], [ "410", "999", "VALUE:T2" ], [ "500", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfd.json
deleted file mode 100644
index 9ad7b8759..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfd.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xfd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100- 810 only, the T category is assigned based on the value of CS Tumor Size from this table.",
- "last_modified" : "2015-05-27T16:19:17.935Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "165", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "610", "000", "ERROR:" ], [ "660", "000", "ERROR:" ], [ "680", "000", "ERROR:" ], [ "730", "000", "ERROR:" ], [ "740", "000", "ERROR:" ], [ "745", "000", "ERROR:" ], [ "750", "000", "ERROR:" ], [ "810", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "110", "001-020", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1" ], [ "155", "001-020", "VALUE:T1" ], [ "160", "001-020", "VALUE:T1" ], [ "165", "001-020", "VALUE:T1" ], [ "170", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "210", "001-020", "VALUE:T1" ], [ "250", "001-020", "VALUE:T1" ], [ "270", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "610", "001-020", "VALUE:T1" ], [ "660", "001-020", "VALUE:T1" ], [ "680", "001-020", "VALUE:T1" ], [ "730", "001-020", "VALUE:T1" ], [ "740", "001-020", "VALUE:T1" ], [ "745", "001-020", "VALUE:T1" ], [ "750", "001-020", "VALUE:T1" ], [ "810", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "110", "021-050", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2" ], [ "155", "021-050", "VALUE:T2" ], [ "160", "021-050", "VALUE:T2" ], [ "165", "021-050", "VALUE:T2" ], [ "170", "021-050", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2" ], [ "210", "021-050", "VALUE:T2" ], [ "250", "021-050", "VALUE:T2" ], [ "270", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "560", "021-050", "VALUE:T2" ], [ "610", "021-050", "VALUE:T2" ], [ "660", "021-050", "VALUE:T2" ], [ "680", "021-050", "VALUE:T2" ], [ "730", "021-050", "VALUE:T2" ], [ "740", "021-050", "VALUE:T2" ], [ "745", "021-050", "VALUE:T2" ], [ "750", "021-050", "VALUE:T2" ], [ "810", "021-050", "VALUE:T2" ], [ "100", "051-100", "VALUE:T3" ], [ "110", "051-100", "VALUE:T3" ], [ "120", "051-100", "VALUE:T3" ], [ "155", "051-100", "VALUE:T3" ], [ "160", "051-100", "VALUE:T3" ], [ "165", "051-100", "VALUE:T3" ], [ "170", "051-100", "VALUE:T3" ], [ "200", "051-100", "VALUE:T3" ], [ "210", "051-100", "VALUE:T3" ], [ "250", "051-100", "VALUE:T3" ], [ "270", "051-100", "VALUE:T3" ], [ "300", "051-100", "VALUE:T3" ], [ "400", "051-100", "VALUE:T3" ], [ "560", "051-100", "VALUE:T3" ], [ "610", "051-100", "VALUE:T3" ], [ "660", "051-100", "VALUE:T3" ], [ "680", "051-100", "VALUE:T3" ], [ "730", "051-100", "VALUE:T3" ], [ "740", "051-100", "VALUE:T3" ], [ "745", "051-100", "VALUE:T3" ], [ "750", "051-100", "VALUE:T3" ], [ "810", "051-100", "VALUE:T3" ], [ "100", "101-989", "VALUE:T4" ], [ "110", "101-989", "VALUE:T4" ], [ "120", "101-989", "VALUE:T4" ], [ "155", "101-989", "VALUE:T4" ], [ "160", "101-989", "VALUE:T4" ], [ "165", "101-989", "VALUE:T4" ], [ "170", "101-989", "VALUE:T4" ], [ "200", "101-989", "VALUE:T4" ], [ "210", "101-989", "VALUE:T4" ], [ "250", "101-989", "VALUE:T4" ], [ "270", "101-989", "VALUE:T4" ], [ "300", "101-989", "VALUE:T4" ], [ "400", "101-989", "VALUE:T4" ], [ "560", "101-989", "VALUE:T4" ], [ "610", "101-989", "VALUE:T4" ], [ "660", "101-989", "VALUE:T4" ], [ "680", "101-989", "VALUE:T4" ], [ "730", "101-989", "VALUE:T4" ], [ "740", "101-989", "VALUE:T4" ], [ "745", "101-989", "VALUE:T4" ], [ "750", "101-989", "VALUE:T4" ], [ "810", "101-989", "VALUE:T4" ], [ "100", "990-991", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "155", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "165", "990-991", "VALUE:T1" ], [ "170", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "210", "990-991", "VALUE:T1" ], [ "250", "990-991", "VALUE:T1" ], [ "270", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1" ], [ "660", "990-991", "VALUE:T1" ], [ "680", "990-991", "VALUE:T1" ], [ "730", "990-991", "VALUE:T1" ], [ "740", "990-991", "VALUE:T1" ], [ "745", "990-991", "VALUE:T1" ], [ "750", "990-991", "VALUE:T1" ], [ "810", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "110", "992", "VALUE:T1" ], [ "120", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "160", "992", "VALUE:T1" ], [ "165", "992", "VALUE:T1" ], [ "170", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "210", "992", "VALUE:T2" ], [ "250", "992", "VALUE:T3" ], [ "270", "992", "VALUE:T4" ], [ "300", "992", "VALUE:T1" ], [ "400", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T1" ], [ "610", "992", "VALUE:T1" ], [ "660", "992", "VALUE:T1" ], [ "680", "992", "VALUE:T1" ], [ "730", "992", "VALUE:T1" ], [ "740", "992", "VALUE:T1" ], [ "745", "992", "VALUE:T1" ], [ "750", "992", "VALUE:T1" ], [ "810", "992", "VALUE:T1" ], [ "100", "993", "VALUE:T2" ], [ "110", "993", "VALUE:T2" ], [ "120", "993", "VALUE:T2" ], [ "155", "993", "VALUE:T2" ], [ "160", "993", "VALUE:T2" ], [ "165", "993", "VALUE:T2" ], [ "170", "993", "VALUE:T2" ], [ "200", "993", "VALUE:T2" ], [ "210", "993", "VALUE:T2" ], [ "250", "993", "VALUE:T2" ], [ "270", "993", "VALUE:T2" ], [ "300", "993", "VALUE:T2" ], [ "400", "993", "VALUE:T2" ], [ "560", "993", "VALUE:T2" ], [ "610", "993", "VALUE:T2" ], [ "660", "993", "VALUE:T2" ], [ "680", "993", "VALUE:T2" ], [ "730", "993", "VALUE:T2" ], [ "740", "993", "VALUE:T2" ], [ "745", "993", "VALUE:T2" ], [ "750", "993", "VALUE:T2" ], [ "810", "993", "VALUE:T2" ], [ "100", "994-995", "VALUE:T2" ], [ "110", "994-995", "VALUE:T2" ], [ "120", "994-995", "VALUE:T2" ], [ "155", "994-995", "VALUE:T2" ], [ "160", "994-995", "VALUE:T2" ], [ "165", "994-995", "VALUE:T2" ], [ "170", "994-995", "VALUE:T1" ], [ "200", "994-995", "VALUE:T2" ], [ "210", "994-995", "VALUE:T2" ], [ "250", "994-995", "VALUE:T3" ], [ "270", "994-995", "VALUE:T4" ], [ "300", "994-995", "VALUE:T2" ], [ "400", "994-995", "VALUE:T2" ], [ "560", "994-995", "VALUE:T2" ], [ "610", "994-995", "VALUE:T2" ], [ "660", "994-995", "VALUE:T2" ], [ "680", "994-995", "VALUE:T2" ], [ "730", "994-995", "VALUE:T2" ], [ "740", "994-995", "VALUE:T2" ], [ "745", "994-995", "VALUE:T2" ], [ "750", "994-995", "VALUE:T2" ], [ "810", "994-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "110", "996", "VALUE:T3" ], [ "120", "996", "VALUE:T3" ], [ "155", "996", "VALUE:T3" ], [ "160", "996", "VALUE:T3" ], [ "165", "996", "VALUE:T3" ], [ "170", "996", "VALUE:T1" ], [ "200", "996", "VALUE:T3" ], [ "210", "996", "VALUE:T2" ], [ "250", "996", "VALUE:T3" ], [ "270", "996", "VALUE:T4" ], [ "300", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "610", "996", "VALUE:T3" ], [ "660", "996", "VALUE:T3" ], [ "680", "996", "VALUE:T3" ], [ "730", "996", "VALUE:T3" ], [ "740", "996", "VALUE:T3" ], [ "745", "996", "VALUE:T3" ], [ "750", "996", "VALUE:T3" ], [ "810", "996", "VALUE:T3" ], [ "100", "997", "VALUE:T4" ], [ "110", "997", "VALUE:T4" ], [ "120", "997", "VALUE:T4" ], [ "155", "997", "VALUE:T4" ], [ "160", "997", "VALUE:T4" ], [ "165", "997", "VALUE:T4" ], [ "170", "997", "VALUE:T1" ], [ "200", "997", "VALUE:T4" ], [ "210", "997", "VALUE:T2" ], [ "250", "997", "VALUE:T3" ], [ "270", "997", "VALUE:T4" ], [ "300", "997", "VALUE:T4" ], [ "400", "997", "VALUE:T4" ], [ "560", "997", "VALUE:T4" ], [ "610", "997", "VALUE:T4" ], [ "660", "997", "VALUE:T4" ], [ "680", "997", "VALUE:T4" ], [ "730", "997", "VALUE:T4" ], [ "740", "997", "VALUE:T4" ], [ "745", "997", "VALUE:T4" ], [ "750", "997", "VALUE:T4" ], [ "810", "997", "VALUE:T4" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "155", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "165", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "200", "998", "ERROR:" ], [ "210", "998", "ERROR:" ], [ "250", "998", "ERROR:" ], [ "270", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "560", "998", "ERROR:" ], [ "610", "998", "ERROR:" ], [ "660", "998", "ERROR:" ], [ "680", "998", "ERROR:" ], [ "730", "998", "ERROR:" ], [ "740", "998", "ERROR:" ], [ "745", "998", "ERROR:" ], [ "750", "998", "ERROR:" ], [ "810", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "155", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "165", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1" ], [ "200", "999", "VALUE:TX" ], [ "210", "999", "VALUE:T2" ], [ "250", "999", "VALUE:T3" ], [ "270", "999", "VALUE:T4" ], [ "300", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ], [ "560", "999", "VALUE:TX" ], [ "610", "999", "VALUE:TX" ], [ "660", "999", "VALUE:TX" ], [ "680", "999", "VALUE:TX" ], [ "730", "999", "VALUE:TX" ], [ "740", "999", "VALUE:TX" ], [ "745", "999", "VALUE:TX" ], [ "750", "999", "VALUE:TX" ], [ "810", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfe.json
deleted file mode 100644
index 743b3ab96..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfe.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xfe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: CS Extension codes 100-300 only; the T category for AJCC 7 staging is assigned based on the value of Tumor Size from this table.",
- "last_modified" : "2015-05-27T16:19:18.007Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "430", "000", "ERROR:" ], [ "100", "001-010", "VALUE:T1" ], [ "300", "001-010", "VALUE:T1" ], [ "310", "001-010", "VALUE:T1" ], [ "420", "001-010", "VALUE:T1" ], [ "430", "001-010", "VALUE:T1" ], [ "100", "011-989", "VALUE:T2" ], [ "300", "011-989", "VALUE:T2" ], [ "310", "011-989", "VALUE:T2" ], [ "420", "011-989", "VALUE:T2" ], [ "430", "011-989", "VALUE:T2" ], [ "100", "990", "VALUE:T1" ], [ "300", "990", "VALUE:T1" ], [ "310", "990", "VALUE:T1" ], [ "420", "990", "VALUE:T1" ], [ "430", "990", "VALUE:T1" ], [ "100", "991", "VALUE:T1" ], [ "300", "991", "VALUE:T1" ], [ "310", "991", "VALUE:T1" ], [ "420", "991", "VALUE:T1" ], [ "430", "991", "VALUE:T1" ], [ "100", "992", "VALUE:T2" ], [ "300", "992", "VALUE:T2" ], [ "310", "992", "VALUE:T1" ], [ "420", "992", "VALUE:T2" ], [ "430", "992", "VALUE:T2" ], [ "100", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "310", "993-995", "VALUE:T2" ], [ "420", "993-995", "VALUE:T2" ], [ "430", "993-995", "VALUE:T2" ], [ "100", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "310", "996-998", "ERROR:" ], [ "420", "996-998", "ERROR:" ], [ "430", "996-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "310", "999", "VALUE:T1" ], [ "420", "999", "VALUE:TX" ], [ "430", "999", "VALUE:T2" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xff.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xff.json
deleted file mode 100644
index 0ad4e2002..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xff.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xff",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-170 and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.062Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "100", "001-010", "VALUE:T1" ], [ "110", "001-010", "VALUE:T1" ], [ "120", "001-010", "VALUE:T1" ], [ "130", "001-010", "VALUE:T1" ], [ "140", "001-010", "VALUE:T1" ], [ "150", "001-010", "VALUE:T1" ], [ "160", "001-010", "VALUE:T1" ], [ "170", "001-010", "VALUE:T1" ], [ "300", "001-010", "VALUE:T1" ], [ "100", "011-989", "VALUE:T2" ], [ "110", "011-989", "VALUE:T2" ], [ "120", "011-989", "VALUE:T2" ], [ "130", "011-989", "VALUE:T2" ], [ "140", "011-989", "VALUE:T2" ], [ "150", "011-989", "VALUE:T2" ], [ "160", "011-989", "VALUE:T2" ], [ "170", "011-989", "VALUE:T2" ], [ "300", "011-989", "VALUE:T2" ], [ "100", "990-991", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1" ], [ "170", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "100", "992-995", "VALUE:T2" ], [ "110", "992-995", "VALUE:T2" ], [ "120", "992-995", "VALUE:T2" ], [ "130", "992-995", "VALUE:T2" ], [ "140", "992-995", "VALUE:T2" ], [ "150", "992-995", "VALUE:T2" ], [ "160", "992-995", "VALUE:T2" ], [ "170", "992-995", "VALUE:T2" ], [ "300", "992-995", "VALUE:T2" ], [ "100", "996-998", "ERROR:" ], [ "110", "996-998", "ERROR:" ], [ "120", "996-998", "ERROR:" ], [ "130", "996-998", "ERROR:" ], [ "140", "996-998", "ERROR:" ], [ "150", "996-998", "ERROR:" ], [ "160", "996-998", "ERROR:" ], [ "170", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1" ], [ "300", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfp.json
deleted file mode 100644
index 66159c424..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xfp.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xfp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-800 only, the T category for AJCC 7 staging is assigned based on the value of Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.107Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "360", "000", "ERROR:" ], [ "370", "000", "ERROR:" ], [ "380", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "800", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "350", "001-020", "VALUE:T1" ], [ "360", "001-020", "VALUE:T1" ], [ "370", "001-020", "VALUE:T1" ], [ "380", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1" ], [ "800", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "350", "021-050", "VALUE:T2" ], [ "360", "021-050", "VALUE:T2" ], [ "370", "021-050", "VALUE:T2" ], [ "380", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "600", "021-050", "VALUE:T2" ], [ "800", "021-050", "VALUE:T2" ], [ "100", "051-100", "VALUE:T3" ], [ "300", "051-100", "VALUE:T3" ], [ "350", "051-100", "VALUE:T3" ], [ "360", "051-100", "VALUE:T3" ], [ "370", "051-100", "VALUE:T3" ], [ "380", "051-100", "VALUE:T3" ], [ "400", "051-100", "VALUE:T3" ], [ "600", "051-100", "VALUE:T3" ], [ "800", "051-100", "VALUE:T3" ], [ "100", "101-989", "VALUE:T4" ], [ "300", "101-989", "VALUE:T4" ], [ "350", "101-989", "VALUE:T4" ], [ "360", "101-989", "VALUE:T4" ], [ "370", "101-989", "VALUE:T4" ], [ "380", "101-989", "VALUE:T4" ], [ "400", "101-989", "VALUE:T4" ], [ "600", "101-989", "VALUE:T4" ], [ "800", "101-989", "VALUE:T4" ], [ "100", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "350", "990-991", "VALUE:T1" ], [ "360", "990-991", "VALUE:T1" ], [ "370", "990-991", "VALUE:T1" ], [ "380", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1" ], [ "800", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "350", "992", "VALUE:T1" ], [ "360", "992", "VALUE:T2" ], [ "370", "992", "VALUE:T3" ], [ "380", "992", "VALUE:T4" ], [ "400", "992", "VALUE:T1" ], [ "600", "992", "VALUE:T1" ], [ "800", "992", "VALUE:T1" ], [ "100", "993", "VALUE:T2" ], [ "300", "993", "VALUE:T2" ], [ "350", "993", "VALUE:T2" ], [ "360", "993", "VALUE:T2" ], [ "370", "993", "VALUE:T2" ], [ "380", "993", "VALUE:T2" ], [ "400", "993", "VALUE:T2" ], [ "600", "993", "VALUE:T2" ], [ "800", "993", "VALUE:T2" ], [ "100", "994-995", "VALUE:T2" ], [ "300", "994-995", "VALUE:T2" ], [ "350", "994-995", "VALUE:T1" ], [ "360", "994-995", "VALUE:T2" ], [ "370", "994-995", "VALUE:T3" ], [ "380", "994-995", "VALUE:T4" ], [ "400", "994-995", "VALUE:T2" ], [ "600", "994-995", "VALUE:T2" ], [ "800", "994-995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "350", "996", "VALUE:T1" ], [ "360", "996", "VALUE:T2" ], [ "370", "996", "VALUE:T3" ], [ "380", "996", "VALUE:T4" ], [ "400", "996", "VALUE:T3" ], [ "600", "996", "VALUE:T3" ], [ "800", "996", "VALUE:T3" ], [ "100", "997", "VALUE:T4" ], [ "300", "997", "VALUE:T4" ], [ "350", "997", "VALUE:T1" ], [ "360", "997", "VALUE:T2" ], [ "370", "997", "VALUE:T3" ], [ "380", "997", "VALUE:T4" ], [ "400", "997", "VALUE:T4" ], [ "600", "997", "VALUE:T4" ], [ "800", "997", "VALUE:T4" ], [ "100", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "350", "998", "ERROR:" ], [ "360", "998", "ERROR:" ], [ "370", "998", "ERROR:" ], [ "380", "998", "ERROR:" ], [ "400", "998", "ERROR:" ], [ "600", "998", "ERROR:" ], [ "800", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "350", "999", "VALUE:T1" ], [ "360", "999", "VALUE:T2" ], [ "370", "999", "VALUE:T3" ], [ "380", "999", "VALUE:T4" ], [ "400", "999", "VALUE:TX" ], [ "600", "999", "VALUE:TX" ], [ "800", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xgi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xgi.json
deleted file mode 100644
index 03279bf6d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xgi.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xgi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 200-310, 380-450, and 550 ONLY, the T category for AJCC 7 staging is assigned based on CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.157Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "200", "000", "ERROR" ], [ "210", "000", "ERROR" ], [ "220", "000", "ERROR" ], [ "250", "000", "ERROR" ], [ "300", "000", "ERROR" ], [ "310", "000", "ERROR" ], [ "380", "000", "ERROR" ], [ "390", "000", "ERROR" ], [ "400", "000", "ERROR" ], [ "410", "000", "ERROR" ], [ "420", "000", "ERROR" ], [ "440", "000", "ERROR" ], [ "450", "000", "ERROR" ], [ "550", "000", "ERROR" ], [ "200", "001-040", "VALUE:T1b1" ], [ "210", "001-040", "VALUE:T1b1" ], [ "220", "001-040", "VALUE:T1b1" ], [ "250", "001-040", "VALUE:T1b1" ], [ "300", "001-040", "VALUE:T1b1" ], [ "310", "001-040", "VALUE:T1b1" ], [ "380", "001-040", "VALUE:T1b1" ], [ "390", "001-040", "VALUE:T1b1" ], [ "400", "001-040", "VALUE:T2a1" ], [ "410", "001-040", "VALUE:T2a1" ], [ "420", "001-040", "VALUE:T2a1" ], [ "440", "001-040", "VALUE:T2a1" ], [ "450", "001-040", "VALUE:T2a1" ], [ "550", "001-040", "VALUE:T2a1" ], [ "200", "041-989", "VALUE:T1b2" ], [ "210", "041-989", "VALUE:T1b2" ], [ "220", "041-989", "VALUE:T1b2" ], [ "250", "041-989", "VALUE:T1b2" ], [ "300", "041-989", "VALUE:T1b2" ], [ "310", "041-989", "VALUE:T1b2" ], [ "380", "041-989", "VALUE:T1b2" ], [ "390", "041-989", "VALUE:T1b2" ], [ "400", "041-989", "VALUE:T2a2" ], [ "410", "041-989", "VALUE:T2a2" ], [ "420", "041-989", "VALUE:T2a2" ], [ "440", "041-989", "VALUE:T2a2" ], [ "450", "041-989", "VALUE:T2a2" ], [ "550", "041-989", "VALUE:T2a2" ], [ "200", "990-994", "VALUE:T1b1" ], [ "210", "990-994", "VALUE:T1b1" ], [ "220", "990-994", "VALUE:T1b1" ], [ "250", "990-994", "VALUE:T1b1" ], [ "300", "990-994", "VALUE:T1b1" ], [ "310", "990-994", "VALUE:T1b1" ], [ "380", "990-994", "VALUE:T1b1" ], [ "390", "990-994", "VALUE:T1b1" ], [ "400", "990-994", "VALUE:T2a1" ], [ "410", "990-994", "VALUE:T2a1" ], [ "420", "990-994", "VALUE:T2a1" ], [ "440", "990-994", "VALUE:T2a1" ], [ "450", "990-994", "VALUE:T2a1" ], [ "550", "990-994", "VALUE:T2a1" ], [ "200", "995", "VALUE:T1b2" ], [ "210", "995", "VALUE:T1b2" ], [ "220", "995", "VALUE:T1b2" ], [ "250", "995", "VALUE:T1b2" ], [ "300", "995", "VALUE:T1b2" ], [ "310", "995", "VALUE:T1b2" ], [ "380", "995", "VALUE:T1b2" ], [ "390", "995", "VALUE:T1b2" ], [ "400", "995", "VALUE:T2a2" ], [ "410", "995", "VALUE:T2a2" ], [ "420", "995", "VALUE:T2a2" ], [ "440", "995", "VALUE:T2a2" ], [ "450", "995", "VALUE:T2a2" ], [ "550", "995", "VALUE:T2a2" ], [ "200", "996-998", "ERROR:" ], [ "210", "996-998", "ERROR:" ], [ "220", "996-998", "ERROR:" ], [ "250", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "310", "996-998", "ERROR:" ], [ "380", "996-998", "ERROR:" ], [ "390", "996-998", "ERROR:" ], [ "400", "996-998", "ERROR:" ], [ "410", "996-998", "ERROR:" ], [ "420", "996-998", "ERROR:" ], [ "440", "996-998", "ERROR:" ], [ "450", "996-998", "ERROR:" ], [ "550", "996-998", "ERROR:" ], [ "200", "999", "VALUE:T1bNOS" ], [ "210", "999", "VALUE:T1b1" ], [ "220", "999", "VALUE:T1b2" ], [ "250", "999", "VALUE:T1bNOS" ], [ "300", "999", "VALUE:T1NOS" ], [ "310", "999", "VALUE:T1NOS" ], [ "380", "999", "VALUE:T1bNOS" ], [ "390", "999", "VALUE:T1bNOS" ], [ "400", "999", "VALUE:T2aNOS" ], [ "410", "999", "VALUE:T2aNOS" ], [ "420", "999", "VALUE:T2a1" ], [ "440", "999", "VALUE:T2a2" ], [ "450", "999", "VALUE:T2aNOS" ], [ "550", "999", "VALUE:T2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xik.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xik.json
deleted file mode 100644
index 44af7abf3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xik.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xik",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-570 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.211Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "105", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "570", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "105", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1" ], [ "330", "001-020", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1" ], [ "560", "001-020", "VALUE:T1" ], [ "570", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "105", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "310", "021-050", "VALUE:T2" ], [ "330", "021-050", "VALUE:T2" ], [ "410", "021-050", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2" ], [ "560", "021-050", "VALUE:T2" ], [ "570", "021-050", "VALUE:T2" ], [ "100", "051-989", "VALUE:T3" ], [ "105", "051-989", "VALUE:T3" ], [ "300", "051-989", "VALUE:T3" ], [ "310", "051-989", "VALUE:T3" ], [ "330", "051-989", "VALUE:T3" ], [ "410", "051-989", "VALUE:T3" ], [ "500", "051-989", "VALUE:T3" ], [ "560", "051-989", "VALUE:T3" ], [ "570", "051-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "105", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "310", "990-991", "VALUE:T1" ], [ "330", "990-991", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1" ], [ "560", "990-991", "VALUE:T1" ], [ "570", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "105", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "310", "992", "VALUE:T1" ], [ "330", "992", "VALUE:T1" ], [ "410", "992", "VALUE:T1" ], [ "500", "992", "VALUE:T1" ], [ "560", "992", "VALUE:T2" ], [ "570", "992", "VALUE:T3" ], [ "100", "993-994", "VALUE:T2" ], [ "105", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "310", "993-994", "VALUE:T2" ], [ "330", "993-994", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2" ], [ "560", "993-994", "VALUE:T2" ], [ "570", "993-994", "VALUE:T3" ], [ "100", "995", "VALUE:T2" ], [ "105", "995", "VALUE:T2" ], [ "300", "995", "VALUE:T2" ], [ "310", "995", "VALUE:T2" ], [ "330", "995", "VALUE:T1" ], [ "410", "995", "VALUE:T2" ], [ "500", "995", "VALUE:T2" ], [ "560", "995", "VALUE:T2" ], [ "570", "995", "VALUE:T3" ], [ "100", "996", "VALUE:T3" ], [ "105", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "310", "996", "VALUE:T3" ], [ "330", "996", "VALUE:T3" ], [ "410", "996", "VALUE:T3" ], [ "500", "996", "VALUE:T3" ], [ "560", "996", "VALUE:T3" ], [ "570", "996", "VALUE:T3" ], [ "100", "999", "VALUE:TX" ], [ "105", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "310", "999", "VALUE:TX" ], [ "330", "999", "VALUE:T1" ], [ "410", "999", "VALUE:TX" ], [ "500", "999", "VALUE:TX" ], [ "560", "999", "VALUE:T2" ], [ "570", "999", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xim.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xim.json
deleted file mode 100644
index 3fef65430..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xim.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xim",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-400 ONLY, the T category for AJCC staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.263Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "305", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "100", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1" ], [ "320", "001-020", "VALUE:T1" ], [ "330", "001-020", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "305", "021-050", "VALUE:T2" ], [ "310", "021-050", "VALUE:T2" ], [ "320", "021-050", "VALUE:T2" ], [ "330", "021-050", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2" ], [ "100", "051-989", "VALUE:T3" ], [ "300", "051-989", "VALUE:T3" ], [ "305", "051-989", "VALUE:T3" ], [ "310", "051-989", "VALUE:T3" ], [ "320", "051-989", "VALUE:T3" ], [ "330", "051-989", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "305", "990-991", "VALUE:T1" ], [ "310", "990-991", "VALUE:T1" ], [ "320", "990-991", "VALUE:T1" ], [ "330", "990-991", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1" ], [ "100", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "305", "992", "VALUE:T1" ], [ "310", "992", "VALUE:T1" ], [ "320", "992", "VALUE:T2" ], [ "330", "992", "VALUE:T3" ], [ "400", "992", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "305", "993-994", "VALUE:T2" ], [ "310", "993-994", "VALUE:T1" ], [ "320", "993-994", "VALUE:T2" ], [ "330", "993-994", "VALUE:T3" ], [ "400", "993-994", "VALUE:T2" ], [ "100", "995", "VALUE:T2" ], [ "300", "995", "VALUE:T2" ], [ "305", "995", "VALUE:T2" ], [ "310", "995", "VALUE:T1" ], [ "320", "995", "VALUE:T2" ], [ "330", "995", "VALUE:T3" ], [ "400", "995", "VALUE:T2" ], [ "100", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "305", "996", "VALUE:T3" ], [ "310", "996", "VALUE:T3" ], [ "320", "996", "VALUE:T3" ], [ "330", "996", "VALUE:T3" ], [ "400", "996", "VALUE:T3" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "305", "999", "VALUE:TX" ], [ "310", "999", "VALUE:T1" ], [ "320", "999", "VALUE:T2" ], [ "330", "999", "VALUE:T3" ], [ "400", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xio.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xio.json
deleted file mode 100644
index a10f71095..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xio.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xio",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For Extension codes 105-470 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.313Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "430", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "470", "000", "ERROR:" ], [ "110", "001-020", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1" ], [ "130", "001-020", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1" ], [ "420", "001-020", "VALUE:T1" ], [ "430", "001-020", "VALUE:T1" ], [ "450", "001-020", "VALUE:T1" ], [ "460", "001-020", "VALUE:T1" ], [ "470", "001-020", "VALUE:T1" ], [ "110", "021-050", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2" ], [ "130", "021-050", "VALUE:T2" ], [ "150", "021-050", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2" ], [ "410", "021-050", "VALUE:T2" ], [ "420", "021-050", "VALUE:T2" ], [ "430", "021-050", "VALUE:T2" ], [ "450", "021-050", "VALUE:T2" ], [ "460", "021-050", "VALUE:T2" ], [ "470", "021-050", "VALUE:T2" ], [ "110", "051-989", "VALUE:T3" ], [ "120", "051-989", "VALUE:T3" ], [ "130", "051-989", "VALUE:T3" ], [ "150", "051-989", "VALUE:T3" ], [ "200", "051-989", "VALUE:T3" ], [ "300", "051-989", "VALUE:T3" ], [ "410", "051-989", "VALUE:T3" ], [ "420", "051-989", "VALUE:T3" ], [ "430", "051-989", "VALUE:T3" ], [ "450", "051-989", "VALUE:T3" ], [ "460", "051-989", "VALUE:T3" ], [ "470", "051-989", "VALUE:T3" ], [ "110", "990-991", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1" ], [ "130", "990-991", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1" ], [ "420", "990-991", "VALUE:T1" ], [ "430", "990-991", "VALUE:T1" ], [ "450", "990-991", "VALUE:T1" ], [ "460", "990-991", "VALUE:T1" ], [ "470", "990-991", "VALUE:T1" ], [ "110", "992", "VALUE:T1" ], [ "120", "992", "VALUE:T1" ], [ "130", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T1" ], [ "300", "992", "VALUE:T1" ], [ "410", "992", "VALUE:T1" ], [ "420", "992", "VALUE:T1" ], [ "430", "992", "VALUE:T1" ], [ "450", "992", "VALUE:T1" ], [ "460", "992", "VALUE:T2" ], [ "470", "992", "VALUE:T3" ], [ "110", "993-994", "VALUE:T2" ], [ "120", "993-994", "VALUE:T2" ], [ "130", "993-994", "VALUE:T2" ], [ "150", "993-994", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2" ], [ "410", "993-994", "VALUE:T2" ], [ "420", "993-994", "VALUE:T2" ], [ "430", "993-994", "VALUE:T2" ], [ "450", "993-994", "VALUE:T1" ], [ "460", "993-994", "VALUE:T2" ], [ "470", "993-994", "VALUE:T3" ], [ "110", "995", "VALUE:T2" ], [ "120", "995", "VALUE:T2" ], [ "130", "995", "VALUE:T2" ], [ "150", "995", "VALUE:T2" ], [ "200", "995", "VALUE:T2" ], [ "300", "995", "VALUE:T2" ], [ "410", "995", "VALUE:T2" ], [ "420", "995", "VALUE:T2" ], [ "430", "995", "VALUE:T2" ], [ "450", "995", "VALUE:T1" ], [ "460", "995", "VALUE:T2" ], [ "470", "995", "VALUE:T3" ], [ "110", "996", "VALUE:T3" ], [ "120", "996", "VALUE:T3" ], [ "130", "996", "VALUE:T3" ], [ "150", "996", "VALUE:T3" ], [ "200", "996", "VALUE:T3" ], [ "300", "996", "VALUE:T3" ], [ "410", "996", "VALUE:T3" ], [ "420", "996", "VALUE:T3" ], [ "430", "996", "VALUE:T3" ], [ "450", "996", "VALUE:T3" ], [ "460", "996", "VALUE:T3" ], [ "470", "996", "VALUE:T3" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "410", "999", "VALUE:TX" ], [ "420", "999", "VALUE:TX" ], [ "430", "999", "VALUE:TX" ], [ "450", "999", "VALUE:T1" ], [ "460", "999", "VALUE:T2" ], [ "470", "999", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkg.json
deleted file mode 100644
index 9710ebd83..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkg.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xkg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-190 and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.367Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "180", "000", "ERROR:" ], [ "190", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "100", "001-009", "VALUE:T1a" ], [ "110", "001-009", "VALUE:T1a" ], [ "120", "001-009", "VALUE:T1a" ], [ "130", "001-009", "VALUE:T1a" ], [ "140", "001-009", "VALUE:T1a" ], [ "150", "001-009", "VALUE:T1a" ], [ "160", "001-009", "VALUE:T1a" ], [ "170", "001-009", "VALUE:T1a" ], [ "180", "001-009", "VALUE:T1a" ], [ "190", "001-009", "VALUE:T1a" ], [ "300", "001-009", "VALUE:T1a" ], [ "100", "010-020", "VALUE:T1b" ], [ "110", "010-020", "VALUE:T1b" ], [ "120", "010-020", "VALUE:T1b" ], [ "130", "010-020", "VALUE:T1b" ], [ "140", "010-020", "VALUE:T1b" ], [ "150", "010-020", "VALUE:T1b" ], [ "160", "010-020", "VALUE:T1b" ], [ "170", "010-020", "VALUE:T1b" ], [ "180", "010-020", "VALUE:T1b" ], [ "190", "010-020", "VALUE:T1b" ], [ "300", "010-020", "VALUE:T1b" ], [ "100", "021-989", "VALUE:T2" ], [ "110", "021-989", "VALUE:T2" ], [ "120", "021-989", "VALUE:T2" ], [ "130", "021-989", "VALUE:T2" ], [ "140", "021-989", "VALUE:T2" ], [ "150", "021-989", "VALUE:T2" ], [ "160", "021-989", "VALUE:T2" ], [ "170", "021-989", "VALUE:T2" ], [ "180", "021-989", "VALUE:T2" ], [ "190", "021-989", "VALUE:T2" ], [ "300", "021-989", "VALUE:T2" ], [ "100", "990", "VALUE:T1a" ], [ "110", "990", "VALUE:T1a" ], [ "120", "990", "VALUE:T1a" ], [ "130", "990", "VALUE:T1a" ], [ "140", "990", "VALUE:T1a" ], [ "150", "990", "VALUE:T1a" ], [ "160", "990", "VALUE:T1a" ], [ "170", "990", "VALUE:T1a" ], [ "180", "990", "VALUE:T1a" ], [ "190", "990", "VALUE:T1a" ], [ "300", "990", "VALUE:T1a" ], [ "100", "991", "VALUE:T1a" ], [ "110", "991", "VALUE:T1a" ], [ "120", "991", "VALUE:T1a" ], [ "130", "991", "VALUE:T1a" ], [ "140", "991", "VALUE:T1a" ], [ "150", "991", "VALUE:T1a" ], [ "160", "991", "VALUE:T1a" ], [ "170", "991", "VALUE:T1a" ], [ "180", "991", "VALUE:T1b" ], [ "190", "991", "VALUE:T1NOS" ], [ "300", "991", "VALUE:T1a" ], [ "100", "992", "VALUE:T1NOS" ], [ "110", "992", "VALUE:T1NOS" ], [ "120", "992", "VALUE:T1NOS" ], [ "130", "992", "VALUE:T1NOS" ], [ "140", "992", "VALUE:T1NOS" ], [ "150", "992", "VALUE:T1NOS" ], [ "160", "992", "VALUE:T1NOS" ], [ "170", "992", "VALUE:T1a" ], [ "180", "992", "VALUE:T1b" ], [ "190", "992", "VALUE:T1NOS" ], [ "300", "992", "VALUE:T1NOS" ], [ "100", "993-995", "VALUE:T2" ], [ "110", "993-995", "VALUE:T2" ], [ "120", "993-995", "VALUE:T2" ], [ "130", "993-995", "VALUE:T2" ], [ "140", "993-995", "VALUE:T2" ], [ "150", "993-995", "VALUE:T2" ], [ "160", "993-995", "VALUE:T2" ], [ "170", "993-995", "VALUE:T2" ], [ "180", "993-995", "VALUE:T2" ], [ "190", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "180", "998", "ERROR:" ], [ "190", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1a" ], [ "180", "999", "VALUE:T1b" ], [ "190", "999", "VALUE:T1NOS" ], [ "300", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkh.json
deleted file mode 100644
index 41e46747a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkh.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xkh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-190 and 300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.440Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "165", "000", "ERROR:" ], [ "170", "000", "ERROR:" ], [ "180", "000", "ERROR:" ], [ "190", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "100", "001-009", "VALUE:T1a" ], [ "110", "001-009", "VALUE:T1a" ], [ "120", "001-009", "VALUE:T1a" ], [ "130", "001-009", "VALUE:T1a" ], [ "140", "001-009", "VALUE:T1a" ], [ "150", "001-009", "VALUE:T1a" ], [ "160", "001-009", "VALUE:T1a" ], [ "165", "001-009", "VALUE:T1a" ], [ "170", "001-009", "VALUE:T1a" ], [ "180", "001-009", "VALUE:T1a" ], [ "190", "001-009", "VALUE:T1a" ], [ "300", "001-009", "VALUE:T1a" ], [ "100", "010-020", "VALUE:T1b" ], [ "110", "010-020", "VALUE:T1b" ], [ "120", "010-020", "VALUE:T1b" ], [ "130", "010-020", "VALUE:T1b" ], [ "140", "010-020", "VALUE:T1b" ], [ "150", "010-020", "VALUE:T1b" ], [ "160", "010-020", "VALUE:T1b" ], [ "165", "010-020", "VALUE:T1b" ], [ "170", "010-020", "VALUE:T1b" ], [ "180", "010-020", "VALUE:T1b" ], [ "190", "010-020", "VALUE:T1b" ], [ "300", "010-020", "VALUE:T1b" ], [ "100", "021-989", "VALUE:T2" ], [ "110", "021-989", "VALUE:T2" ], [ "120", "021-989", "VALUE:T2" ], [ "130", "021-989", "VALUE:T2" ], [ "140", "021-989", "VALUE:T2" ], [ "150", "021-989", "VALUE:T2" ], [ "160", "021-989", "VALUE:T2" ], [ "165", "021-989", "VALUE:T2" ], [ "170", "021-989", "VALUE:T2" ], [ "180", "021-989", "VALUE:T2" ], [ "190", "021-989", "VALUE:T2" ], [ "300", "021-989", "VALUE:T2" ], [ "100", "990", "VALUE:T1a" ], [ "110", "990", "VALUE:T1a" ], [ "120", "990", "VALUE:T1a" ], [ "130", "990", "VALUE:T1a" ], [ "140", "990", "VALUE:T1a" ], [ "150", "990", "VALUE:T1a" ], [ "160", "990", "VALUE:T1a" ], [ "165", "990", "VALUE:T2" ], [ "170", "990", "VALUE:T1a" ], [ "180", "990", "VALUE:T1a" ], [ "190", "990", "VALUE:T1a" ], [ "300", "990", "VALUE:T1a" ], [ "100", "991", "VALUE:T1a" ], [ "110", "991", "VALUE:T1a" ], [ "120", "991", "VALUE:T1a" ], [ "130", "991", "VALUE:T1a" ], [ "140", "991", "VALUE:T1a" ], [ "150", "991", "VALUE:T1a" ], [ "160", "991", "VALUE:T1a" ], [ "165", "991", "VALUE:T1a" ], [ "170", "991", "VALUE:T1a" ], [ "180", "991", "VALUE:T1b" ], [ "190", "991", "VALUE:T1a" ], [ "300", "991", "VALUE:T1a" ], [ "100", "992", "VALUE:T1NOS" ], [ "110", "992", "VALUE:T1NOS" ], [ "120", "992", "VALUE:T1NOS" ], [ "130", "992", "VALUE:T1NOS" ], [ "140", "992", "VALUE:T1NOS" ], [ "150", "992", "VALUE:T1NOS" ], [ "160", "992", "VALUE:T1NOS" ], [ "165", "992", "VALUE:T1NOS" ], [ "170", "992", "VALUE:T1a" ], [ "180", "992", "VALUE:T1b" ], [ "190", "992", "VALUE:T1NOS" ], [ "300", "992", "VALUE:T1NOS" ], [ "100", "993-995", "VALUE:T2" ], [ "110", "993-995", "VALUE:T2" ], [ "120", "993-995", "VALUE:T2" ], [ "130", "993-995", "VALUE:T2" ], [ "140", "993-995", "VALUE:T2" ], [ "150", "993-995", "VALUE:T2" ], [ "160", "993-995", "VALUE:T2" ], [ "165", "993-995", "VALUE:T2" ], [ "170", "993-995", "VALUE:T2" ], [ "180", "993-995", "VALUE:T2" ], [ "190", "993-995", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2" ], [ "100", "998", "ERROR:" ], [ "110", "998", "ERROR:" ], [ "120", "998", "ERROR:" ], [ "130", "998", "ERROR:" ], [ "140", "998", "ERROR:" ], [ "150", "998", "ERROR:" ], [ "160", "998", "ERROR:" ], [ "165", "998", "ERROR:" ], [ "170", "998", "ERROR:" ], [ "180", "998", "ERROR:" ], [ "190", "998", "ERROR:" ], [ "300", "998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "110", "999", "VALUE:TX" ], [ "120", "999", "VALUE:TX" ], [ "130", "999", "VALUE:TX" ], [ "140", "999", "VALUE:TX" ], [ "150", "999", "VALUE:TX" ], [ "160", "999", "VALUE:TX" ], [ "165", "999", "VALUE:TX" ], [ "170", "999", "VALUE:T1a" ], [ "180", "999", "VALUE:T1b" ], [ "190", "999", "VALUE:T1NOS" ], [ "300", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkr.json
deleted file mode 100644
index 1ff0a9b8c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ajcc7_xkr.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_ajcc7_xkr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size AJCC7",
- "title" : "Extension Size AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 100-110, 116-120, 126-400, and 510-530 ONLY, the T category for AJCC 7 staging is assigned based on CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.491Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "116", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "126", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "140", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "510", "000", "ERROR:" ], [ "520", "000", "ERROR:" ], [ "523", "000", "ERROR:" ], [ "530", "000", "ERROR:" ], [ "100", "001-050", "VALUE:T1a" ], [ "110", "001-050", "VALUE:T1a" ], [ "116", "001-050", "VALUE:T1a" ], [ "120", "001-050", "VALUE:T1a" ], [ "126", "001-050", "VALUE:T1a" ], [ "130", "001-050", "VALUE:T1a" ], [ "140", "001-050", "VALUE:T1a" ], [ "160", "001-050", "VALUE:T1a" ], [ "400", "001-050", "VALUE:T1a" ], [ "510", "001-050", "VALUE:T1a" ], [ "520", "001-050", "VALUE:T1a" ], [ "523", "001-050", "VALUE:T1a" ], [ "530", "001-050", "VALUE:T1a" ], [ "100", "051-989", "VALUE:T1b" ], [ "110", "051-989", "VALUE:T1b" ], [ "116", "051-989", "VALUE:T1b" ], [ "120", "051-989", "VALUE:T1b" ], [ "126", "051-989", "VALUE:T1b" ], [ "130", "051-989", "VALUE:T1b" ], [ "140", "051-989", "VALUE:T1b" ], [ "160", "051-989", "VALUE:T1b" ], [ "400", "051-989", "VALUE:T1b" ], [ "510", "051-989", "VALUE:T1b" ], [ "520", "051-989", "VALUE:T1b" ], [ "523", "051-989", "VALUE:T1b" ], [ "530", "051-989", "VALUE:T1b" ], [ "100", "990-995", "VALUE:T1a" ], [ "110", "990-995", "VALUE:T1a" ], [ "116", "990-995", "VALUE:T1a" ], [ "120", "990-995", "VALUE:T1a" ], [ "126", "990-995", "VALUE:T1a" ], [ "130", "990-995", "VALUE:T1a" ], [ "140", "990-995", "VALUE:T1a" ], [ "160", "990-995", "VALUE:T1a" ], [ "400", "990-995", "VALUE:T1a" ], [ "510", "990-995", "VALUE:T1a" ], [ "520", "990-995", "VALUE:T1a" ], [ "523", "990-995", "VALUE:T1a" ], [ "530", "990-995", "VALUE:T1a" ], [ "100", "999", "VALUE:T1NOS" ], [ "110", "999", "VALUE:T1a" ], [ "116", "999", "VALUE:T1a" ], [ "120", "999", "VALUE:T1a" ], [ "126", "999", "VALUE:T1b" ], [ "130", "999", "VALUE:T1NOS" ], [ "140", "999", "VALUE:T1NOS" ], [ "160", "999", "VALUE:T1NOS" ], [ "400", "999", "VALUE:T1NOS" ], [ "510", "999", "VALUE:T1NOS" ], [ "520", "999", "VALUE:T1NOS" ], [ "523", "999", "VALUE:T1NOS" ], [ "530", "999", "VALUE:T1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_category_ajcc7_xpm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_category_ajcc7_xpm.json
deleted file mode 100644
index d65f6fd53..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_category_ajcc7_xpm.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_category_ajcc7_xpm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Category AJCC7",
- "title" : "Extension Size Category AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 150-180, the T for AJCC 7 staging is assigned based on the values of tumor basal diameter, recorded in CS Site-Specific Factor 2, and thickness, recorded in CS Site-Specific Factor 3. Basal diameter and thickness are mapped to Tumor Size Categories in the Tumor Size Category AJCC 7 Table, and the CS Extension codes and Tumor Size Categories are mapped to T as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.538Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "t_category",
- "name" : "Tumor Size Category",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "1", "VALUE:T1a" ], [ "160", "1", "VALUE:T1b" ], [ "170", "1", "VALUE:T1c" ], [ "180", "1", "VALUE:T1d" ], [ "150", "2", "VALUE:T2a" ], [ "160", "2", "VALUE:T2b" ], [ "170", "2", "VALUE:T2c" ], [ "180", "2", "VALUE:T2d" ], [ "150", "3", "VALUE:T3a" ], [ "160", "3", "VALUE:T3b" ], [ "170", "3", "VALUE:T3c" ], [ "180", "3", "VALUE:T3d" ], [ "150", "4", "VALUE:T4a" ], [ "160", "4", "VALUE:T4b" ], [ "170", "4", "VALUE:T4c" ], [ "180", "4", "VALUE:T4d" ], [ "150", "9", "VALUE:TX" ], [ "160", "9", "VALUE:TX" ], [ "170", "9", "VALUE:TX" ], [ "180", "9", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_high_risk_xfa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_high_risk_xfa.json
deleted file mode 100644
index ff5e95f9d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_high_risk_xfa.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_high_risk_xfa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size High Risk",
- "title" : "Extension Size High Risk Table",
- "notes" : "**Note**: For CS Extension codes 100-310 and 400-800 ONLY, the T category for AJCC 7 staging is assigned based on the values of CS Tumor Size and CS Site-Specific Factor 12, High Risk Features, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.586Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ssf12",
- "name" : "CS SSF 12 High Risk Features",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100,300,305,310,400,450,500,600,650,800", "001-995,999", "005", "ERROR:" ], [ "100,300,305", "000", "000-005,988,991-993,998,999", "ERROR:" ], [ "100,300,305", "001-020", "000-001", "VALUE:T1" ], [ "100,300,305", "001-020", "002-004", "VALUE:T2" ], [ "100,300,305", "001-020", "988", "ERROR:" ], [ "100,300,305", "001-020", "991", "VALUE:T1" ], [ "100,300,305", "001-020", "992", "VALUE:T2" ], [ "100,300,305", "001-020", "993,998,999", "VALUE:T1" ], [ "100,300,305", "021-989", "000-004", "VALUE:T2" ], [ "100,300,305", "021-989", "988", "ERROR:" ], [ "100,300,305", "021-989", "991-993,998,999", "VALUE:T2" ], [ "100,300,305", "990-992", "000-001", "VALUE:T1" ], [ "100,300,305", "990-992", "002-004", "VALUE:T2" ], [ "100,300,305", "990-992", "988", "ERROR:" ], [ "100,300,305", "990-992", "991", "VALUE:T1" ], [ "100,300,305", "990-992", "992", "VALUE:T2" ], [ "100,300,305", "990-992", "993,998,999", "VALUE:T1" ], [ "100,300,305", "993-995", "000-004", "VALUE:T2" ], [ "100,300,305", "993-995", "988", "ERROR:" ], [ "100,300,305", "993-995", "991-993,998,999", "VALUE:T2" ], [ "100,300,305", "999", "000-001", "VALUE:TX" ], [ "100,300,305", "999", "002-004", "VALUE:T2" ], [ "100,300,305", "999", "988", "ERROR:" ], [ "100,300,305", "999", "991", "VALUE:TX" ], [ "100,300,305", "999", "992", "VALUE:T2" ], [ "100,300,305", "999", "993,998,999", "VALUE:TX" ], [ "310", "000", "000-005,988,991-993,998,999", "ERROR:" ], [ "310", "001-020", "000-001", "VALUE:T1" ], [ "310", "001-020", "002-004", "VALUE:T2" ], [ "310", "001-020", "988", "ERROR:" ], [ "310", "001-020", "991", "VALUE:T1" ], [ "310", "001-020", "992", "VALUE:T2" ], [ "310", "001-020", "993,998,999", "VALUE:T1" ], [ "310", "021-989", "000-004", "VALUE:T2" ], [ "310", "021-989", "988", "ERROR:" ], [ "310", "021-989", "991-993,998,999", "VALUE:T2" ], [ "310", "990-992", "000-001", "VALUE:T1" ], [ "310", "990-992", "002-004", "VALUE:T2" ], [ "310", "990-992", "988", "ERROR:" ], [ "310", "990-992", "991", "VALUE:T1" ], [ "310", "990-992", "992", "VALUE:T2" ], [ "310", "990-992", "993,998,999", "VALUE:T1" ], [ "310", "993-995", "000-004", "VALUE:T2" ], [ "310", "993-995", "988", "ERROR:" ], [ "310", "993-995", "991-993,998,999", "VALUE:T2" ], [ "310", "999", "000-001", "VALUE:T1" ], [ "310", "999", "002-004", "VALUE:T2" ], [ "310", "999", "988", "ERROR:" ], [ "310", "999", "991", "VALUE:T1" ], [ "310", "999", "992", "VALUE:T2" ], [ "310", "999", "993,998,999", "VALUE:T1" ], [ "400,450,500,600,650,800", "000", "000-005,988,991-993,998,999", "ERROR:" ], [ "400,450,500,600,650,800", "001-020", "000-001", "VALUE:T1" ], [ "400,450,500,600,650,800", "001-020", "002-004", "VALUE:T2" ], [ "400,450,500,600,650,800", "001-020", "988", "ERROR:" ], [ "400,450,500,600,650,800", "001-020", "991", "VALUE:T1" ], [ "400,450,500,600,650,800", "001-020", "992", "VALUE:T2" ], [ "400,450,500,600,650,800", "001-020", "993,998,999", "VALUE:T1" ], [ "400,450,500,600,650,800", "021-989", "000-004", "VALUE:T2" ], [ "400,450,500,600,650,800", "021-989", "988", "ERROR:" ], [ "400,450,500,600,650,800", "021-989", "991-993,998,999", "VALUE:T2" ], [ "400,450,500,600,650,800", "990-992", "000-001", "VALUE:T1" ], [ "400,450,500,600,650,800", "990-992", "002-004", "VALUE:T2" ], [ "400,450,500,600,650,800", "990-992", "988", "ERROR:" ], [ "400,450,500,600,650,800", "990-992", "991", "VALUE:T1" ], [ "400,450,500,600,650,800", "990-992", "992", "VALUE:T2" ], [ "400,450,500,600,650,800", "990-992", "993,998,999", "VALUE:T1" ], [ "400,450,500,600,650,800", "993-995", "000-004", "VALUE:T2" ], [ "400,450,500,600,650,800", "993-995", "988", "ERROR:" ], [ "400,450,500,600,650,800", "993-995", "991-993,998,999", "VALUE:T2" ], [ "400,450,500,600,650,800", "999", "000-001", "VALUE:TX" ], [ "400,450,500,600,650,800", "999", "002-004", "VALUE:T2" ], [ "400,450,500,600,650,800", "999", "988", "ERROR:" ], [ "400,450,500,600,650,800", "999", "991", "VALUE:TX" ], [ "400,450,500,600,650,800", "999", "992", "VALUE:T2" ], [ "400,450,500,600,650,800", "999", "993,998,999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_high_risk_xfy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_high_risk_xfy.json
deleted file mode 100644
index f854b626f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_high_risk_xfy.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_high_risk_xfy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size High Risk",
- "title" : "Extension Size High Risk Table",
- "notes" : "**Note**: For CS Extension codes 100, 400, 500, 510, and 550 ONLY, the T category for AJCC 7 staging is assigned based on the values of CS Tumor Size and CS Site-Specific Factor 12, High Risk Features, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.638Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ssf12",
- "name" : "CS SSF 12 High Risk Features",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100,400,500,510", "001-995,999", "006", "ERROR:" ], [ "550", "001-995,999", "006", "ERROR:" ], [ "100,400,500", "000", "000-005,988,991-993,999", "ERROR:" ], [ "100,400,500", "001-020", "000-001", "VALUE:T1" ], [ "100,400,500", "001-020", "002-005", "VALUE:T2" ], [ "100,400,500", "001-020", "988", "ERROR:" ], [ "100,400,500", "001-020", "991", "VALUE:T1" ], [ "100,400,500", "001-020", "992", "VALUE:T2" ], [ "100,400,500", "001-020", "993,999", "VALUE:T1" ], [ "100,400,500", "021-989", "000-005", "VALUE:T2" ], [ "100,400,500", "021-989", "988", "ERROR:" ], [ "100,400,500", "021-989", "991-993,999", "VALUE:T2" ], [ "100,400,500", "990-992", "000-001", "VALUE:T1" ], [ "100,400,500", "990-992", "002-005", "VALUE:T2" ], [ "100,400,500", "990-992", "988", "ERROR:" ], [ "100,400,500", "990-992", "991", "VALUE:T1" ], [ "100,400,500", "990-992", "992", "VALUE:T2" ], [ "100,400,500", "990-992", "993,999", "VALUE:T1" ], [ "100,400,500", "993-995", "000-005", "VALUE:T2" ], [ "100,400,500", "993-995", "988", "ERROR:" ], [ "100,400,500", "993-995", "991-993,999", "VALUE:T2" ], [ "100,400,500", "999", "000-001", "VALUE:TX" ], [ "100,400,500", "999", "002-005", "VALUE:T2" ], [ "100,400,500", "999", "988", "ERROR:" ], [ "100,400,500", "999", "991", "VALUE:TX" ], [ "100,400,500", "999", "992", "VALUE:T2" ], [ "100,400,500", "999", "993,999", "VALUE:TX" ], [ "510", "000", "000-005,988,991-993,999", "ERROR:" ], [ "510", "001-020", "000-001", "VALUE:T1" ], [ "510", "001-020", "002-005", "VALUE:T2" ], [ "510", "001-020", "988", "ERROR:" ], [ "510", "001-020", "991", "VALUE:T1" ], [ "510", "001-020", "992", "VALUE:T2" ], [ "510", "001-020", "993,999", "VALUE:T1" ], [ "510", "021-989", "000-005", "VALUE:T2" ], [ "510", "021-989", "988", "ERROR:" ], [ "510", "021-989", "991-993,999", "VALUE:T2" ], [ "510", "990-992", "000-001", "VALUE:T1" ], [ "510", "990-992", "002-005", "VALUE:T2" ], [ "510", "990-992", "988", "ERROR:" ], [ "510", "990-992", "991", "VALUE:T1" ], [ "510", "990-992", "992", "VALUE:T2" ], [ "510", "990-992", "993,999", "VALUE:T1" ], [ "510", "993-995", "000-005", "VALUE:T2" ], [ "510", "993-995", "988", "ERROR:" ], [ "510", "993-995", "991-993,999", "VALUE:T2" ], [ "510", "999", "000-001", "VALUE:T1" ], [ "510", "999", "002-005", "VALUE:T2" ], [ "510", "999", "988", "ERROR:" ], [ "510", "999", "991", "VALUE:T1" ], [ "510", "999", "992", "VALUE:T2" ], [ "510", "999", "993,999", "VALUE:T1" ], [ "550", "000", "000-005,988,991-993,999", "ERROR:" ], [ "550", "001-020", "000-001", "VALUE:T1" ], [ "550", "001-020", "002-005", "VALUE:T2" ], [ "550", "001-020", "988", "ERROR:" ], [ "550", "001-020", "991", "VALUE:T1" ], [ "550", "001-020", "992", "VALUE:T2" ], [ "550", "001-020", "993,999", "VALUE:T1" ], [ "550", "021-989", "000-005", "VALUE:T2" ], [ "550", "021-989", "988", "ERROR:" ], [ "550", "021-989", "991-993,999", "VALUE:T2" ], [ "550", "990-992", "000-001", "VALUE:T1" ], [ "550", "990-992", "002-005", "VALUE:T2" ], [ "550", "990-992", "988", "ERROR:" ], [ "550", "990-992", "991", "VALUE:T1" ], [ "550", "990-992", "992", "VALUE:T2" ], [ "550", "990-992", "993,999", "VALUE:T1" ], [ "550", "993-995", "000-005", "VALUE:T2" ], [ "550", "993-995", "988", "ERROR:" ], [ "550", "993-995", "991-993,999", "VALUE:T2" ], [ "550", "999", "000-001", "VALUE:TX" ], [ "550", "999", "002-005", "VALUE:T2" ], [ "550", "999", "988", "ERROR:" ], [ "550", "999", "991", "VALUE:TX" ], [ "550", "999", "992", "VALUE:T2" ], [ "550", "999", "993,999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_pair_ajcc6_xpn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_pair_ajcc6_xpn.json
deleted file mode 100644
index 841a7b462..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_pair_ajcc6_xpn.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_pair_ajcc6_xpn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Pair AJCC6",
- "title" : "Extension Size Pair AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 150-180, 635, and 640, the T category for AJCC 6 staging is assigned based on the values of tumor basal diameter, recorded in CS Site-Specific Factor 2, and thickness, recorded in CS Site-Specific Factor 3. Diameter and thickness are mapped to tumor size pairs in the Tumor Size Pair AJCC 6 Table, and the CS Extension codes and tumor size pairs are mapped to T as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.696Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "t_category",
- "name" : "Tumor Size Pair",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "1", "VALUE:T1a" ], [ "160", "1", "VALUE:T1a" ], [ "170", "1", "VALUE:T1b" ], [ "180", "1", "VALUE:T1b" ], [ "635", "1", "VALUE:T1c" ], [ "640", "1", "VALUE:T1c" ], [ "150", "2", "VALUE:T2a" ], [ "160", "2", "VALUE:T2a" ], [ "170", "2", "VALUE:T2b" ], [ "180", "2", "VALUE:T2b" ], [ "635", "2", "VALUE:T2c" ], [ "640", "2", "VALUE:T2c" ], [ "150", "3", "VALUE:T3" ], [ "160", "3", "VALUE:T3" ], [ "170", "3", "VALUE:T4" ], [ "180", "3", "VALUE:T4" ], [ "635", "3", "VALUE:T4" ], [ "640", "3", "VALUE:T4" ], [ "150", "9", "VALUE:TX" ], [ "160", "9", "VALUE:TX" ], [ "170", "9", "VALUE:TX" ], [ "180", "9", "VALUE:TX" ], [ "635", "9", "VALUE:T1c" ], [ "640", "9", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion888988_ajcc6_table_csv2_xij.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion888988_ajcc6_table_csv2_xij.json
deleted file mode 100644
index 604ef6a1a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion888988_ajcc6_table_csv2_xij.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_perineural_invasion888988_ajcc6_table_csv2_xij",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Perineural Invasion 888, 988 AJCC6 Table CSv2",
- "title" : "Extension Size, Perineural Invasion 888, 988 AJCC 6 Table CSv2",
- "notes" : "**Note**: For CS Version 2, when CS Site-Specific Factor 6 Perineural Invasion = 888 or 988, for CS Extension codes 100 through 400 ONLY, the T category for AJCC 6 staging is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.744Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf6",
- "name" : "CS SSF 6",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "888", "ERROR:" ], [ "150", "888", "ERROR:" ], [ "155", "888", "ERROR:" ], [ "200", "888", "ERROR:" ], [ "250", "888", "ERROR:" ], [ "270", "888", "ERROR:" ], [ "300", "888", "ERROR:" ], [ "320", "888", "ERROR:" ], [ "340", "888", "ERROR:" ], [ "400", "888", "ERROR:" ], [ "100", "988", "ERROR:" ], [ "150", "988", "ERROR:" ], [ "155", "988", "ERROR:" ], [ "200", "988", "ERROR:" ], [ "250", "988", "ERROR:" ], [ "270", "988", "ERROR:" ], [ "300", "988", "ERROR:" ], [ "320", "988", "ERROR:" ], [ "340", "988", "ERROR:" ], [ "400", "988", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion888988_ajcc7_xic.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion888988_ajcc7_xic.json
deleted file mode 100644
index 2923918dc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion888988_ajcc7_xic.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_perineural_invasion888988_ajcc7_xic",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Perineural Invasion 888, 988 AJCC7",
- "title" : "Extension Size, Perineural Invasion 888, 988 AJCC 7 Table",
- "notes" : "**Note**: When CS Site-Specific Factor 6 Perineural Invasion = 888 or 988, for CS Extension codes 100 through 400 ONLY, the T category for AJCC 7 staging is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.790Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf6",
- "name" : "CS SSF 6",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "888", "ERROR:" ], [ "150", "888", "ERROR:" ], [ "155", "888", "ERROR:" ], [ "200", "888", "ERROR:" ], [ "250", "888", "ERROR:" ], [ "270", "888", "ERROR:" ], [ "300", "888", "ERROR:" ], [ "320", "888", "ERROR:" ], [ "340", "888", "ERROR:" ], [ "400", "888", "ERROR:" ], [ "100", "988", "ERROR:" ], [ "150", "988", "ERROR:" ], [ "155", "988", "ERROR:" ], [ "200", "988", "ERROR:" ], [ "250", "988", "ERROR:" ], [ "270", "988", "ERROR:" ], [ "300", "988", "ERROR:" ], [ "320", "988", "ERROR:" ], [ "340", "988", "ERROR:" ], [ "400", "988", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl.json
deleted file mode 100644
index 5d5215164..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Perineural Invasion Negative or Unknown AJCC6 Table CSv2",
- "title" : "Extension Size, Perineural Invasion Negative or Unknown AJCC 6 Table CSv2",
- "notes" : "**Note**: For CS Version 2 cases, when CS Site-Specific Factor 6 Perineural Invasion = 000, 997, 998, or 999, for CS Extension codes 100-400 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.838Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "340", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "100", "001-005", "VALUE:T1" ], [ "150", "001-005", "VALUE:T1" ], [ "155", "001-005", "VALUE:T1" ], [ "200", "001-005", "VALUE:T2" ], [ "250", "001-005", "VALUE:T1" ], [ "270", "001-005", "VALUE:TX" ], [ "300", "001-005", "VALUE:T3" ], [ "320", "001-005", "VALUE:TX" ], [ "340", "001-005", "VALUE:TX" ], [ "400", "001-005", "VALUE:TX" ], [ "100", "006-010", "VALUE:T1" ], [ "150", "006-010", "VALUE:T1" ], [ "155", "006-010", "VALUE:T1" ], [ "200", "006-010", "VALUE:T2" ], [ "250", "006-010", "VALUE:T2" ], [ "270", "006-010", "VALUE:TX" ], [ "300", "006-010", "VALUE:T3" ], [ "320", "006-010", "VALUE:TX" ], [ "340", "006-010", "VALUE:TX" ], [ "400", "006-010", "VALUE:TX" ], [ "100", "011-989", "VALUE:T1" ], [ "150", "011-989", "VALUE:T1" ], [ "155", "011-989", "VALUE:T1" ], [ "200", "011-989", "VALUE:T2" ], [ "250", "011-989", "VALUE:T3" ], [ "270", "011-989", "VALUE:TX" ], [ "300", "011-989", "VALUE:T3" ], [ "320", "011-989", "VALUE:TX" ], [ "340", "011-989", "VALUE:TX" ], [ "400", "011-989", "VALUE:TX" ], [ "100", "990", "VALUE:T1" ], [ "150", "990", "VALUE:T1" ], [ "155", "990", "VALUE:T1" ], [ "200", "990", "VALUE:T2" ], [ "250", "990", "VALUE:T1" ], [ "270", "990", "VALUE:TX" ], [ "300", "990", "VALUE:T3" ], [ "320", "990", "VALUE:TX" ], [ "340", "990", "VALUE:TX" ], [ "400", "990", "VALUE:TX" ], [ "100", "991", "VALUE:T1" ], [ "150", "991", "VALUE:T1" ], [ "155", "991", "VALUE:T1" ], [ "200", "991", "VALUE:T2" ], [ "250", "991", "VALUE:T2" ], [ "270", "991", "VALUE:TX" ], [ "300", "991", "VALUE:T3" ], [ "320", "991", "VALUE:TX" ], [ "340", "991", "VALUE:TX" ], [ "400", "991", "VALUE:TX" ], [ "100", "992", "VALUE:T1" ], [ "150", "992", "VALUE:T1" ], [ "155", "992", "VALUE:T1" ], [ "200", "992", "VALUE:T2" ], [ "250", "992", "VALUE:T2" ], [ "270", "992", "VALUE:TX" ], [ "300", "992", "VALUE:T3" ], [ "320", "992", "VALUE:TX" ], [ "340", "992", "VALUE:TX" ], [ "400", "992", "VALUE:TX" ], [ "100", "993-995", "VALUE:T1" ], [ "150", "993-995", "VALUE:T1" ], [ "155", "993-995", "VALUE:T1" ], [ "200", "993-995", "VALUE:T2" ], [ "250", "993-995", "VALUE:T3" ], [ "270", "993-995", "VALUE:TX" ], [ "300", "993-995", "VALUE:T3" ], [ "320", "993-995", "VALUE:TX" ], [ "340", "993-995", "VALUE:TX" ], [ "400", "993-995", "VALUE:TX" ], [ "100", "996-998", "ERROR:" ], [ "150", "996-998", "ERROR:" ], [ "155", "996-998", "ERROR:" ], [ "200", "996-998", "ERROR:" ], [ "250", "996-998", "ERROR:" ], [ "270", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "320", "996-998", "ERROR:" ], [ "340", "996-998", "ERROR:" ], [ "400", "996-998", "ERROR:" ], [ "100", "999", "VALUE:T1" ], [ "150", "999", "VALUE:T1" ], [ "155", "999", "VALUE:T1" ], [ "200", "999", "VALUE:T2" ], [ "250", "999", "VALUE:TX" ], [ "270", "999", "VALUE:TX" ], [ "300", "999", "VALUE:T3" ], [ "320", "999", "VALUE:TX" ], [ "340", "999", "VALUE:TX" ], [ "400", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_negativeor_unknown_ajcc7_xgj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_negativeor_unknown_ajcc7_xgj.json
deleted file mode 100644
index 5bc3de7db..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_negativeor_unknown_ajcc7_xgj.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_perineural_invasion_negativeor_unknown_ajcc7_xgj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Perineural Invasion Negative or Unknown AJCC7",
- "title" : "Extension Size, Perineural Invasion Negative or Unknown AJCC 7 Table",
- "notes" : "**Note**: When CS Site-Specific Factor 6 Perineural Invasion = 000, 997, 998, or 999, for CS Extension codes 100-400 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.897Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "155", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "340", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "100", "001-005", "VALUE:T1" ], [ "150", "001-005", "VALUE:T1" ], [ "155", "001-005", "VALUE:T1" ], [ "200", "001-005", "VALUE:T2a" ], [ "250", "001-005", "VALUE:T2a" ], [ "270", "001-005", "VALUE:T2a" ], [ "300", "001-005", "VALUE:T2b" ], [ "320", "001-005", "VALUE:T2b" ], [ "340", "001-005", "VALUE:T2NOS" ], [ "400", "001-005", "VALUE:T1" ], [ "100", "006-010", "VALUE:T2a" ], [ "150", "006-010", "VALUE:T2a" ], [ "155", "006-010", "VALUE:T2a" ], [ "200", "006-010", "VALUE:T2a" ], [ "250", "006-010", "VALUE:T2a" ], [ "270", "006-010", "VALUE:T2a" ], [ "300", "006-010", "VALUE:T2b" ], [ "320", "006-010", "VALUE:T2b" ], [ "340", "006-010", "VALUE:T2NOS" ], [ "400", "006-010", "VALUE:T2a" ], [ "100", "011-020", "VALUE:T2b" ], [ "150", "011-020", "VALUE:T2b" ], [ "155", "011-020", "VALUE:T2b" ], [ "200", "011-020", "VALUE:T2b" ], [ "250", "011-020", "VALUE:T2b" ], [ "270", "011-020", "VALUE:T2b" ], [ "300", "011-020", "VALUE:T2b" ], [ "320", "011-020", "VALUE:T2b" ], [ "340", "011-020", "VALUE:T2NOS" ], [ "400", "011-020", "VALUE:T2b" ], [ "100", "021-989", "VALUE:T3a" ], [ "150", "021-989", "VALUE:T3a" ], [ "155", "021-989", "VALUE:T3a" ], [ "200", "021-989", "VALUE:T3a" ], [ "250", "021-989", "VALUE:T3a" ], [ "270", "021-989", "VALUE:T3a" ], [ "300", "021-989", "VALUE:T3a" ], [ "320", "021-989", "VALUE:T3a" ], [ "340", "021-989", "VALUE:T3a" ], [ "400", "021-989", "VALUE:T3a" ], [ "100", "990", "VALUE:T1" ], [ "150", "990", "VALUE:T1" ], [ "155", "990", "VALUE:T1" ], [ "200", "990", "VALUE:T2a" ], [ "250", "990", "VALUE:T2a" ], [ "270", "990", "VALUE:T2a" ], [ "300", "990", "VALUE:T2b" ], [ "320", "990", "VALUE:T2b" ], [ "340", "990", "VALUE:T2NOS" ], [ "400", "990", "VALUE:T1" ], [ "100", "991", "VALUE:T2a" ], [ "150", "991", "VALUE:T2a" ], [ "155", "991", "VALUE:T2a" ], [ "200", "991", "VALUE:T2a" ], [ "250", "991", "VALUE:T2a" ], [ "270", "991", "VALUE:T2a" ], [ "300", "991", "VALUE:T2b" ], [ "320", "991", "VALUE:T2b" ], [ "340", "991", "VALUE:T2NOS" ], [ "400", "991", "VALUE:T2a" ], [ "100", "992", "VALUE:T2b" ], [ "150", "992", "VALUE:T2b" ], [ "155", "992", "VALUE:T2b" ], [ "200", "992", "VALUE:T2b" ], [ "250", "992", "VALUE:T2b" ], [ "270", "992", "VALUE:T2b" ], [ "300", "992", "VALUE:T2b" ], [ "320", "992", "VALUE:T2b" ], [ "340", "992", "VALUE:T3a" ], [ "400", "992", "VALUE:T2b" ], [ "100", "993-995", "VALUE:T3a" ], [ "150", "993-995", "VALUE:T3a" ], [ "155", "993-995", "VALUE:T3a" ], [ "200", "993-995", "VALUE:T3a" ], [ "250", "993-995", "VALUE:T3a" ], [ "270", "993-995", "VALUE:T3a" ], [ "300", "993-995", "VALUE:T3a" ], [ "320", "993-995", "VALUE:T3a" ], [ "340", "993-995", "VALUE:T3a" ], [ "400", "993-995", "VALUE:T3a" ], [ "100", "996-998", "ERROR:" ], [ "150", "996-998", "ERROR:" ], [ "155", "996-998", "ERROR:" ], [ "200", "996-998", "ERROR:" ], [ "250", "996-998", "ERROR:" ], [ "270", "996-998", "ERROR:" ], [ "300", "996-998", "ERROR:" ], [ "320", "996-998", "ERROR:" ], [ "340", "996-998", "ERROR:" ], [ "400", "996-998", "ERROR:" ], [ "100", "999", "VALUE:T1" ], [ "150", "999", "VALUE:T1" ], [ "155", "999", "VALUE:T1" ], [ "200", "999", "VALUE:T2a" ], [ "250", "999", "VALUE:T1" ], [ "270", "999", "VALUE:T2a" ], [ "300", "999", "VALUE:T2b" ], [ "320", "999", "VALUE:T2b" ], [ "340", "999", "VALUE:T2NOS" ], [ "400", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm.json
deleted file mode 100644
index 59f325854..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Perineural Invasion Positive AJCC6 Table CSv2",
- "title" : "Extension Size, Perineural Invasion Positive AJCC 6 Table CSv2",
- "notes" : "**Note**: CS Version 2 cases, when CS Site-Specific Factor 6 Perineural Invasion = 010, for CS Extension codes 100-400 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.950Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "VALUE:T4" ], [ "150", "VALUE:T4" ], [ "155", "VALUE:T4" ], [ "200", "VALUE:T4" ], [ "250", "VALUE:T4" ], [ "270", "VALUE:T4" ], [ "300", "VALUE:T4" ], [ "320", "VALUE:T4" ], [ "340", "VALUE:T4" ], [ "400", "VALUE:T4" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_positive_ajcc7_xgk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_positive_ajcc7_xgk.json
deleted file mode 100644
index a7fb6436e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_perineural_invasion_positive_ajcc7_xgk.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "extension_size_perineural_invasion_positive_ajcc7_xgk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Perineural Invasion Positive AJCC7",
- "title" : "Extension Size, Perineural Invasion Positive AJCC 7 Table",
- "notes" : "**Note**: When CS Site-Specific Factor 6 Perineural Invasion = 010, for CS Extension codes 100- 400 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:18.996Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "VALUE:T3a" ], [ "150", "VALUE:T3a" ], [ "155", "VALUE:T3a" ], [ "200", "VALUE:T3a" ], [ "250", "VALUE:T3a" ], [ "270", "VALUE:T3a" ], [ "300", "VALUE:T3a" ], [ "320", "VALUE:T3a" ], [ "340", "VALUE:T3a" ], [ "400", "VALUE:T3a" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ssf1_ajcc7_xgb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ssf1_ajcc7_xgb.json
deleted file mode 100644
index b9418a4b0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_ssf1_ajcc7_xgb.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "id" : "extension_size_ssf1_ajcc7_xgb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size SSF1 AJCC7",
- "title" : "Extension Size SSF 1 AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 000, 100-550, 950, and 999 ONLY, where histology does not equal 8020, 8021, 8030, 8031, or 8032, and grade does not equal 4, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and/or CS Extension and CS Site-Specific Factor 1 as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.042Z",
- "definition" : [ {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "SSF1",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "100", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "200", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "300", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "400", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "405", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "410", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "415", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "420", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "450", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "480", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "490", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "500", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "520", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "550", "000", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "950", "000", "VALUE:T0" ], [ "1,2,3,9", "000, 988, 999", "999", "000", "ERROR:" ], [ "1,2,3,9", "010", "000", "000", "ERROR:" ], [ "1,2,3,9", "010", "100", "000", "ERROR:" ], [ "1,2,3,9", "010", "200", "000", "ERROR:" ], [ "1,2,3,9", "010", "300", "000", "ERROR:" ], [ "1,2,3,9", "010", "400", "000", "ERROR:" ], [ "1,2,3,9", "010", "405", "000", "ERROR:" ], [ "1,2,3,9", "010", "410", "000", "ERROR:" ], [ "1,2,3,9", "010", "415", "000", "ERROR:" ], [ "1,2,3,9", "010", "420", "000", "ERROR:" ], [ "1,2,3,9", "010", "450", "000", "ERROR:" ], [ "1,2,3,9", "010", "480", "000", "ERROR:" ], [ "1,2,3,9", "010", "490", "000", "ERROR:" ], [ "1,2,3,9", "010", "500", "000", "ERROR:" ], [ "1,2,3,9", "010", "520", "000", "ERROR:" ], [ "1,2,3,9", "010", "550", "000", "ERROR:" ], [ "1,2,3,9", "010", "950", "000", "VALUE:T0" ], [ "1,2,3,9", "010", "999", "000", "ERROR:" ], [ "1,2,3,9", "020", "000", "000", "ERROR:" ], [ "1,2,3,9", "020", "100", "000", "ERROR:" ], [ "1,2,3,9", "020", "200", "000", "ERROR:" ], [ "1,2,3,9", "020", "300", "000", "ERROR:" ], [ "1,2,3,9", "020", "400", "000", "ERROR:" ], [ "1,2,3,9", "020", "405", "000", "ERROR:" ], [ "1,2,3,9", "020", "410", "000", "ERROR:" ], [ "1,2,3,9", "020", "415", "000", "ERROR:" ], [ "1,2,3,9", "020", "420", "000", "ERROR:" ], [ "1,2,3,9", "020", "450", "000", "ERROR:" ], [ "1,2,3,9", "020", "480", "000", "ERROR:" ], [ "1,2,3,9", "020", "490", "000", "ERROR:" ], [ "1,2,3,9", "020", "500", "000", "ERROR:" ], [ "1,2,3,9", "020", "520", "000", "ERROR:" ], [ "1,2,3,9", "020", "550", "000", "ERROR:" ], [ "1,2,3,9", "020", "950", "000", "VALUE:T0" ], [ "1,2,3,9", "020", "999", "000", "ERROR:" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "000", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "001-010", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "001-010", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "200", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "300", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "400", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "405", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "410", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "415", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "420", "001-010", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "450", "001-010", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "001-010", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "001-010", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "001-010", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "001-010", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "001-010", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "001-010", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "001-010", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "001-010", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "200", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "300", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "400", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "405", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "410", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "415", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "420", "001-010", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "450", "001-010", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "001-010", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "001-010", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "001-010", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "001-010", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "001-010", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "001-010", "ERROR:" ], [ "1,2,3,9", "010", "999", "001-010", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "001-010", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "200", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "300", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "400", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "405", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "410", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "415", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "420", "001-010", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "450", "001-010", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "001-010", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "001-010", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "001-010", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "001-010", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "001-010", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "001-010", "ERROR:" ], [ "1,2,3,9", "020", "999", "001-010", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "001-010", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "011-020", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "011-020", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "200", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "300", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "400", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "405", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "410", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "415", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "420", "011-020", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "450", "011-020", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "011-020", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "011-020", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "011-020", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "011-020", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "011-020", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "011-020", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "011-020", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "011-020", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "200", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "300", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "400", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "405", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "410", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "415", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "420", "011-020", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "450", "011-020", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "011-020", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "011-020", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "011-020", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "011-020", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "011-020", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "011-020", "ERROR:" ], [ "1,2,3,9", "010", "999", "011-020", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "011-020", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "200", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "300", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "400", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "405", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "410", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "415", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "420", "011-020", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "450", "011-020", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "011-020", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "011-020", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "011-020", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "011-020", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "011-020", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "011-020", "ERROR:" ], [ "1,2,3,9", "020", "999", "011-020", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "011-020", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "021-040", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "021-040", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "200", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "300", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "400", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "405", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "410", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "415", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "420", "021-040", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "450", "021-040", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "021-040", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "021-040", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "021-040", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "021-040", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "021-040", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "021-040", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "021-040", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "021-040", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "200", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "300", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "400", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "405", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "410", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "415", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "420", "021-040", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "450", "021-040", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "021-040", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "021-040", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "021-040", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "021-040", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "021-040", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "021-040", "ERROR:" ], [ "1,2,3,9", "010", "999", "021-040", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "021-040", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "200", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "300", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "400", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "405", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "410", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "415", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "420", "021-040", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "450", "021-040", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "021-040", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "021-040", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "021-040", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "021-040", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "021-040", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "021-040", "ERROR:" ], [ "1,2,3,9", "020", "999", "021-040", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "021-040", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "041-989", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "041-989", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "200", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "300", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "400", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "405", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "410", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "415", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "420", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "450", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "041-989", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "041-989", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "041-989", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "041-989", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "041-989", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "041-989", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "041-989", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "200", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "300", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "400", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "405", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "410", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "415", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "420", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "450", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "041-989", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "041-989", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "041-989", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "041-989", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "041-989", "ERROR:" ], [ "1,2,3,9", "010", "999", "041-989", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "041-989", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "200", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "300", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "400", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "405", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "410", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "415", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "420", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "450", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "041-989", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "041-989", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "041-989", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "041-989", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "041-989", "ERROR:" ], [ "1,2,3,9", "020", "999", "041-989", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "041-989", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "990-991", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "990-991", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "200", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "300", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "400", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "405", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "410", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "415", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "420", "990-991", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "450", "990-991", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "990-991", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "990-991", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "990-991", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "990-991", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "990-991", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "990-991", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "990-991", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "990-991", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "200", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "300", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "400", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "405", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "410", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "415", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "420", "990-991", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "450", "990-991", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "990-991", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "990-991", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "990-991", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "990-991", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "990-991", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "990-991", "ERROR:" ], [ "1,2,3,9", "010", "999", "990-991", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "990-991", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "200", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "300", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "400", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "405", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "410", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "415", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "420", "990-991", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "450", "990-991", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "990-991", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "990-991", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "990-991", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "990-991", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "990-991", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "990-991", "ERROR:" ], [ "1,2,3,9", "020", "999", "990-991", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "990-991", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "992", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "992", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "992", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "200", "992", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "300", "992", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "400", "992", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "405", "992", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "410", "992", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "415", "992", "VALUE:T1NOS" ], [ "1,2,3,9", "000, 988, 999", "420", "992", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "450", "992", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "992", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "992", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "992", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "992", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "992", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "992", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "992", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "992", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "992", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "200", "992", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "300", "992", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "400", "992", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "405", "992", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "410", "992", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "415", "992", "VALUE:T1NOS(s)" ], [ "1,2,3,9", "010", "420", "992", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "450", "992", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "992", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "992", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "992", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "992", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "992", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "992", "ERROR:" ], [ "1,2,3,9", "010", "999", "992", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "992", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "992", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "200", "992", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "300", "992", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "400", "992", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "405", "992", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "410", "992", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "415", "992", "VALUE:T1NOS(m)" ], [ "1,2,3,9", "020", "420", "992", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "450", "992", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "992", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "992", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "992", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "992", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "992", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "992", "ERROR:" ], [ "1,2,3,9", "020", "999", "992", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "992", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "993-994", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "993-994", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "993-994", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "200", "993-994", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "300", "993-994", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "400", "993-994", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "405", "993-994", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "410", "993-994", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "415", "993-994", "VALUE:T1NOS" ], [ "1,2,3,9", "000, 988, 999", "420", "993-994", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "450", "993-994", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "993-994", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "993-994", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "993-994", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "993-994", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "993-994", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "993-994", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "993-994", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "993-994", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "993-994", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "200", "993-994", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "300", "993-994", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "400", "993-994", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "405", "993-994", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "410", "993-994", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "415", "993-994", "VALUE:T1NOS(s)" ], [ "1,2,3,9", "010", "420", "993-994", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "450", "993-994", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "993-994", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "993-994", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "993-994", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "993-994", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "993-994", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "993-994", "ERROR:" ], [ "1,2,3,9", "010", "999", "993-994", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "993-994", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "993-994", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "200", "993-994", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "300", "993-994", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "400", "993-994", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "405", "993-994", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "410", "993-994", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "415", "993-994", "VALUE:T1NOS(m)" ], [ "1,2,3,9", "020", "420", "993-994", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "450", "993-994", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "993-994", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "993-994", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "993-994", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "993-994", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "993-994", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "993-994", "ERROR:" ], [ "1,2,3,9", "020", "999", "993-994", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "993-994", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "995", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "995", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "995", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "200", "995", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "300", "995", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "400", "995", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "405", "995", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "410", "995", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "415", "995", "VALUE:T1NOS" ], [ "1,2,3,9", "000, 988, 999", "420", "995", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "450", "995", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "995", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "995", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "995", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "995", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "995", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "995", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "995", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "995", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "995", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "200", "995", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "300", "995", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "400", "995", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "405", "995", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "410", "995", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "415", "995", "VALUE:T1NOS(s)" ], [ "1,2,3,9", "010", "420", "995", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "450", "995", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "995", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "995", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "995", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "995", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "995", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "995", "ERROR:" ], [ "1,2,3,9", "010", "999", "995", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "995", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "995", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "200", "995", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "300", "995", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "400", "995", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "405", "995", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "410", "995", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "415", "995", "VALUE:T1NOS(m)" ], [ "1,2,3,9", "020", "420", "995", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "450", "995", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "995", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "995", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "995", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "995", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "995", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "995", "ERROR:" ], [ "1,2,3,9", "020", "999", "995", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "995", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "996", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "996", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "200", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "300", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "400", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "405", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "410", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "415", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "420", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "450", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "996", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "996", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "996", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "996", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "996", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "996", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "996", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "200", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "300", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "400", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "405", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "410", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "415", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "420", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "450", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "996", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "996", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "996", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "996", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "996", "ERROR:" ], [ "1,2,3,9", "010", "999", "996", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "996", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "200", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "300", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "400", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "405", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "410", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "415", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "420", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "450", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "996", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "996", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "996", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "996", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "996", "ERROR:" ], [ "1,2,3,9", "020", "999", "996", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "996", "ERROR:" ], [ "1,2,3,9", "001, 002", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,560,600,620,650,700,720,730,800,810,815,950,999", "999", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "000", "999", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "100", "999", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "200", "999", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "300", "999", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "400", "999", "VALUE:TX" ], [ "1,2,3,9", "000, 988, 999", "405", "999", "VALUE:T1a" ], [ "1,2,3,9", "000, 988, 999", "410", "999", "VALUE:T1b" ], [ "1,2,3,9", "000, 988, 999", "415", "999", "VALUE:T1NOS" ], [ "1,2,3,9", "000, 988, 999", "420", "999", "VALUE:T2" ], [ "1,2,3,9", "000, 988, 999", "450", "999", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "480", "999", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "490", "999", "VALUE:T3" ], [ "1,2,3,9", "000, 988, 999", "500", "999", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "520", "999", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "550", "999", "VALUE:T4a" ], [ "1,2,3,9", "000, 988, 999", "950", "999", "ERROR:" ], [ "1,2,3,9", "000, 988, 999", "999", "999", "VALUE:TX" ], [ "1,2,3,9", "010", "000", "999", "VALUE:TX" ], [ "1,2,3,9", "010", "100", "999", "VALUE:TX" ], [ "1,2,3,9", "010", "200", "999", "VALUE:TX" ], [ "1,2,3,9", "010", "300", "999", "VALUE:TX" ], [ "1,2,3,9", "010", "400", "999", "VALUE:TX" ], [ "1,2,3,9", "010", "405", "999", "VALUE:T1a(s)" ], [ "1,2,3,9", "010", "410", "999", "VALUE:T1b(s)" ], [ "1,2,3,9", "010", "415", "999", "VALUE:T1NOS(s)" ], [ "1,2,3,9", "010", "420", "999", "VALUE:T2(s)" ], [ "1,2,3,9", "010", "450", "999", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "480", "999", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "490", "999", "VALUE:T3(s)" ], [ "1,2,3,9", "010", "500", "999", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "520", "999", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "550", "999", "VALUE:T4a(s)" ], [ "1,2,3,9", "010", "950", "999", "ERROR:" ], [ "1,2,3,9", "010", "999", "999", "VALUE:TX" ], [ "1,2,3,9", "020", "000", "999", "VALUE:TX" ], [ "1,2,3,9", "020", "100", "999", "VALUE:TX" ], [ "1,2,3,9", "020", "200", "999", "VALUE:TX" ], [ "1,2,3,9", "020", "300", "999", "VALUE:TX" ], [ "1,2,3,9", "020", "400", "999", "VALUE:TX" ], [ "1,2,3,9", "020", "405", "999", "VALUE:T1a(m)" ], [ "1,2,3,9", "020", "410", "999", "VALUE:T1b(m)" ], [ "1,2,3,9", "020", "415", "999", "VALUE:T1NOS(m)" ], [ "1,2,3,9", "020", "420", "999", "VALUE:T2(m)" ], [ "1,2,3,9", "020", "450", "999", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "480", "999", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "490", "999", "VALUE:T3(m)" ], [ "1,2,3,9", "020", "500", "999", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "520", "999", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "550", "999", "VALUE:T4a(m)" ], [ "1,2,3,9", "020", "950", "999", "ERROR:" ], [ "1,2,3,9", "020", "999", "999", "VALUE:TX" ], [ "5,6,7,8", "000-002,010,020,988,999", "000,100,200,300,400,405,410,415,420,450,480,490,500,520,550,950,999", "999", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_ajcc6_xal.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_ajcc6_xal.json
deleted file mode 100644
index 28d6a3fc6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_ajcc6_xal.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_table_ajcc6_xal",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Table AJCC6",
- "title" : "Extension Size Table AJCC 6",
- "notes" : "**Note**: For CS Extension codes 100-360 ONLY, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.219Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "340", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "360", "000", "ERROR:" ], [ "100", "001-040", "VALUE:T1a" ], [ "200", "001-040", "VALUE:T1a" ], [ "300", "001-040", "VALUE:T1a" ], [ "310", "001-040", "VALUE:T1a" ], [ "320", "001-040", "VALUE:T1a" ], [ "330", "001-040", "VALUE:T1a" ], [ "340", "001-040", "VALUE:T1a" ], [ "350", "001-040", "VALUE:T1a" ], [ "360", "001-040", "VALUE:T1a" ], [ "100", "041-070", "VALUE:T1b" ], [ "200", "041-070", "VALUE:T1b" ], [ "300", "041-070", "VALUE:T1b" ], [ "310", "041-070", "VALUE:T1b" ], [ "320", "041-070", "VALUE:T1b" ], [ "330", "041-070", "VALUE:T1b" ], [ "340", "041-070", "VALUE:T1b" ], [ "350", "041-070", "VALUE:T1b" ], [ "360", "041-070", "VALUE:T1b" ], [ "100", "071-989", "VALUE:T2" ], [ "200", "071-989", "VALUE:T2" ], [ "300", "071-989", "VALUE:T2" ], [ "310", "071-989", "VALUE:T2" ], [ "320", "071-989", "VALUE:T2" ], [ "330", "071-989", "VALUE:T2" ], [ "340", "071-989", "VALUE:T2" ], [ "350", "071-989", "VALUE:T2" ], [ "360", "071-989", "VALUE:T2" ], [ "100", "990-991", "VALUE:T1a" ], [ "200", "990-991", "VALUE:T1a" ], [ "300", "990-991", "VALUE:T1a" ], [ "310", "990-991", "VALUE:T1a" ], [ "320", "990-991", "VALUE:T1a" ], [ "330", "990-991", "VALUE:T1a" ], [ "340", "990-991", "VALUE:T1a" ], [ "350", "990-991", "VALUE:T1a" ], [ "360", "990-991", "VALUE:T1a" ], [ "100", "992-994", "VALUE:T1a" ], [ "200", "992-994", "VALUE:T1a" ], [ "300", "992-994", "VALUE:T1a" ], [ "310", "992-994", "VALUE:T1a" ], [ "320", "992-994", "VALUE:T1b" ], [ "330", "992-994", "VALUE:T1NOS" ], [ "340", "992-994", "VALUE:T2" ], [ "350", "992-994", "VALUE:T2" ], [ "360", "992-994", "VALUE:T2" ], [ "100", "995", "VALUE:T1b" ], [ "200", "995", "VALUE:T1b" ], [ "300", "995", "VALUE:T1b" ], [ "310", "995", "VALUE:T1b" ], [ "320", "995", "VALUE:T1b" ], [ "330", "995", "VALUE:T1b" ], [ "340", "995", "VALUE:T1b" ], [ "350", "995", "VALUE:T1b" ], [ "360", "995", "VALUE:T1b" ], [ "100", "996", "VALUE:T1NOS" ], [ "200", "996", "VALUE:T1NOS" ], [ "300", "996", "VALUE:T1NOS" ], [ "310", "996", "VALUE:T1a" ], [ "320", "996", "VALUE:T1b" ], [ "330", "996", "VALUE:T1NOS" ], [ "340", "996", "VALUE:T2" ], [ "350", "996", "VALUE:T2" ], [ "360", "996", "VALUE:T2" ], [ "100", "997-998", "VALUE:T2" ], [ "200", "997-998", "VALUE:T2" ], [ "300", "997-998", "VALUE:T2" ], [ "310", "997-998", "VALUE:T1a" ], [ "320", "997-998", "VALUE:T1b" ], [ "330", "997-998", "VALUE:T1NOS" ], [ "340", "997-998", "VALUE:T2" ], [ "350", "997-998", "VALUE:T2" ], [ "360", "997-998", "VALUE:T2" ], [ "100", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "310", "999", "VALUE:T1a" ], [ "320", "999", "VALUE:T1b" ], [ "330", "999", "VALUE:T1NOS" ], [ "340", "999", "VALUE:T2" ], [ "350", "999", "VALUE:T2" ], [ "360", "999", "VALUE:T2" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_ajcc7_xek.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_ajcc7_xek.json
deleted file mode 100644
index 006210a63..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_ajcc7_xek.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_table_ajcc7_xek",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Table AJCC7",
- "title" : "Extension Size Table AJCC 7",
- "notes" : "**Note**: For CS Extension codes 100-360 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.268Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "330", "000", "ERROR:" ], [ "340", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "360", "000", "ERROR:" ], [ "100", "001-040", "VALUE:T1a" ], [ "200", "001-040", "VALUE:T1a" ], [ "300", "001-040", "VALUE:T1a" ], [ "310", "001-040", "VALUE:T1a" ], [ "320", "001-040", "VALUE:T1a" ], [ "330", "001-040", "VALUE:T1a" ], [ "340", "001-040", "VALUE:T1a" ], [ "350", "001-040", "VALUE:T1a" ], [ "360", "001-040", "VALUE:T1a" ], [ "100", "041-070", "VALUE:T1b" ], [ "200", "041-070", "VALUE:T1b" ], [ "300", "041-070", "VALUE:T1b" ], [ "310", "041-070", "VALUE:T1b" ], [ "320", "041-070", "VALUE:T1b" ], [ "330", "041-070", "VALUE:T1b" ], [ "340", "041-070", "VALUE:T1b" ], [ "350", "041-070", "VALUE:T1b" ], [ "360", "041-070", "VALUE:T1b" ], [ "100", "071-100", "VALUE:T2a" ], [ "200", "071-100", "VALUE:T2a" ], [ "300", "071-100", "VALUE:T2a" ], [ "310", "071-100", "VALUE:T2a" ], [ "320", "071-100", "VALUE:T2a" ], [ "330", "071-100", "VALUE:T2a" ], [ "340", "071-100", "VALUE:T2a" ], [ "350", "071-100", "VALUE:T2a" ], [ "360", "071-100", "VALUE:T2a" ], [ "100", "101-989", "VALUE:T2b" ], [ "200", "101-989", "VALUE:T2b" ], [ "300", "101-989", "VALUE:T2b" ], [ "310", "101-989", "VALUE:T2b" ], [ "320", "101-989", "VALUE:T2b" ], [ "330", "101-989", "VALUE:T2b" ], [ "340", "101-989", "VALUE:T2b" ], [ "350", "101-989", "VALUE:T2b" ], [ "360", "101-989", "VALUE:T2b" ], [ "100", "990-991", "VALUE:T1a" ], [ "200", "990-991", "VALUE:T1a" ], [ "300", "990-991", "VALUE:T1a" ], [ "310", "990-991", "VALUE:T1a" ], [ "320", "990-991", "VALUE:T1a" ], [ "330", "990-991", "VALUE:T1a" ], [ "340", "990-991", "VALUE:T1a" ], [ "350", "990-991", "VALUE:T1a" ], [ "360", "990-991", "VALUE:T1a" ], [ "100", "992-994", "VALUE:T1a" ], [ "200", "992-994", "VALUE:T1a" ], [ "300", "992-994", "VALUE:T1a" ], [ "310", "992-994", "VALUE:T1a" ], [ "320", "992-994", "VALUE:T1b" ], [ "330", "992-994", "VALUE:T1NOS" ], [ "340", "992-994", "VALUE:T2a" ], [ "350", "992-994", "VALUE:T2b" ], [ "360", "992-994", "VALUE:T2NOS" ], [ "100", "995", "VALUE:T1b" ], [ "200", "995", "VALUE:T1b" ], [ "300", "995", "VALUE:T1b" ], [ "310", "995", "VALUE:T1b" ], [ "320", "995", "VALUE:T1b" ], [ "330", "995", "VALUE:T1b" ], [ "340", "995", "VALUE:T1b" ], [ "350", "995", "VALUE:T1b" ], [ "360", "995", "VALUE:T1b" ], [ "100", "996", "VALUE:T1NOS" ], [ "200", "996", "VALUE:T1NOS" ], [ "300", "996", "VALUE:T1NOS" ], [ "310", "996", "VALUE:T1a" ], [ "320", "996", "VALUE:T1b" ], [ "330", "996", "VALUE:T1NOS" ], [ "340", "996", "VALUE:T2a" ], [ "350", "996", "VALUE:T2b" ], [ "360", "996", "VALUE:T2NOS" ], [ "100", "997", "VALUE:T2NOS" ], [ "200", "997", "VALUE:T2NOS" ], [ "300", "997", "VALUE:T2NOS" ], [ "310", "997", "VALUE:T1a" ], [ "320", "997", "VALUE:T1b" ], [ "330", "997", "VALUE:T1NOS" ], [ "340", "997", "VALUE:T2a" ], [ "350", "997", "VALUE:T2b" ], [ "360", "997", "VALUE:T2NOS" ], [ "100", "998", "VALUE:T2b" ], [ "200", "998", "VALUE:T2b" ], [ "300", "998", "VALUE:T2b" ], [ "310", "998", "VALUE:T1a" ], [ "320", "998", "VALUE:T1b" ], [ "330", "998", "VALUE:T1NOS " ], [ "340", "998", "VALUE:T2a" ], [ "350", "998", "VALUE:T2b" ], [ "360", "998", "VALUE:T2NOS" ], [ "100", "999", "VALUE:TX" ], [ "200", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ], [ "310", "999", "VALUE:T1a" ], [ "320", "999", "VALUE:T1b" ], [ "330", "999", "VALUE:T1NOS" ], [ "340", "999", "VALUE:T2a" ], [ "350", "999", "VALUE:T2b" ], [ "360", "999", "VALUE:T2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_csv1_xas.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_csv1_xas.json
deleted file mode 100644
index 363ff32c5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_csv1_xas.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_table_csv1_xas",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Table Csv1",
- "title" : "Extension Size Table CSv1",
- "notes" : "**Note**: For the obsolete CS Extension codes 100 and 300 ONLY, the T category for AJCC 6 staging for cases collected in CSv1 and not updated to CSv2 codes is assigned based on the value of CS Extension and the obsolete CS Tumor Size code as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.327Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "100", "001-005", "VALUE:T1" ], [ "300", "001-005", "VALUE:T1" ], [ "100", "006-980", "VALUE:T2" ], [ "300", "006-980", "VALUE:T2" ], [ "100", "981-989", "ERROR:" ], [ "300", "981-989", "ERROR:" ], [ "100", "990", "VALUE:T1" ], [ "300", "990", "VALUE:T1" ], [ "100", "991-995", "VALUE:T2" ], [ "300", "991-995", "VALUE:T2" ], [ "100", "999", "VALUE:TX" ], [ "300", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_csv2_xez.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_csv2_xez.json
deleted file mode 100644
index 90755e1fb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_table_csv2_xez.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_table_csv2_xez",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size Table Csv2",
- "title" : "Extension Size Table CSv2",
- "notes" : "**Note**: For CS Extension codes 110- 150 and 350 ONLY, the T category for AJCC staging is assigned based on the value of CS Extension and CS Site-Specific Factor 1, Tumor Size, as shown in this table. The CS Tumor Size table for this schema is obsolete in CS Version 2, and the collection of tumor size value moved to CS Site-Specific Factor 1, Tumor Size.",
- "last_modified" : "2015-05-27T16:19:19.376Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1 Tumor Size 000",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "000", "ERROR:", "ERROR:" ], [ "120", "000", "ERROR:", "ERROR:" ], [ "140", "000", "ERROR:", "ERROR:" ], [ "150", "000", "ERROR:", "ERROR:" ], [ "350", "000", "ERROR:", "ERROR:" ], [ "110", "001-050", "VALUE:T1", "VALUE:T1" ], [ "120", "001-050", "VALUE:T1", "VALUE:T1" ], [ "140", "001-050", "VALUE:T1", "VALUE:T1" ], [ "150", "001-050", "VALUE:T1", "VALUE:T1" ], [ "350", "001-050", "VALUE:T1", "VALUE:T1" ], [ "110", "051-980", "VALUE:T2", "VALUE:T2" ], [ "120", "051-980", "VALUE:T2", "VALUE:T2" ], [ "140", "051-980", "VALUE:T2", "VALUE:T2" ], [ "150", "051-980", "VALUE:T2", "VALUE:T2" ], [ "350", "051-980", "VALUE:T2", "VALUE:T2" ], [ "110", "988", "ERROR:", "ERROR:" ], [ "120", "988", "ERROR:", "ERROR:" ], [ "140", "988", "ERROR:", "ERROR:" ], [ "150", "988", "ERROR:", "ERROR:" ], [ "350", "988", "ERROR:", "ERROR:" ], [ "110", "990-991", "VALUE:T1", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1", "VALUE:T1" ], [ "140", "990-991", "VALUE:T1", "VALUE:T1" ], [ "150", "990-991", "VALUE:T1", "VALUE:T1" ], [ "350", "990-991", "VALUE:T1", "VALUE:T1" ], [ "110", "992", "VALUE:T2", "VALUE:T2" ], [ "120", "992", "VALUE:T2", "VALUE:T2" ], [ "140", "992", "VALUE:T2", "VALUE:T2" ], [ "150", "992", "VALUE:T2", "VALUE:T2" ], [ "350", "992", "VALUE:T2", "VALUE:T2" ], [ "110", "999", "VALUE:TX", "VALUE:TX" ], [ "120", "999", "VALUE:TX", "VALUE:TX" ], [ "140", "999", "VALUE:T1", "VALUE:T1" ], [ "150", "999", "VALUE:T2", "VALUE:T2" ], [ "350", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xaa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xaa.json
deleted file mode 100644
index 0f59b2714..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xaa.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xaa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-400 ONLY, the T category is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.421Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "110", "000", "ERROR:", "ERROR:" ], [ "120", "000", "ERROR:", "ERROR:" ], [ "160", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "310", "000", "ERROR:", "ERROR:" ], [ "320", "000", "ERROR:", "ERROR:" ], [ "330", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "110", "001-020", "VALUE:T1", "VALUE:T1" ], [ "120", "001-020", "VALUE:T1", "VALUE:T1" ], [ "160", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1", "VALUE:T1" ], [ "320", "001-020", "VALUE:T1", "VALUE:T1" ], [ "330", "001-020", "VALUE:T1", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2", "VALUE:T2" ], [ "110", "021-050", "VALUE:T2", "VALUE:T2" ], [ "120", "021-050", "VALUE:T2", "VALUE:T2" ], [ "160", "021-050", "VALUE:T2", "VALUE:T2" ], [ "200", "021-050", "VALUE:T2", "VALUE:T2" ], [ "300", "021-050", "VALUE:T2", "VALUE:T2" ], [ "310", "021-050", "VALUE:T2", "VALUE:T2" ], [ "320", "021-050", "VALUE:T2", "VALUE:T2" ], [ "330", "021-050", "VALUE:T2", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2", "VALUE:T2" ], [ "100", "051-989", "VALUE:T3", "VALUE:T3" ], [ "110", "051-989", "VALUE:T3", "VALUE:T3" ], [ "120", "051-989", "VALUE:T3", "VALUE:T3" ], [ "160", "051-989", "VALUE:T3", "VALUE:T3" ], [ "200", "051-989", "VALUE:T3", "VALUE:T3" ], [ "300", "051-989", "VALUE:T3", "VALUE:T3" ], [ "310", "051-989", "VALUE:T3", "VALUE:T3" ], [ "320", "051-989", "VALUE:T3", "VALUE:T3" ], [ "330", "051-989", "VALUE:T3", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "110", "990-991", "VALUE:T1", "VALUE:T1" ], [ "120", "990-991", "VALUE:T1", "VALUE:T1" ], [ "160", "990-991", "VALUE:T1", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "310", "990-991", "VALUE:T1", "VALUE:T1" ], [ "320", "990-991", "VALUE:T1", "VALUE:T1" ], [ "330", "990-991", "VALUE:T1", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "110", "992", "VALUE:T1", "VALUE:T1" ], [ "120", "992", "VALUE:T1", "VALUE:T1" ], [ "160", "992", "VALUE:T1", "VALUE:T1" ], [ "200", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "310", "992", "VALUE:T1", "VALUE:T1" ], [ "320", "992", "VALUE:T2", "VALUE:T2" ], [ "330", "992", "VALUE:T3", "VALUE:T3" ], [ "400", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "110", "993-994", "VALUE:T2", "VALUE:T2" ], [ "120", "993-994", "VALUE:T2", "VALUE:T2" ], [ "160", "993-994", "VALUE:T2", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "310", "993-994", "VALUE:T2", "VALUE:T2" ], [ "320", "993-994", "VALUE:T2", "VALUE:T2" ], [ "330", "993-994", "VALUE:T2", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T2", "VALUE:T2" ], [ "110", "995", "VALUE:T2", "VALUE:T2" ], [ "120", "995", "VALUE:T2", "VALUE:T2" ], [ "160", "995", "VALUE:T2", "VALUE:T2" ], [ "200", "995", "VALUE:T2", "VALUE:T2" ], [ "300", "995", "VALUE:T2", "VALUE:T2" ], [ "310", "995", "VALUE:T1", "VALUE:T1" ], [ "320", "995", "VALUE:T2", "VALUE:T2" ], [ "330", "995", "VALUE:T3", "VALUE:T3" ], [ "400", "995", "VALUE:T2", "VALUE:T2" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "110", "996", "VALUE:T3", "VALUE:T3" ], [ "120", "996", "VALUE:T3", "VALUE:T3" ], [ "160", "996", "VALUE:T3", "VALUE:T3" ], [ "200", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "310", "996", "VALUE:T1", "VALUE:T1" ], [ "320", "996", "VALUE:T2", "VALUE:T2" ], [ "330", "996", "VALUE:T3", "VALUE:T3" ], [ "400", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "110", "997-998", "ERROR:", "ERROR:" ], [ "120", "997-998", "ERROR:", "ERROR:" ], [ "160", "997-998", "ERROR:", "ERROR:" ], [ "200", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "310", "997-998", "ERROR:", "ERROR:" ], [ "320", "997-998", "ERROR:", "ERROR:" ], [ "330", "997-998", "ERROR:", "ERROR:" ], [ "400", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "110", "999", "VALUE:TX", "VALUE:TX" ], [ "120", "999", "VALUE:TX", "VALUE:TX" ], [ "160", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "310", "999", "VALUE:T1", "VALUE:T1" ], [ "320", "999", "VALUE:T2", "VALUE:T2" ], [ "330", "999", "VALUE:T3", "VALUE:T3" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xab.json
deleted file mode 100644
index 324ddfeec..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xab.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-545 ONLY, the T category is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.481Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "530", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "545", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "530", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "545", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "530", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "545", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "530", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "545", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "530", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "545", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "200", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "400", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "530", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "545", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T3", "VALUE:T3" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "530", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "545", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "200", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "400", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "530", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "545", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "200", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "400", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "530", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "545", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "200", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "400", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "530", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "545", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "530", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ], [ "545", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xac.json
deleted file mode 100644
index 565ca32ca..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xac.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100 through 605 ONLY, the T category is assigned based on value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.539Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "530", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "545", "000", "ERROR:", "ERROR:" ], [ "550", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "603", "000", "ERROR:", "ERROR:" ], [ "605", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "530", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "545", "001-020", "VALUE:T1", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1", "VALUE:T1" ], [ "603", "001-020", "VALUE:T1", "VALUE:T1" ], [ "605", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "530", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "545", "021-040", "VALUE:T2", "VALUE:T2" ], [ "550", "021-040", "VALUE:T2", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2", "VALUE:T2" ], [ "603", "021-040", "VALUE:T2", "VALUE:T2" ], [ "605", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "530", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "545", "041-989", "VALUE:T3", "VALUE:T3" ], [ "550", "041-989", "VALUE:T3", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3", "VALUE:T3" ], [ "603", "041-989", "VALUE:T3", "VALUE:T3" ], [ "605", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "530", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "545", "990-991", "VALUE:T1", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1", "VALUE:T1" ], [ "603", "990-991", "VALUE:T1", "VALUE:T1" ], [ "605", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "400", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "530", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "545", "992", "VALUE:T1", "VALUE:T1" ], [ "550", "992", "VALUE:T1", "VALUE:T1" ], [ "600", "992", "VALUE:T1", "VALUE:T1" ], [ "603", "992", "VALUE:T1", "VALUE:T1" ], [ "605", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T3", "VALUE:T3" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "530", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "545", "993-994", "VALUE:T2", "VALUE:T2" ], [ "550", "993-994", "VALUE:T2", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2", "VALUE:T2" ], [ "603", "993-994", "VALUE:T2", "VALUE:T2" ], [ "605", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "400", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "530", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "545", "995", "VALUE:T3", "VALUE:T3" ], [ "550", "995", "VALUE:T3", "VALUE:T3" ], [ "600", "995", "VALUE:T3", "VALUE:T3" ], [ "603", "995", "VALUE:T3", "VALUE:T3" ], [ "605", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "400", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "530", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "545", "996", "VALUE:T3", "VALUE:T3" ], [ "550", "996", "VALUE:T3", "VALUE:T3" ], [ "600", "996", "VALUE:T3", "VALUE:T3" ], [ "603", "996", "VALUE:T3", "VALUE:T3" ], [ "605", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "400", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "530", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "545", "997-998", "ERROR:", "ERROR:" ], [ "550", "997-998", "ERROR:", "ERROR:" ], [ "600", "997-998", "ERROR:", "ERROR:" ], [ "603", "997-998", "ERROR:", "ERROR:" ], [ "605", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "530", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ], [ "545", "999", "VALUE:TX", "VALUE:TX" ], [ "550", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "603", "999", "VALUE:TX", "VALUE:TX" ], [ "605", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xad.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xad.json
deleted file mode 100644
index f87a79b36..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xad.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xad",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-605 ONLY , the T category is assigned based on value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.605Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "605", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1", "VALUE:T1" ], [ "605", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2", "VALUE:T2" ], [ "605", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3", "VALUE:T3" ], [ "605", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1", "VALUE:T1" ], [ "605", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "200", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "600", "992", "VALUE:T1", "VALUE:T1" ], [ "605", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T2", "VALUE:T2" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T2", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2", "VALUE:T2" ], [ "605", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "200", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "600", "995", "VALUE:T3", "VALUE:T3" ], [ "605", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "200", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "600", "996", "VALUE:T3", "VALUE:T3" ], [ "605", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "200", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "600", "997-998", "ERROR:", "ERROR:" ], [ "605", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "605", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xae.json
deleted file mode 100644
index 809ed4818..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xae.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-535 ONLY, the T category is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.662Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "400", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T2", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "400", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "400", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "400", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xaf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xaf.json
deleted file mode 100644
index 25e43cc72..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xaf.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xaf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100, 200, and 300 ONLY, the T category is assigned based on the value of CS Tumor Size and CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.719Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "100", "001-015", "VALUE:T1", "VALUE:T1" ], [ "200", "001-015", "VALUE:T1", "VALUE:T1" ], [ "300", "001-015", "VALUE:T1", "VALUE:T1" ], [ "100", "016-989", "VALUE:T2", "VALUE:T2" ], [ "200", "016-989", "VALUE:T2", "VALUE:T2" ], [ "300", "016-989", "VALUE:T2", "VALUE:T2" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T2", "VALUE:T2" ], [ "200", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T2", "VALUE:T2" ], [ "100", "993-995", "VALUE:T2", "VALUE:T2" ], [ "200", "993-995", "VALUE:T2", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2", "VALUE:T2" ], [ "100", "996-998", "ERROR:", "ERROR:" ], [ "200", "996-998", "ERROR:", "ERROR:" ], [ "300", "996-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:T1", "VALUE:T1" ], [ "300", "999", "VALUE:T2", "VALUE:T2" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xag.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xag.json
deleted file mode 100644
index 57e2cb79b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xag.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xag",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-620 ONLY, the T category is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.774Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "510", "000", "ERROR:", "ERROR:" ], [ "525", "000", "ERROR:", "ERROR:" ], [ "550", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "603", "000", "ERROR:", "ERROR:" ], [ "605", "000", "ERROR:", "ERROR:" ], [ "620", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "510", "001-020", "VALUE:T1", "VALUE:T1" ], [ "525", "001-020", "VALUE:T1", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1", "VALUE:T1" ], [ "603", "001-020", "VALUE:T1", "VALUE:T1" ], [ "605", "001-020", "VALUE:T1", "VALUE:T1" ], [ "620", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "510", "021-040", "VALUE:T2", "VALUE:T2" ], [ "525", "021-040", "VALUE:T2", "VALUE:T2" ], [ "550", "021-040", "VALUE:T2", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2", "VALUE:T2" ], [ "603", "021-040", "VALUE:T2", "VALUE:T2" ], [ "605", "021-040", "VALUE:T2", "VALUE:T2" ], [ "620", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "510", "041-989", "VALUE:T3", "VALUE:T3" ], [ "525", "041-989", "VALUE:T3", "VALUE:T3" ], [ "550", "041-989", "VALUE:T3", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3", "VALUE:T3" ], [ "603", "041-989", "VALUE:T3", "VALUE:T3" ], [ "605", "041-989", "VALUE:T3", "VALUE:T3" ], [ "620", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "510", "990-991", "VALUE:T1", "VALUE:T1" ], [ "525", "990-991", "VALUE:T1", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1", "VALUE:T1" ], [ "603", "990-991", "VALUE:T1", "VALUE:T1" ], [ "605", "990-991", "VALUE:T1", "VALUE:T1" ], [ "620", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "200", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "510", "992", "VALUE:T1", "VALUE:T1" ], [ "525", "992", "VALUE:T1", "VALUE:T1" ], [ "550", "992", "VALUE:T1", "VALUE:T1" ], [ "600", "992", "VALUE:T1", "VALUE:T1" ], [ "603", "992", "VALUE:T1", "VALUE:T1" ], [ "605", "992", "VALUE:T1", "VALUE:T1" ], [ "620", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T3", "VALUE:T3" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "510", "993-994", "VALUE:T2", "VALUE:T2" ], [ "525", "993-994", "VALUE:T2", "VALUE:T2" ], [ "550", "993-994", "VALUE:T2", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2", "VALUE:T2" ], [ "603", "993-994", "VALUE:T2", "VALUE:T2" ], [ "605", "993-994", "VALUE:T2", "VALUE:T2" ], [ "620", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "200", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "510", "995", "VALUE:T3", "VALUE:T3" ], [ "525", "995", "VALUE:T3", "VALUE:T3" ], [ "550", "995", "VALUE:T3", "VALUE:T3" ], [ "600", "995", "VALUE:T3", "VALUE:T3" ], [ "603", "995", "VALUE:T3", "VALUE:T3" ], [ "605", "995", "VALUE:T3", "VALUE:T3" ], [ "620", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "200", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "510", "996", "VALUE:T3", "VALUE:T3" ], [ "525", "996", "VALUE:T3", "VALUE:T3" ], [ "550", "996", "VALUE:T3", "VALUE:T3" ], [ "600", "996", "VALUE:T3", "VALUE:T3" ], [ "603", "996", "VALUE:T3", "VALUE:T3" ], [ "605", "996", "VALUE:T3", "VALUE:T3" ], [ "620", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "200", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "510", "997-998", "ERROR:", "ERROR:" ], [ "525", "997-998", "ERROR:", "ERROR:" ], [ "550", "997-998", "ERROR:", "ERROR:" ], [ "600", "997-998", "ERROR:", "ERROR:" ], [ "603", "997-998", "ERROR:", "ERROR:" ], [ "605", "997-998", "ERROR:", "ERROR:" ], [ "620", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "510", "999", "VALUE:TX", "VALUE:TX" ], [ "525", "999", "VALUE:TX", "VALUE:TX" ], [ "550", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "603", "999", "VALUE:TX", "VALUE:TX" ], [ "605", "999", "VALUE:TX", "VALUE:TX" ], [ "620", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xar.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xar.json
deleted file mode 100644
index 96049d885..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xar.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xar",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-140, 200, and 300 ONLY, the T category for AJCC 6 and AJCC 7 staging is assigned based on the value of CS Tumor Size, as shown in the this table. A CS Tumor Size code takes precedence over a CS Extension \"stated as T\" code; however, if CS Tumor Size is coded as unknown, the T category may be assigned based on \"stated as T\" recorded in CS Extension.",
- "last_modified" : "2015-05-27T16:19:19.840Z",
- "definition" : [ {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "100", "ERROR:", "ERROR:" ], [ "001", "100", "VALUE:T1mi", "VALUE:T1mi" ], [ "002-005", "100", "VALUE:T1a", "VALUE:T1a" ], [ "006-010", "100", "VALUE:T1b", "VALUE:T1b" ], [ "011-020", "100", "VALUE:T1c", "VALUE:T1c" ], [ "021-050", "100", "VALUE:T2", "VALUE:T2" ], [ "051-989", "100", "VALUE:T3", "VALUE:T3" ], [ "990", "100", "VALUE:T1mi", "VALUE:T1mi" ], [ "991", "100", "VALUE:T1b", "VALUE:T1b" ], [ "992", "100", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "993-995", "100", "VALUE:T2", "VALUE:T2" ], [ "996", "100", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "997", "100", "ERROR:", "ERROR:" ], [ "998", "100", "VALUE:T3", "VALUE:T3" ], [ "999", "100", "VALUE:TX", "VALUE:TX" ], [ "000", "110", "ERROR:", "ERROR:" ], [ "001", "110", "VALUE:T1mi", "VALUE:T1mi" ], [ "002-005", "110", "VALUE:T1a", "VALUE:T1a" ], [ "006-010", "110", "VALUE:T1b", "VALUE:T1b" ], [ "011-020", "110", "VALUE:T1c", "VALUE:T1c" ], [ "021-050", "110", "VALUE:T2", "VALUE:T2" ], [ "051-989", "110", "VALUE:T3", "VALUE:T3" ], [ "990", "110", "VALUE:T1mi", "VALUE:T1mi" ], [ "991", "110", "VALUE:T1b", "VALUE:T1b" ], [ "992", "110", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "993-995", "110", "VALUE:T2", "VALUE:T2" ], [ "996", "110", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "997", "110", "ERROR:", "ERROR:" ], [ "998", "110", "VALUE:T3", "VALUE:T3" ], [ "999", "110", "VALUE:T1mi", "VALUE:T1mi" ], [ "000", "120", "ERROR:", "ERROR:" ], [ "001", "120", "VALUE:T1mi", "VALUE:T1mi" ], [ "002-005", "120", "VALUE:T1a", "VALUE:T1a" ], [ "006-010", "120", "VALUE:T1b", "VALUE:T1b" ], [ "011-020", "120", "VALUE:T1c", "VALUE:T1c" ], [ "021-050", "120", "VALUE:T2", "VALUE:T2" ], [ "051-989", "120", "VALUE:T3", "VALUE:T3" ], [ "990", "120", "VALUE:T1mi", "VALUE:T1mi" ], [ "991", "120", "VALUE:T1b", "VALUE:T1b" ], [ "992", "120", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "993-995", "120", "VALUE:T2", "VALUE:T2" ], [ "996", "120", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "997", "120", "ERROR:", "ERROR:" ], [ "998", "120", "VALUE:T3", "VALUE:T3" ], [ "999", "120", "VALUE:T1a", "VALUE:T1a" ], [ "000", "130", "ERROR:", "ERROR:" ], [ "001", "130", "VALUE:T1mi", "VALUE:T1mi" ], [ "002-005", "130", "VALUE:T1a", "VALUE:T1a" ], [ "006-010", "130", "VALUE:T1b", "VALUE:T1b" ], [ "011-020", "130", "VALUE:T1c", "VALUE:T1c" ], [ "021-050", "130", "VALUE:T2", "VALUE:T2" ], [ "051-989", "130", "VALUE:T3", "VALUE:T3" ], [ "990", "130", "VALUE:T1mi", "VALUE:T1mi" ], [ "991", "130", "VALUE:T1b", "VALUE:T1b" ], [ "992", "130", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "993-995", "130", "VALUE:T2", "VALUE:T2" ], [ "996", "130", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "997", "130", "ERROR:", "ERROR:" ], [ "998", "130", "VALUE:T3", "VALUE:T3" ], [ "999", "130", "VALUE:T1b", "VALUE:T1b" ], [ "000", "140", "ERROR:", "ERROR:" ], [ "001", "140", "VALUE:T1mi", "VALUE:T1mi" ], [ "002-005", "140", "VALUE:T1a", "VALUE:T1a" ], [ "006-010", "140", "VALUE:T1b", "VALUE:T1b" ], [ "011-020", "140", "VALUE:T1c", "VALUE:T1c" ], [ "021-050", "140", "VALUE:T2", "VALUE:T2" ], [ "051-989", "140", "VALUE:T3", "VALUE:T3" ], [ "990", "140", "VALUE:T1mi", "VALUE:T1mi" ], [ "991", "140", "VALUE:T1b", "VALUE:T1b" ], [ "992", "140", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "993-995", "140", "VALUE:T2", "VALUE:T2" ], [ "996", "140", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "997", "140", "ERROR:", "ERROR:" ], [ "998", "140", "VALUE:T3", "VALUE:T3" ], [ "999", "140", "VALUE:T1c", "VALUE:T1c" ], [ "000", "200", "ERROR:", "ERROR:" ], [ "001", "200", "VALUE:T1mi", "VALUE:T1mi" ], [ "002-005", "200", "VALUE:T1a", "VALUE:T1a" ], [ "006-010", "200", "VALUE:T1b", "VALUE:T1b" ], [ "011-020", "200", "VALUE:T1c", "VALUE:T1c" ], [ "021-050", "200", "VALUE:T2", "VALUE:T2" ], [ "051-989", "200", "VALUE:T3", "VALUE:T3" ], [ "990", "200", "VALUE:T1mi", "VALUE:T1mi" ], [ "991", "200", "VALUE:T1b", "VALUE:T1b" ], [ "992", "200", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "993-995", "200", "VALUE:T2", "VALUE:T2" ], [ "996", "200", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "997", "200", "ERROR:", "ERROR:" ], [ "998", "200", "VALUE:T3", "VALUE:T3" ], [ "999", "200", "VALUE:TX", "VALUE:TX" ], [ "000", "300", "ERROR:", "ERROR:" ], [ "001", "300", "VALUE:T1mi", "VALUE:T1mi" ], [ "002-005", "300", "VALUE:T1a", "VALUE:T1a" ], [ "006-010", "300", "VALUE:T1b", "VALUE:T1b" ], [ "011-020", "300", "VALUE:T1c", "VALUE:T1c" ], [ "021-050", "300", "VALUE:T2", "VALUE:T2" ], [ "051-989", "300", "VALUE:T3", "VALUE:T3" ], [ "990", "300", "VALUE:T1mi", "VALUE:T1mi" ], [ "991", "300", "VALUE:T1b", "VALUE:T1b" ], [ "992", "300", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "993-995", "300", "VALUE:T2", "VALUE:T2" ], [ "996", "300", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "997", "300", "ERROR:", "ERROR:" ], [ "998", "300", "VALUE:T3", "VALUE:T3" ], [ "999", "300", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xbq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xbq.json
deleted file mode 100644
index bcfb1d7b4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xbq.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xbq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For Extension codes 100, 200, 300, 305, 400, 420, 450, and 500 ONLY, the T category is assigned based on the value of CS Tumor Size and CS Extension as shown here.",
- "last_modified" : "2015-05-27T16:19:19.898Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "305", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "420", "000", "ERROR:", "ERROR:" ], [ "450", "000", "ERROR:", "ERROR:" ], [ "455", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T2", "VALUE:T2" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1", "VALUE:T1" ], [ "400", "001-020", "VALUE:T2", "VALUE:T2" ], [ "420", "001-020", "VALUE:T1", "VALUE:T1" ], [ "450", "001-020", "VALUE:T2", "VALUE:T2" ], [ "455", "001-020", "VALUE:T2", "VALUE:T2" ], [ "500", "001-020", "VALUE:T2", "VALUE:T2" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "305", "021-040", "VALUE:T2", "VALUE:T2" ], [ "400", "021-040", "VALUE:T2", "VALUE:T2" ], [ "420", "021-040", "VALUE:T2", "VALUE:T2" ], [ "450", "021-040", "VALUE:T2", "VALUE:T2" ], [ "455", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "305", "041-989", "VALUE:T3", "VALUE:T3" ], [ "400", "041-989", "VALUE:T3", "VALUE:T3" ], [ "420", "041-989", "VALUE:T3", "VALUE:T3" ], [ "450", "041-989", "VALUE:T3", "VALUE:T3" ], [ "455", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-992", "VALUE:T1", "VALUE:T1" ], [ "200", "990-992", "VALUE:T2", "VALUE:T2" ], [ "300", "990-992", "VALUE:T1", "VALUE:T1" ], [ "305", "990-992", "VALUE:T1", "VALUE:T1" ], [ "400", "990-992", "VALUE:T2", "VALUE:T2" ], [ "420", "990-992", "VALUE:T1", "VALUE:T1" ], [ "450", "990-992", "VALUE:T2", "VALUE:T2" ], [ "455", "990-992", "VALUE:T2", "VALUE:T2" ], [ "500", "990-992", "VALUE:T2", "VALUE:T2" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "305", "993-994", "VALUE:T2", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2", "VALUE:T2" ], [ "420", "993-994", "VALUE:T2", "VALUE:T2" ], [ "450", "993-994", "VALUE:T2", "VALUE:T2" ], [ "455", "993-994", "VALUE:T2", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "200", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "305", "995", "VALUE:T3", "VALUE:T3" ], [ "400", "995", "VALUE:T3", "VALUE:T3" ], [ "420", "995", "VALUE:T3", "VALUE:T3" ], [ "450", "995", "VALUE:T3", "VALUE:T3" ], [ "455", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996-998", "ERROR:", "ERROR:" ], [ "200", "996-998", "ERROR:", "ERROR:" ], [ "300", "996-998", "ERROR:", "ERROR:" ], [ "305", "996-998", "ERROR:", "ERROR:" ], [ "400", "996-998", "ERROR:", "ERROR:" ], [ "420", "996-998", "ERROR:", "ERROR:" ], [ "450", "996-998", "ERROR:", "ERROR:" ], [ "455", "996-998", "ERROR:", "ERROR:" ], [ "500", "996-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:T2", "VALUE:T2" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "305", "999", "VALUE:T1", "VALUE:T1" ], [ "400", "999", "VALUE:T2", "VALUE:T2" ], [ "420", "999", "VALUE:TX", "VALUE:TX" ], [ "450", "999", "VALUE:T2", "VALUE:T2" ], [ "455", "999", "VALUE:T2", "VALUE:T2" ], [ "500", "999", "VALUE:T2", "VALUE:T2" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xdb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xdb.json
deleted file mode 100644
index 9012c0cae..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xdb.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xdb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100, 400, 500, 600, 610, and 620 ONLY, the T category is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.946Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "610", "000", "ERROR:", "ERROR:" ], [ "620", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "400", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1", "VALUE:T1" ], [ "610", "001-020", "VALUE:T1", "VALUE:T1" ], [ "620", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-050", "VALUE:T2", "VALUE:T2" ], [ "400", "021-050", "VALUE:T2", "VALUE:T2" ], [ "500", "021-050", "VALUE:T2", "VALUE:T2" ], [ "600", "021-050", "VALUE:T2", "VALUE:T2" ], [ "610", "021-050", "VALUE:T2", "VALUE:T2" ], [ "620", "021-050", "VALUE:T2", "VALUE:T2" ], [ "100", "051-989", "VALUE:T3", "VALUE:T3" ], [ "400", "051-989", "VALUE:T3", "VALUE:T3" ], [ "500", "051-989", "VALUE:T3", "VALUE:T3" ], [ "600", "051-989", "VALUE:T3", "VALUE:T3" ], [ "610", "051-989", "VALUE:T3", "VALUE:T3" ], [ "620", "051-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "400", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1", "VALUE:T1" ], [ "610", "990-991", "VALUE:T1", "VALUE:T1" ], [ "620", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "400", "992", "VALUE:T1", "VALUE:T1" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "600", "992", "VALUE:T1", "VALUE:T1" ], [ "610", "992", "VALUE:T2", "VALUE:T2" ], [ "620", "992", "VALUE:T3", "VALUE:T3" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "400", "993-994", "VALUE:T2", "VALUE:T2" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2", "VALUE:T2" ], [ "610", "993-994", "VALUE:T2", "VALUE:T2" ], [ "620", "993-994", "VALUE:T3", "VALUE:T3" ], [ "100", "995", "VALUE:T2", "VALUE:T2" ], [ "400", "995", "VALUE:T2", "VALUE:T2" ], [ "500", "995", "VALUE:T2", "VALUE:T2" ], [ "600", "995", "VALUE:T2", "VALUE:T2" ], [ "610", "995", "VALUE:T2", "VALUE:T2" ], [ "620", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "400", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "600", "996", "VALUE:T3", "VALUE:T3" ], [ "610", "996", "VALUE:T3", "VALUE:T3" ], [ "620", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:T1", "VALUE:T1" ], [ "610", "999", "VALUE:T2", "VALUE:T2" ], [ "620", "999", "VALUE:T3", "VALUE:T3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xde.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xde.json
deleted file mode 100644
index 40cc58ca4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xde.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_xde",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-300 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Tumor Size and CS Extension, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:19.997Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "100", "001-050", "VALUE:T1" ], [ "200", "001-050", "VALUE:T1" ], [ "250", "001-050", "VALUE:T1" ], [ "300", "001-050", "VALUE:T1" ], [ "100", "051-989", "VALUE:T2" ], [ "200", "051-989", "VALUE:T2" ], [ "250", "051-989", "VALUE:T2" ], [ "300", "051-989", "VALUE:T2" ], [ "100", "990-991", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1" ], [ "250", "990-991", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1" ], [ "100", "992-994", "VALUE:T1" ], [ "200", "992-994", "VALUE:T1" ], [ "250", "992-994", "VALUE:T1" ], [ "300", "992-994", "VALUE:T1" ], [ "100", "995", "VALUE:T1" ], [ "200", "995", "VALUE:T1" ], [ "250", "995", "VALUE:T2" ], [ "300", "995", "VALUE:T1" ], [ "100", "996", "VALUE:T2" ], [ "200", "996", "VALUE:T1" ], [ "250", "996", "VALUE:T2" ], [ "300", "996", "VALUE:T2" ], [ "100", "997-998", "ERROR:" ], [ "200", "997-998", "ERROR:" ], [ "250", "997-998", "ERROR:" ], [ "300", "997-998", "ERROR:" ], [ "100", "999", "VALUE:TX" ], [ "200", "999", "VALUE:T1" ], [ "250", "999", "VALUE:T2" ], [ "300", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xfn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xfn.json
deleted file mode 100644
index 70163e81e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xfn.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xfn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-800, the T category is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.041Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "110", "000", "ERROR:", "ERROR:" ], [ "120", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "302", "000", "ERROR:", "ERROR:" ], [ "305", "000", "ERROR:", "ERROR:" ], [ "310", "000", "ERROR:", "ERROR:" ], [ "312", "000", "ERROR:", "ERROR:" ], [ "315", "000", "ERROR:", "ERROR:" ], [ "320", "000", "ERROR:", "ERROR:" ], [ "322", "000", "ERROR:", "ERROR:" ], [ "325", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "420", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "610", "000", "ERROR:", "ERROR:" ], [ "620", "000", "ERROR:", "ERROR:" ], [ "800", "000", "ERROR:", "ERROR:" ], [ "100", "001-050", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "110", "001-050", "VALUE:T1a", "VALUE:T1a" ], [ "120", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "300", "001-050", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "302", "001-050", "VALUE:T1a", "VALUE:T1a" ], [ "305", "001-050", "VALUE:T1a", "VALUE:T1a" ], [ "310", "001-050", "VALUE:T1a", "VALUE:T1a" ], [ "312", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "315", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "320", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "322", "001-050", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "325", "001-050", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "400", "001-050", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "410", "001-050", "VALUE:T1a", "VALUE:T1a" ], [ "420", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "600", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "610", "001-050", "VALUE:T1a", "VALUE:T1a" ], [ "620", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "800", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "100", "051-989", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "110", "051-989", "VALUE:T2a", "VALUE:T2a" ], [ "120", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "300", "051-989", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "302", "051-989", "VALUE:T2a", "VALUE:T2a" ], [ "305", "051-989", "VALUE:T2a", "VALUE:T2a" ], [ "310", "051-989", "VALUE:T2a", "VALUE:T2a" ], [ "312", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "315", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "320", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "322", "051-989", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "325", "051-989", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "400", "051-989", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "410", "051-989", "VALUE:T2a", "VALUE:T2a" ], [ "420", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "600", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "610", "051-989", "VALUE:T2a", "VALUE:T2a" ], [ "620", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "800", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "100", "990-994", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "110", "990-994", "VALUE:T1a", "VALUE:T1a" ], [ "120", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "300", "990-994", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "302", "990-994", "VALUE:T1a", "VALUE:T1a" ], [ "305", "990-994", "VALUE:T1a", "VALUE:T1a" ], [ "310", "990-994", "VALUE:T1a", "VALUE:T1a" ], [ "312", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "315", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "320", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "322", "990-994", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "325", "990-994", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "400", "990-994", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "410", "990-994", "VALUE:T1a", "VALUE:T1a" ], [ "420", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "600", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "610", "990-994", "VALUE:T1a", "VALUE:T1a" ], [ "620", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "800", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "100", "995", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "110", "995", "VALUE:T1a", "VALUE:T1a" ], [ "120", "995", "VALUE:T1b", "VALUE:T1b" ], [ "300", "995", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "302", "995", "VALUE:T1a", "VALUE:T1a" ], [ "305", "995", "VALUE:T2a", "VALUE:T2a" ], [ "310", "995", "VALUE:T1a", "VALUE:T1a" ], [ "312", "995", "VALUE:T1b", "VALUE:T1b" ], [ "315", "995", "VALUE:T1b", "VALUE:T1b" ], [ "320", "995", "VALUE:T1b", "VALUE:T1b" ], [ "322", "995", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "325", "995", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "400", "995", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "410", "995", "VALUE:T1a", "VALUE:T1a" ], [ "420", "995", "VALUE:T1b", "VALUE:T1b" ], [ "600", "995", "VALUE:T1b", "VALUE:T1b" ], [ "610", "995", "VALUE:T1a", "VALUE:T1a" ], [ "620", "995", "VALUE:T1b", "VALUE:T1b" ], [ "800", "995", "VALUE:T1b", "VALUE:T1b" ], [ "100", "996", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "110", "996", "VALUE:T2a", "VALUE:T2a" ], [ "120", "996", "VALUE:T2b", "VALUE:T2b" ], [ "300", "996", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "302", "996", "VALUE:T2a", "VALUE:T2a" ], [ "305", "996", "VALUE:T2a", "VALUE:T2a" ], [ "310", "996", "VALUE:T2a", "VALUE:T2a" ], [ "312", "996", "VALUE:T1b", "VALUE:T1b" ], [ "315", "996", "VALUE:T2b", "VALUE:T2b" ], [ "320", "996", "VALUE:T2b", "VALUE:T2b" ], [ "322", "996", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "325", "996", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "400", "996", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "410", "996", "VALUE:T2a", "VALUE:T2a" ], [ "420", "996", "VALUE:T2b", "VALUE:T2b" ], [ "600", "996", "VALUE:T2b", "VALUE:T2b" ], [ "610", "996", "VALUE:T2a", "VALUE:T2a" ], [ "620", "996", "VALUE:T2b", "VALUE:T2b" ], [ "800", "996", "VALUE:T2b", "VALUE:T2b" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "110", "997-998", "ERROR:", "ERROR:" ], [ "120", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "302", "997-998", "ERROR:", "ERROR:" ], [ "305", "997-998", "ERROR:", "ERROR:" ], [ "310", "997-998", "ERROR:", "ERROR:" ], [ "312", "997-998", "ERROR:", "ERROR:" ], [ "315", "997-998", "ERROR:", "ERROR:" ], [ "320", "997-998", "ERROR:", "ERROR:" ], [ "322", "997-998", "ERROR:", "ERROR:" ], [ "325", "997-998", "ERROR:", "ERROR:" ], [ "400", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "420", "997-998", "ERROR:", "ERROR:" ], [ "600", "997-998", "ERROR:", "ERROR:" ], [ "610", "997-998", "ERROR:", "ERROR:" ], [ "620", "997-998", "ERROR:", "ERROR:" ], [ "800", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "110", "999", "VALUE:TX", "VALUE:TX" ], [ "120", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "302", "999", "VALUE:T1a", "VALUE:T1a" ], [ "305", "999", "VALUE:T2a", "VALUE:T2a" ], [ "310", "999", "VALUE:TX", "VALUE:TX" ], [ "312", "999", "VALUE:T1b", "VALUE:T1b" ], [ "315", "999", "VALUE:T2b", "VALUE:T2b" ], [ "320", "999", "VALUE:TX", "VALUE:TX" ], [ "322", "999", "VALUE:T1NOS", "VALUE:T1NOS" ], [ "325", "999", "VALUE:T2NOS", "VALUE:T2NOS" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ], [ "410", "999", "VALUE:TX", "VALUE:TX" ], [ "420", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "610", "999", "VALUE:TX", "VALUE:TX" ], [ "620", "999", "VALUE:TX", "VALUE:TX" ], [ "800", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xfu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xfu.json
deleted file mode 100644
index ef3a60c5c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xfu.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xfu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-800, the T category is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.099Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "310", "000", "ERROR:", "ERROR:" ], [ "350", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "700", "000", "ERROR:", "ERROR:" ], [ "800", "000", "ERROR:", "ERROR:" ], [ "100", "001-080", "VALUE:T1", "VALUE:T1" ], [ "200", "001-080", "VALUE:T1", "VALUE:T1" ], [ "300", "001-080", "VALUE:T1", "VALUE:T1" ], [ "310", "001-080", "VALUE:T1", "VALUE:T1" ], [ "350", "001-080", "VALUE:T1", "VALUE:T1" ], [ "400", "001-080", "VALUE:T1", "VALUE:T1" ], [ "600", "001-080", "VALUE:T1", "VALUE:T1" ], [ "700", "001-080", "VALUE:T1", "VALUE:T1" ], [ "800", "001-080", "VALUE:T1", "VALUE:T1" ], [ "100", "081-989", "VALUE:T2", "VALUE:T2" ], [ "200", "081-989", "VALUE:T2", "VALUE:T2" ], [ "300", "081-989", "VALUE:T2", "VALUE:T2" ], [ "310", "081-989", "VALUE:T2", "VALUE:T2" ], [ "350", "081-989", "VALUE:T2", "VALUE:T2" ], [ "400", "081-989", "VALUE:T2", "VALUE:T2" ], [ "600", "081-989", "VALUE:T2", "VALUE:T2" ], [ "700", "081-989", "VALUE:T2", "VALUE:T2" ], [ "800", "081-989", "VALUE:T2", "VALUE:T2" ], [ "100", "990-996", "VALUE:T1", "VALUE:T1" ], [ "200", "990-996", "VALUE:T1", "VALUE:T1" ], [ "300", "990-996", "VALUE:T1", "VALUE:T1" ], [ "310", "990-996", "VALUE:T1", "VALUE:T1" ], [ "350", "990-996", "VALUE:T1", "VALUE:T1" ], [ "400", "990-996", "VALUE:T1", "VALUE:T1" ], [ "600", "990-996", "VALUE:T1", "VALUE:T1" ], [ "700", "990-996", "VALUE:T1", "VALUE:T1" ], [ "800", "990-996", "VALUE:T1", "VALUE:T1" ], [ "100", "997", "VALUE:T2", "VALUE:T2" ], [ "200", "997", "VALUE:T2", "VALUE:T2" ], [ "300", "997", "VALUE:T2", "VALUE:T2" ], [ "310", "997", "VALUE:T2", "VALUE:T2" ], [ "350", "997", "VALUE:T2", "VALUE:T2" ], [ "400", "997", "VALUE:T2", "VALUE:T2" ], [ "600", "997", "VALUE:T2", "VALUE:T2" ], [ "700", "997", "VALUE:T2", "VALUE:T2" ], [ "800", "997", "VALUE:T2", "VALUE:T2" ], [ "100", "998", "ERROR:", "ERROR:" ], [ "200", "998", "ERROR:", "ERROR:" ], [ "300", "998", "ERROR:", "ERROR:" ], [ "310", "998", "ERROR:", "ERROR:" ], [ "350", "998", "ERROR:", "ERROR:" ], [ "400", "998", "ERROR:", "ERROR:" ], [ "600", "998", "ERROR:", "ERROR:" ], [ "700", "998", "ERROR:", "ERROR:" ], [ "800", "998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "310", "999", "VALUE:T1", "VALUE:T1" ], [ "350", "999", "VALUE:T2", "VALUE:T2" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "700", "999", "VALUE:TX", "VALUE:TX" ], [ "800", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xgn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xgn.json
deleted file mode 100644
index 2754c45a6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xgn.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_size_xgn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note 1**: For CS Extension codes 100-660, 710, and 720-795, the T category for AJCC 6 staging is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.152Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100,150,180,300,400,510,520,530,580,600,610,620,630,640,650,660", "000", "ERROR:" ], [ "710", "000", "ERROR:" ], [ "720,722,725,728,730,735,750,780,785,790,795", "000", "ERROR:" ], [ "100,150,180,300,400,510,520,530,580,600,610,620,630,640,650,660", "001-050", "VALUE:T1b" ], [ "710", "001-050", "VALUE:T1b" ], [ "720,722,725,728,730,735,750,780,785,790,795", "001-050", "VALUE:T1b" ], [ "100,150,180,300,400,510,520,530,580,600,610,620,630,640,650,660", "051-989", "VALUE:T2b" ], [ "710", "051-989", "VALUE:T2b" ], [ "720,722,725,728,730,735,750,780,785,790,795", "051-989", "VALUE:T2b" ], [ "100,150,180,300,400,510,520,530,580,600,610,620,630,640,650,660", "990-995", "VALUE:T1b" ], [ "710", "990-995", "VALUE:T1b" ], [ "720,722,725,728,730,735,750,780,785,790,795", "990-995", "VALUE:T1b" ], [ "100,150,180,300,400,510,520,530,580,600,610,620,630,640,650,660", "997-998", "ERROR:" ], [ "710", "997-998", "ERROR:" ], [ "720,722,725,728,730,735,750,780,785,790,795", "997-998", "ERROR:" ], [ "100,150,180,300,400,510,520,530,580,600,610,620,630,640,650,660", "999", "VALUE:TX" ], [ "710", "999", "VALUE:TX" ], [ "720,722,725,728,730,735,750,780,785,790,795", "999", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xjg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xjg.json
deleted file mode 100644
index b8e6aa1e6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xjg.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xjg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-650 ONLY, the T category is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.200Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "550", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "650", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1", "VALUE:T1" ], [ "650", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "550", "021-040", "VALUE:T2", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2", "VALUE:T2" ], [ "650", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "550", "041-989", "VALUE:T3", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3", "VALUE:T3" ], [ "650", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1", "VALUE:T1" ], [ "650", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "550", "992", "VALUE:T1", "VALUE:T1" ], [ "600", "992", "VALUE:T1", "VALUE:T1" ], [ "650", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T3", "VALUE:T3" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "550", "993-994", "VALUE:T2", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2", "VALUE:T2" ], [ "650", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "550", "995", "VALUE:T3", "VALUE:T3" ], [ "600", "995", "VALUE:T3", "VALUE:T3" ], [ "650", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "550", "996", "VALUE:T3", "VALUE:T3" ], [ "600", "996", "VALUE:T3", "VALUE:T3" ], [ "650", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "550", "997-998", "ERROR:", "ERROR:" ], [ "600", "997-998", "ERROR:", "ERROR:" ], [ "650", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ], [ "550", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "650", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xjh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xjh.json
deleted file mode 100644
index a7ba7a480..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xjh.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xjh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100 through 535 ONLY, the T code is assigned based on value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.255Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "510", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "510", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "510", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "510", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "510", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "200", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "510", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T3", "VALUE:T3" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "510", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "200", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "510", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "200", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "510", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "200", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "510", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "510", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpa.json
deleted file mode 100644
index a55b1f6cd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpa.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xpa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100 through 535 ONLY, the T code is assigned based on value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.306Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "515", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "500", "001-020", "VALUE:T1", "VALUE:T1" ], [ "515", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "200", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "500", "021-040", "VALUE:T2", "VALUE:T2" ], [ "515", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "200", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "500", "041-989", "VALUE:T3", "VALUE:T3" ], [ "515", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "200", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "500", "990-991", "VALUE:T1", "VALUE:T1" ], [ "515", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "200", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "500", "992", "VALUE:T1", "VALUE:T1" ], [ "515", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "200", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T3", "VALUE:T3" ], [ "500", "993-994", "VALUE:T2", "VALUE:T2" ], [ "515", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "200", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "500", "995", "VALUE:T3", "VALUE:T3" ], [ "515", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "200", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "500", "996", "VALUE:T3", "VALUE:T3" ], [ "515", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "200", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "500", "997-998", "ERROR:", "ERROR:" ], [ "515", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "200", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "500", "999", "VALUE:TX", "VALUE:TX" ], [ "515", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpb.json
deleted file mode 100644
index a183160d8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpb.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xpb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-650 ONLY, the T category is assigned based on the value of CS Tumor Size as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.360Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "510", "000", "ERROR:", "ERROR:" ], [ "535", "000", "ERROR:", "ERROR:" ], [ "550", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "650", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "405", "001-020", "VALUE:T1", "VALUE:T1" ], [ "410", "001-020", "VALUE:T1", "VALUE:T1" ], [ "415", "001-020", "VALUE:T1", "VALUE:T1" ], [ "510", "001-020", "VALUE:T1", "VALUE:T1" ], [ "535", "001-020", "VALUE:T1", "VALUE:T1" ], [ "550", "001-020", "VALUE:T1", "VALUE:T1" ], [ "600", "001-020", "VALUE:T1", "VALUE:T1" ], [ "650", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "405", "021-040", "VALUE:T2", "VALUE:T2" ], [ "410", "021-040", "VALUE:T2", "VALUE:T2" ], [ "415", "021-040", "VALUE:T2", "VALUE:T2" ], [ "510", "021-040", "VALUE:T2", "VALUE:T2" ], [ "535", "021-040", "VALUE:T2", "VALUE:T2" ], [ "550", "021-040", "VALUE:T2", "VALUE:T2" ], [ "600", "021-040", "VALUE:T2", "VALUE:T2" ], [ "650", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "405", "041-989", "VALUE:T3", "VALUE:T3" ], [ "410", "041-989", "VALUE:T3", "VALUE:T3" ], [ "415", "041-989", "VALUE:T3", "VALUE:T3" ], [ "510", "041-989", "VALUE:T3", "VALUE:T3" ], [ "535", "041-989", "VALUE:T3", "VALUE:T3" ], [ "550", "041-989", "VALUE:T3", "VALUE:T3" ], [ "600", "041-989", "VALUE:T3", "VALUE:T3" ], [ "650", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "405", "990-991", "VALUE:T1", "VALUE:T1" ], [ "410", "990-991", "VALUE:T1", "VALUE:T1" ], [ "415", "990-991", "VALUE:T1", "VALUE:T1" ], [ "510", "990-991", "VALUE:T1", "VALUE:T1" ], [ "535", "990-991", "VALUE:T1", "VALUE:T1" ], [ "550", "990-991", "VALUE:T1", "VALUE:T1" ], [ "600", "990-991", "VALUE:T1", "VALUE:T1" ], [ "650", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "405", "992", "VALUE:T1", "VALUE:T1" ], [ "410", "992", "VALUE:T2", "VALUE:T2" ], [ "415", "992", "VALUE:T3", "VALUE:T3" ], [ "510", "992", "VALUE:T1", "VALUE:T1" ], [ "535", "992", "VALUE:T1", "VALUE:T1" ], [ "550", "992", "VALUE:T1", "VALUE:T1" ], [ "600", "992", "VALUE:T1", "VALUE:T1" ], [ "650", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "405", "993-994", "VALUE:T1", "VALUE:T1" ], [ "410", "993-994", "VALUE:T2", "VALUE:T2" ], [ "415", "993-994", "VALUE:T3", "VALUE:T3" ], [ "510", "993-994", "VALUE:T2", "VALUE:T2" ], [ "535", "993-994", "VALUE:T2", "VALUE:T2" ], [ "550", "993-994", "VALUE:T2", "VALUE:T2" ], [ "600", "993-994", "VALUE:T2", "VALUE:T2" ], [ "650", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "405", "995", "VALUE:T1", "VALUE:T1" ], [ "410", "995", "VALUE:T2", "VALUE:T2" ], [ "415", "995", "VALUE:T3", "VALUE:T3" ], [ "510", "995", "VALUE:T3", "VALUE:T3" ], [ "535", "995", "VALUE:T3", "VALUE:T3" ], [ "550", "995", "VALUE:T3", "VALUE:T3" ], [ "600", "995", "VALUE:T3", "VALUE:T3" ], [ "650", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "405", "996", "VALUE:T3", "VALUE:T3" ], [ "410", "996", "VALUE:T3", "VALUE:T3" ], [ "415", "996", "VALUE:T3", "VALUE:T3" ], [ "510", "996", "VALUE:T3", "VALUE:T3" ], [ "535", "996", "VALUE:T3", "VALUE:T3" ], [ "550", "996", "VALUE:T3", "VALUE:T3" ], [ "600", "996", "VALUE:T3", "VALUE:T3" ], [ "650", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "405", "997-998", "ERROR:", "ERROR:" ], [ "410", "997-998", "ERROR:", "ERROR:" ], [ "415", "997-998", "ERROR:", "ERROR:" ], [ "510", "997-998", "ERROR:", "ERROR:" ], [ "535", "997-998", "ERROR:", "ERROR:" ], [ "550", "997-998", "ERROR:", "ERROR:" ], [ "600", "997-998", "ERROR:", "ERROR:" ], [ "650", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "405", "999", "VALUE:T1", "VALUE:T1" ], [ "410", "999", "VALUE:T2", "VALUE:T2" ], [ "415", "999", "VALUE:T3", "VALUE:T3" ], [ "510", "999", "VALUE:TX", "VALUE:TX" ], [ "535", "999", "VALUE:TX", "VALUE:TX" ], [ "550", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "650", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpe.json
deleted file mode 100644
index 070b835de..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpe.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xpe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100, 150, 200, and 300 ONLY, the T category is assigned based on the value of CS Tumor Size, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.415Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "150", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "150", "001-020", "VALUE:T1", "VALUE:T1" ], [ "200", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-989", "VALUE:T2", "VALUE:T2" ], [ "150", "021-989", "VALUE:T2", "VALUE:T2" ], [ "200", "021-989", "VALUE:T2", "VALUE:T2" ], [ "300", "021-989", "VALUE:T2", "VALUE:T2" ], [ "100", "990-992", "VALUE:T1", "VALUE:T1" ], [ "150", "990-992", "VALUE:T1", "VALUE:T1" ], [ "200", "990-992", "VALUE:T1", "VALUE:T1" ], [ "300", "990-992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-995", "VALUE:T2", "VALUE:T2" ], [ "150", "993-995", "VALUE:T2", "VALUE:T2" ], [ "200", "993-995", "VALUE:T2", "VALUE:T2" ], [ "300", "993-995", "VALUE:T2", "VALUE:T2" ], [ "100", "996-998", "ERROR:", "ERROR:" ], [ "150", "996-998", "ERROR:", "ERROR:" ], [ "200", "996-998", "ERROR:", "ERROR:" ], [ "300", "996-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "150", "999", "VALUE:T1", "VALUE:T1" ], [ "200", "999", "VALUE:T2", "VALUE:T2" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpf.json
deleted file mode 100644
index 695557012..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xpf.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xpf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note**: For CS Extension codes 100-350 ONLY, the T category is assigned based on the value of CS Tumor Size and CS Extension as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.462Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "305", "000", "ERROR:", "ERROR:" ], [ "310", "000", "ERROR:", "ERROR:" ], [ "350", "000", "ERROR:", "ERROR:" ], [ "100", "001-020", "VALUE:T1", "VALUE:T1" ], [ "300", "001-020", "VALUE:T1", "VALUE:T1" ], [ "305", "001-020", "VALUE:T1", "VALUE:T1" ], [ "310", "001-020", "VALUE:T1", "VALUE:T1" ], [ "350", "001-020", "VALUE:T1", "VALUE:T1" ], [ "100", "021-040", "VALUE:T2", "VALUE:T2" ], [ "300", "021-040", "VALUE:T2", "VALUE:T2" ], [ "305", "021-040", "VALUE:T2", "VALUE:T2" ], [ "310", "021-040", "VALUE:T2", "VALUE:T2" ], [ "350", "021-040", "VALUE:T2", "VALUE:T2" ], [ "100", "041-989", "VALUE:T3", "VALUE:T3" ], [ "300", "041-989", "VALUE:T3", "VALUE:T3" ], [ "305", "041-989", "VALUE:T3", "VALUE:T3" ], [ "310", "041-989", "VALUE:T3", "VALUE:T3" ], [ "350", "041-989", "VALUE:T3", "VALUE:T3" ], [ "100", "990-991", "VALUE:T1", "VALUE:T1" ], [ "300", "990-991", "VALUE:T1", "VALUE:T1" ], [ "305", "990-991", "VALUE:T1", "VALUE:T1" ], [ "310", "990-991", "VALUE:T1", "VALUE:T1" ], [ "350", "990-991", "VALUE:T1", "VALUE:T1" ], [ "100", "992", "VALUE:T1", "VALUE:T1" ], [ "300", "992", "VALUE:T1", "VALUE:T1" ], [ "305", "992", "VALUE:T1", "VALUE:T1" ], [ "310", "992", "VALUE:T2", "VALUE:T2" ], [ "350", "992", "VALUE:T1", "VALUE:T1" ], [ "100", "993-994", "VALUE:T2", "VALUE:T2" ], [ "300", "993-994", "VALUE:T2", "VALUE:T2" ], [ "305", "993-994", "VALUE:T1", "VALUE:T1" ], [ "310", "993-994", "VALUE:T2", "VALUE:T2" ], [ "350", "993-994", "VALUE:T2", "VALUE:T2" ], [ "100", "995", "VALUE:T3", "VALUE:T3" ], [ "300", "995", "VALUE:T3", "VALUE:T3" ], [ "305", "995", "VALUE:T1", "VALUE:T1" ], [ "310", "995", "VALUE:T2", "VALUE:T2" ], [ "350", "995", "VALUE:T3", "VALUE:T3" ], [ "100", "996", "VALUE:T3", "VALUE:T3" ], [ "300", "996", "VALUE:T3", "VALUE:T3" ], [ "305", "996", "VALUE:T3", "VALUE:T3" ], [ "310", "996", "VALUE:T3", "VALUE:T3" ], [ "350", "996", "VALUE:T3", "VALUE:T3" ], [ "100", "997-998", "ERROR:", "ERROR:" ], [ "300", "997-998", "ERROR:", "ERROR:" ], [ "305", "997-998", "ERROR:", "ERROR:" ], [ "310", "997-998", "ERROR:", "ERROR:" ], [ "350", "997-998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "305", "999", "VALUE:T1", "VALUE:T1" ], [ "310", "999", "VALUE:T2", "VALUE:T2" ], [ "350", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xqj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xqj.json
deleted file mode 100644
index 3a27d2696..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_size_xqj.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "extension_size_xqj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Size",
- "title" : "Extension Size Table",
- "notes" : "**Note 1**: Tumor size 000 should only be used with CS Extension 950.\n\n**Note 2**: Tumor size codes 997-998 are not valid for this site.\n\n**Note 3**: For Extension codes 100-800, the T category is assigned based on the value of Tumor Size, as follows:",
- "last_modified" : "2015-05-27T16:19:20.509Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "size",
- "name" : "CS Tumor Size",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "350", "000", "ERROR:", "ERROR:" ], [ "375", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "800", "000", "ERROR:", "ERROR:" ], [ "100", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "300", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "350", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "375", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "400", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "600", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "800", "001-050", "VALUE:T1b", "VALUE:T1b" ], [ "100", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "300", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "350", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "375", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "400", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "600", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "800", "051-989", "VALUE:T2b", "VALUE:T2b" ], [ "100", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "300", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "350", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "375", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "400", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "600", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "800", "990-994", "VALUE:T1b", "VALUE:T1b" ], [ "100", "995", "VALUE:T1b", "VALUE:T1b" ], [ "300", "995", "VALUE:T1b", "VALUE:T1b" ], [ "350", "995", "VALUE:T1b", "VALUE:T1b" ], [ "375", "995", "VALUE:T1b", "VALUE:T1b" ], [ "400", "995", "VALUE:T1b", "VALUE:T1b" ], [ "600", "995", "VALUE:T1b", "VALUE:T1b" ], [ "800", "995", "VALUE:T1b", "VALUE:T1b" ], [ "100", "996", "VALUE:T2b", "VALUE:T2b" ], [ "300", "996", "VALUE:T2b", "VALUE:T2b" ], [ "350", "996", "VALUE:T2b", "VALUE:T2b" ], [ "375", "996", "VALUE:T2b", "VALUE:T2b" ], [ "400", "996", "VALUE:T2b", "VALUE:T2b" ], [ "600", "996", "VALUE:T2b", "VALUE:T2b" ], [ "800", "996", "VALUE:T2b", "VALUE:T2b" ], [ "100", "999", "VALUE:TX", "VALUE:TX" ], [ "300", "999", "VALUE:TX", "VALUE:TX" ], [ "350", "999", "VALUE:T1b", "VALUE:T1b" ], [ "375", "999", "VALUE:T2b", "VALUE:T2b" ], [ "400", "999", "VALUE:TX", "VALUE:TX" ], [ "600", "999", "VALUE:TX", "VALUE:TX" ], [ "800", "999", "VALUE:TX", "VALUE:TX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_ajcc7_t_xjy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_ajcc7_t_xjy.json
deleted file mode 100644
index ca869b6cf..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_ajcc7_t_xjy.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "id" : "extension_ssf1_ajcc7_t_xjy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension SSF1 AJCC7 T",
- "title" : "Extension SSF1 AJCC 7 T Table",
- "subtitle" : "CS SSF1 888 or 988 with CS Extension",
- "notes" : "**Note**: When CS Site-Specific Factor 1 is coded 888 or 988 and CS Extension is coded 000-230, 300-440, 455-520, 540-600, 730, 950-980, 999, the T categories for AJCC 7 staging result in ERROR as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.559Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000,100,110,115,120,125,200,210,220,230,300,400,410,420,430,440,455,460,465,500,520,540,550,560,570,590,600,730,950,980,999", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage2000_xke.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage2000_xke.json
deleted file mode 100644
index b140014a6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage2000_xke.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_ssf1_summary_stage2000_xke",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension SSF1 Summary Stage2000",
- "title" : "Extension SSF1 Summary Stage 2000 Table",
- "subtitle" : "Cases Coded in CSv2 (CS Version Input Original equals 02XXXX) or Year of Diagnosis is 2010 and After",
- "notes" : "**Note**: For CS Version 2 cases (CS Version Input Original equals 02XXXX) or Year of Diagnosis is 2010 and after, Summary Stage 2000 for CS Extension codes 000-700, 740, 950, 980 and 999 is based on CS Extension and CS Site-Specific Factor 1. CS Site-Specific Factor 1 codes 000 and 999 map according to the extension value. CS Site-Specific Factor 1 codes 010 and 040 indicate separate tumor nodules in same lobe or unknown if in same lobe, and map to Regional. CS Site-Specific Factor 1 codes 020 and 030, separate tumor nodules in different or separate tumor nodules in same and different lobe, map to Distant. CS Site-Specific Factor 1 codes 888 and 988 map to ERROR.",
- "last_modified" : "2015-05-27T16:19:20.609Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension Code",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "000", "VALUE:IS" ], [ "100,110,115,120,125,200,210,220,230,300", "000", "VALUE:L" ], [ "250", "000", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "000", "VALUE:RE" ], [ "680", "000", "VALUE:L" ], [ "740", "000", "VALUE:RE" ], [ "950,980,999", "000", "VALUE:U" ], [ "000", "010", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "010", "VALUE:RE" ], [ "250", "010", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "010", "VALUE:RE" ], [ "680", "010", "VALUE:RE" ], [ "740", "010", "VALUE:RE" ], [ "950,980,999", "010", "VALUE:RE" ], [ "000", "020", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "020", "VALUE:D" ], [ "250", "020", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "020", "VALUE:D" ], [ "680", "020", "VALUE:D" ], [ "740", "020", "VALUE:D" ], [ "950,980,999", "020", "VALUE:D" ], [ "000", "030", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "030", "VALUE:D" ], [ "250", "030", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "030", "VALUE:D" ], [ "680", "030", "VALUE:D" ], [ "740", "030", "VALUE:D" ], [ "950,980,999", "030", "VALUE:D" ], [ "000", "040", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "040", "VALUE:RE" ], [ "250", "040", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "040", "VALUE:RE" ], [ "680", "040", "VALUE:RE" ], [ "740", "040", "VALUE:RE" ], [ "950,980,999", "040", "VALUE:RE" ], [ "000", "888", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "888", "ERROR:" ], [ "250", "888", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "888", "ERROR:" ], [ "680", "888", "ERROR:" ], [ "740", "888", "ERROR:" ], [ "950,980,999", "888", "ERROR:" ], [ "000", "988", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "988", "ERROR:" ], [ "250", "988", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "988", "ERROR:" ], [ "680", "988", "ERROR:" ], [ "740", "988", "ERROR:" ], [ "950,980,999", "988", "ERROR:" ], [ "000", "999", "VALUE:IS" ], [ "100,110,115,120,125,200,210,220,230,300", "999", "VALUE:L" ], [ "250", "999", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "999", "VALUE:RE" ], [ "680", "999", "VALUE:L" ], [ "740", "999", "VALUE:RE" ], [ "950,980,999", "999", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage2000_xkf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage2000_xkf.json
deleted file mode 100644
index 9a59c5d29..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage2000_xkf.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_ssf1_summary_stage2000_xkf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension SSF1 Summary Stage2000",
- "title" : "Extension SSF1 Summary Stage 2000 Table",
- "subtitle" : "Cases Coded in CSv1 (CS Version Input Original equals 01XXXX) and Year of Diagnosis is less than 2010",
- "notes" : "**Note**: For cases coded in CSv1 (CS Version Input Original equals 01XXXX) and a Year of Diagnosis date is less than 2010, Summary Stage 2000 for extension codes 000-700, 740, 950, 980 and 999 is based on Extension and CS Site-Specific Factor 1. CS Site-Specific Factor 1 codes 000, 988 and 999 map according to the extension value. CS Site-Specific Factor 1 code 888 maps to ERROR. CS Site-Specific Factor 1 codes 010 and 040 indicate separate tumor nodules in same lobe or unknown if in same lobe, and map to Regional. CS Site-Specific Factor 1 codes 020 and 030, separate tumor nodules in different or separate tumor nodules in same and different lobe, map to Distant.",
- "last_modified" : "2015-05-27T16:19:20.665Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension Code",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "000", "VALUE:IS" ], [ "100,110,115,120,125,200,210,220,230,300", "000", "VALUE:L" ], [ "250", "000", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "000", "VALUE:RE" ], [ "680", "000", "VALUE:L" ], [ "740", "000", "VALUE:RE" ], [ "950,980,999", "000", "VALUE:U" ], [ "000", "010", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "010", "VALUE:RE" ], [ "250", "010", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "010", "VALUE:RE" ], [ "680", "010", "VALUE:RE" ], [ "740", "010", "VALUE:RE" ], [ "950,980,999", "010", "VALUE:RE" ], [ "000", "020", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "020", "VALUE:D" ], [ "250", "020", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "020", "VALUE:D" ], [ "680", "020", "VALUE:D" ], [ "740", "020", "VALUE:D" ], [ "950,980,999", "020", "VALUE:D" ], [ "000", "030", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "030", "VALUE:D" ], [ "250", "030", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "030", "VALUE:D" ], [ "680", "030", "VALUE:D" ], [ "740", "030", "VALUE:D" ], [ "950,980,999", "030", "VALUE:D" ], [ "000", "040", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "040", "VALUE:RE" ], [ "250", "040", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "040", "VALUE:RE" ], [ "680", "040", "VALUE:RE" ], [ "740", "040", "VALUE:RE" ], [ "950,980,999", "040", "VALUE:RE" ], [ "000", "888", "ERROR:" ], [ "100,110,115,120,125,200,210,220,230,300", "888", "ERROR:" ], [ "250", "888", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "888", "ERROR:" ], [ "680", "888", "ERROR:" ], [ "740", "888", "ERROR:" ], [ "950,980,999", "888", "ERROR:" ], [ "000", "988", "VALUE:IS" ], [ "100,110,115,120,125,200,210,220,230,300", "988", "VALUE:L" ], [ "250", "988", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "988", "VALUE:RE" ], [ "680", "988", "VALUE:L" ], [ "740", "988", "VALUE:RE" ], [ "950,980,999", "988", "VALUE:U" ], [ "000", "999", "VALUE:IS" ], [ "100,110,115,120,125,200,210,220,230,300", "999", "VALUE:L" ], [ "250", "999", "ERROR:" ], [ "400,410,420,430,440,450,455,460,465,500,520,530,540,550,560,570,590,600,610,650,700", "999", "VALUE:RE" ], [ "680", "999", "VALUE:L" ], [ "740", "999", "VALUE:RE" ], [ "950,980,999", "999", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage77_xkc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage77_xkc.json
deleted file mode 100644
index 39593b813..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage77_xkc.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_ssf1_summary_stage77_xkc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension SSF1 Summary Stage77",
- "title" : "Extension SSF1 Summary Stage 77 Table",
- "subtitle" : "Cases Coded in CSv2 (CS Version Input Original equals 02XXXX) or Year of Diagnosis is 2010 and After",
- "notes" : "**Note**: For cases coded in CSv2 (CS Version Input Original equals 02XXXX) or Year of Diagnosis is 2010 and after, Stage 77 for CS Extension codes 000, 950, 980 and 999 is based on Extension and CS Site-Specific Factor 1. CS Site-Specific Factor 1 codes 000 and 999 map according to the extension value.",
- "last_modified" : "2015-05-27T16:19:20.714Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension Code",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "000", "VALUE:IS" ], [ "950", "000", "VALUE:U" ], [ "980", "000", "VALUE:U" ], [ "999", "000", "VALUE:U" ], [ "000", "010", "ERROR:" ], [ "950", "010", "ERROR:" ], [ "980", "010", "ERROR:" ], [ "999", "010", "VALUE:L" ], [ "000", "020", "ERROR:" ], [ "950", "020", "ERROR:" ], [ "980", "020", "ERROR:" ], [ "999", "020", "VALUE:L" ], [ "000", "030", "ERROR:" ], [ "950", "030", "ERROR:" ], [ "980", "030", "ERROR:" ], [ "999", "030", "VALUE:L" ], [ "000", "040", "ERROR:" ], [ "950", "040", "ERROR:" ], [ "980", "040", "ERROR:" ], [ "999", "040", "VALUE:L" ], [ "000", "888", "ERROR:" ], [ "950", "888", "ERROR:" ], [ "980", "888", "ERROR:" ], [ "999", "888", "ERROR:" ], [ "000", "988", "ERROR:" ], [ "950", "988", "ERROR:" ], [ "980", "988", "ERROR:" ], [ "999", "988", "ERROR:" ], [ "000", "999", "VALUE:IS" ], [ "950", "999", "VALUE:U" ], [ "980", "999", "VALUE:U" ], [ "999", "999", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage77_xkd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage77_xkd.json
deleted file mode 100644
index 7d1ef6789..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ssf1_summary_stage77_xkd.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_ssf1_summary_stage77_xkd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension SSF1 Summary Stage77",
- "title" : "Extension SSF1 Summary Stage 77 Table",
- "subtitle" : "Cases Coded in CSv1 (CS Version Input Original Equals 01XXXX) and Year of Diagnosis is Less than 2010",
- "notes" : "**Note**: For cases coded in CSv1 (CS Version Input Original equals 01XXXX) and Year of Diagnosis is less than 2010, Summary Stage 77 for extension codes 000, 950, 980 and 999 is based on Extension and CS Site-Specific Factor 1. CS Site-Specific Factor 1 codes 000, 988 and 999 map according to the extension value. CS Site-Specific Factor 1 code 888 maps to ERROR. CS Site-Specific Factor 1 codes 010 and 040 are ERRORS with extension codes 950 and 980.",
- "last_modified" : "2015-05-27T16:19:20.762Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension Code",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "000", "VALUE:IS" ], [ "950", "000", "VALUE:U" ], [ "980", "000", "VALUE:U" ], [ "999", "000", "VALUE:U" ], [ "000", "010", "ERROR:" ], [ "950", "010", "ERROR:" ], [ "980", "010", "ERROR:" ], [ "999", "010", "VALUE:L" ], [ "000", "020", "ERROR:" ], [ "950", "020", "ERROR:" ], [ "980", "020", "ERROR:" ], [ "999", "020", "VALUE:L" ], [ "000", "030", "ERROR:" ], [ "950", "030", "ERROR:" ], [ "980", "030", "ERROR:" ], [ "999", "030", "VALUE:L" ], [ "000", "040", "ERROR:" ], [ "950", "040", "ERROR:" ], [ "980", "040", "ERROR:" ], [ "999", "040", "VALUE:L" ], [ "000", "888", "ERROR:" ], [ "950", "888", "ERROR:" ], [ "980", "888", "ERROR:" ], [ "999", "888", "ERROR:" ], [ "000", "988", "VALUE:IS" ], [ "950", "988", "VALUE:U" ], [ "980", "988", "VALUE:U" ], [ "999", "988", "VALUE:U" ], [ "000", "999", "VALUE:IS" ], [ "950", "999", "VALUE:U" ], [ "980", "999", "VALUE:U" ], [ "999", "999", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_sstg_bbo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_sstg_bbo.json
deleted file mode 100644
index 94d01dbf3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_sstg_bbo.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_sstg_bbo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension - Clinical Extension",
- "notes" : "**Note 1**: This field and CS Site-Specific Factor 3, CS Extension - Pathologic Extension, must both be coded, whether or not a prostatectomy was performed. Information from prostatectomy and autopsy is excluded from this field and coded only in CS Site-Specific Factor 3.\n\n**Note 2**: AJCC considers \"in situ carcinoma of prostate gland\" an impossible diagnosis. Any case so coded will be mapped to TX for AJCC stage and in situ Summary Stage.\n\n**Note 3**: Clinically apparent and inapparent tumor. Use the following rules to determine inapparent versus apparent for CS Extension - Clinical Extension codes 100-240 and, when in doubt, use code 300.\n\n* A. According to AJCC, the digital rectal examination (DRE) is considered the \"gold standard\" for clinical staging and the quality of imaging for staging is not sufficiently uniform to make it part of routine staging. Therefore, the registrar should not use imaging to determine an apparent tumor unless the managing clinician/urologist has used it in staging (herein termed \"reliably\" visible on imaging). If there is a discrepancy between a stage documented on an imaging report and a stage documented by a managing clinician/urologist, the latter takes precedence.\nA clinically apparent tumor is palpable or \"reliably\" visible by imaging. If a clinician documents a \"tumor\", \"mass\", or \"nodule\" by physical examination, this can be inferred as apparent. \"Tumor\", \"mass\", or \"nodule\" on imaging can only be used by the registrar if the managing clinician/urologist uses it.\nA clinically inapparent tumor is one that is neither palpable nor \"reliably\" visible by imaging. Physician documentation of a DRE that does not mention a palpable \"tumor\", \"mass\", or \"nodule\" can be inferred as inapparent. This would include findings limited to benign prostate or enlargement/hypertrophy.\nDo not infer inapparent or apparent tumor based on the registrar's interpretation of other terms in the DRE or imaging reports. A physician assignment of cT1 or cT2 is also a clear statement of inapparent or apparent respectively. Code to 300 (which maps to T2 NOS) in the absence of a clear physician's statement of inapparent or apparent (see also Note 3D).\n\n* B. Codes 100 to 150 are used only for clinically inapparent tumor (see Note 3A) and/or incidentally found microscopic carcinoma (latent, occult) in one or both lobes. Within this range, give priority to codes 130-150 over code 100. Do not use codes 100-140 for needle core biopsy. Use code 150 when tumor is found in one lobe, both lobes, or in prostatic apex by needle biopsy but is not palpable or \"reliably\" visible by imaging. Since code 150 is used to measure screening detected cases, it is important to only apply code 150 when it is clearly an inapparent case. \n\n* C. Codes 200 to 240 are used only for clinically apparent tumor (see Note 3A). Information from biopsy is not used to decide among codes 200-240. Prostate biopsy information is coded in CS Site-Specific Factor 14. Codes 210 and 220 have precedence over code 200. Code 200 has precedence over code 240. Use code 240 if the physician assigns cT2 without a subcategory of a, b, or c.\n\n* D. Code 300 is used for localized cancer when it is unknown if the tumor is clinically apparent. This would include cases with elevated PSA and positive needle core biopsy but no documentation regarding tumor apparency (inapparent versus apparent). Another example would be a diagnosis made prior to admission for a prostatectomy with no details provided on the initial clinical findings.\n\n**Note 4**: Codes 410 to 700 are used for extension beyond the prostate. Information from biopsy of extraprostatic tissue is coded in CS Extension - Clinical Extension (see Note 3 and code 2 on the prostate CS Tumor Size/Ext Eval table for further information).\n\n**Note 5**: Involvement of the prostatic urethra does not alter the extension code.\n\n**Note 6**: \"Frozen pelvis\" is a clinical term which means tumor extends to pelvic sidewall(s). In the absence of a more detailed statement of involvement, assign a description of frozen pelvis to code 600.\n\n**Note 7**: As indicated in Note 1, information from prostatectomy/autopsy is not considered when coding CS Extension - Clinical Extension and is only coded in CS Site-Specific Factor 3 CS Extension - Pathologic Extension. This also applies to incidental findings of prostate cancer during a prostatectomy for other reasons (for example, a cytoprostatectomy for bladder cancer). If there is documentation regarding a normal prostate evaluation (physical examination or imaging) prior to prostatectomy/autopsy, code 950 (no evidence of primary tumor) in this field. If there is no documentation regarding a normal prostate evaluation (physical examination or imaging) prior to prostatectomy/autopsy, code 999 (unknown; extension not stated) in this field.\n\n**Note 8**: The mapping values for TNM, SS77, and SS2000 and the associated c, p, yp, or a indicator (staging basis) are assigned based on the values in CS Extension - Clinical Extension, CS Tumor Size/Ext Eval, and CS Site-Specific Factor 3 - Pathologic Extension. The calculation depends on whether clinical information or pathologic information takes precedence in a specific case. Note that for prostate, AJCC pathologic staging usually requires a prostatectomy. Pathologic staging information from a prostatectomy takes precedence except when neoadjuvant treatment has been given and clinical extension is either as extensive or more extensive than pathologic extension. The CS algorithm implements this logic as shown in the Special Calculation extra tables. Some combinations of codes may be errors. The CS algorithm will derive stage values if possible; a separate edit program may be required to identify errors for correction.\n\n**Note 9**: This version of the table is only used to calculate Summary Stage T values.",
- "footnotes" : "For this site, extension is coded in two CS fields: CS Extension - Clinical Extension and CS Site-Specific Factor 3 - Pathologic Extension. The mapping values for the T category for AJCC stage, SS77, and SS2000 and the associated c, p, yp, or a indicator are assigned based on the values in CS Extension - Clinical Extension, CS Tumor Size/Ext Eval, and CS Site-Specific Factor 3 - Pathologic Extension as shown in the Special Calculation Table for TNM 7 Invasive/Unknown Pathologic Extension Eval, Special Calculation Table for TNM 7 Non-Invasive Pathologic Extension, Special Calculation Table for TNM 6 Invasive/Unknown Pathologic Extension Eval, Special Calculation Table for TNM 6 Non-Invasive Pathologic Extension, and Special Calculation Table for SEER Summary Stage.",
- "last_modified" : "2015-05-27T16:19:20.806Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "VALUE:IS", "VALUE:IS" ], [ "100", "VALUE:L", "VALUE:L" ], [ "130", "VALUE:L", "VALUE:L" ], [ "140", "VALUE:L", "VALUE:L" ], [ "150", "VALUE:L", "VALUE:L" ], [ "200", "VALUE:L", "VALUE:L" ], [ "210", "VALUE:L", "VALUE:L" ], [ "220", "VALUE:L", "VALUE:L" ], [ "230", "VALUE:L", "VALUE:L" ], [ "240", "VALUE:L", "VALUE:L" ], [ "300", "VALUE:L", "VALUE:L" ], [ "310", "ERROR:", "ERROR:" ], [ "330", "ERROR:", "ERROR:" ], [ "340", "ERROR:", "ERROR:" ], [ "410", "VALUE:RE", "VALUE:RE" ], [ "420", "VALUE:RE", "VALUE:RE" ], [ "430", "VALUE:RE", "VALUE:RE" ], [ "440", "VALUE:RE", "VALUE:RE" ], [ "445", "VALUE:RE", "VALUE:RE" ], [ "450", "VALUE:RE", "VALUE:RE" ], [ "470", "VALUE:RE", "VALUE:RE" ], [ "490", "VALUE:RE", "VALUE:RE" ], [ "500", "VALUE:RE", "VALUE:RE" ], [ "510", "VALUE:RE", "VALUE:RE" ], [ "520", "VALUE:D", "VALUE:RE" ], [ "600", "VALUE:D", "VALUE:D" ], [ "700", "VALUE:D", "VALUE:D" ], [ "750", "VALUE:RE", "VALUE:RE" ], [ "950", "VALUE:U", "VALUE:U" ], [ "999", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_sstg_bcu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_sstg_bcu.json
deleted file mode 100644
index aeae507a9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_sstg_bcu.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "id" : "extension_sstg_bcu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension",
- "title" : "CS Extension",
- "notes" : "**Note 1**: For correct calculation of derived staging fields for this schema, CS Extension and CS Site-Specific Factor 1, Extension Evaluated at Enucleation, must both be coded, whether or not an enucleation was performed. Information from enucleation is excluded from CS Extension and coded only in CS Site-Specific Factor 1.\n\n**Note 2**: If both eyes are involved, code the information for the most extensively involved eye in this field, and code the information for the second eye in CS Site-Specific Factor 6.\n\n**Note 3**: The mapping values for AJCC T, SS77, and SS2000 and the associated c, p, y, or a indicator (staging basis) are assigned based on the values in CS Extension (clinical extension), CS Tumor Size/Ext Eval, and CS Site-Specific Factor 1 - Extension Evaluated at Enucleation. Pathologic staging information from an enucleation always takes precedence over clinical staging, except in cases with neoadjuvant treatment where clinical disease is as extensive as or more extensive than disease at surgery.\n\n**Note 4**: This version of the table is only used to calculate Summary Stage T values.",
- "footnotes" : "For this site, extension is coded in two CS Fields: CS Extension (clinical extension) and CS Site-Specific Factor 1 - Extension Evaluated at Enucleation. The mapping values for the T category for AJCC stage, SS77, and SS2000 and the associated c, p, y, or a indicator are assigned based on the values in CS Extension, CS Tumor Size/Ext Eval, and CS Site-Specific Factor 1 as shown in the Special Calculation Table for AJCC T and Special Calculation Table for SEER Summary Stage.",
- "last_modified" : "2015-05-27T16:19:20.854Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "Summary Stage 1977 T",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "Summary Stage 2000 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "VALUE:L", "VALUE:L" ], [ "120", "VALUE:L", "VALUE:L" ], [ "130", "VALUE:L", "VALUE:L" ], [ "140", "VALUE:L", "VALUE:L" ], [ "160", "VALUE:L", "VALUE:L" ], [ "180", "VALUE:L", "VALUE:L" ], [ "310", "VALUE:L", "VALUE:L" ], [ "410", "VALUE:L", "VALUE:L" ], [ "420", "VALUE:L", "VALUE:L" ], [ "430", "VALUE:L", "VALUE:L" ], [ "440", "VALUE:L", "VALUE:L" ], [ "450", "VALUE:L", "VALUE:L" ], [ "460", "VALUE:L", "VALUE:L" ], [ "470", "VALUE:L", "VALUE:L" ], [ "500", "VALUE:L", "VALUE:L" ], [ "520", "VALUE:L", "VALUE:L" ], [ "540", "VALUE:L", "VALUE:L" ], [ "590", "VALUE:RE", "VALUE:RE" ], [ "680", "VALUE:RE", "VALUE:RE" ], [ "700", "VALUE:RE", "VALUE:RE" ], [ "720", "VALUE:D", "VALUE:D" ], [ "740", "VALUE:D", "VALUE:D" ], [ "750", "VALUE:RE", "VALUE:RE" ], [ "760", "VALUE:RE", "VALUE:RE" ], [ "800", "VALUE:D", "VALUE:D" ], [ "950", "VALUE:U", "VALUE:U" ], [ "999", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_t4_ssf1_ajcc7_xgw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_t4_ssf1_ajcc7_xgw.json
deleted file mode 100644
index f23f9d207..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_t4_ssf1_ajcc7_xgw.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_t4_ssf1_ajcc7_xgw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension T4 SSF1 AJCC7",
- "title" : "Extension T4 SSF 1 AJCC 7 Table",
- "notes" : "**Note**: For CS Extension code(s) 560-700 and 730-815 ONLY, the T category for AJCC 7 staging is assigned based on the value of CS Extension and CS Site-Specific Factor 1 as shown in this table.",
- "last_modified" : "2015-05-27T16:19:20.903Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "SSF1",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "001, 002", "560", "ERROR:" ], [ "001, 002", "600", "ERROR:" ], [ "001, 002", "620", "ERROR:" ], [ "001, 002", "650", "ERROR:" ], [ "001, 002", "700", "ERROR:" ], [ "001, 002", "720", "ERROR:" ], [ "001, 002", "730", "ERROR:" ], [ "001, 002", "800", "ERROR:" ], [ "001, 002", "810", "ERROR:" ], [ "001, 002", "815", "ERROR:" ], [ "000, 988, 999", "560", "VALUE:T4a" ], [ "000, 988, 999", "600", "VALUE:T4b" ], [ "000, 988, 999", "620", "VALUE:T4b" ], [ "000, 988, 999", "650", "VALUE:T4b" ], [ "000, 988, 999", "700", "VALUE:T4b" ], [ "000, 988, 999", "720", "ERROR:" ], [ "000, 988, 999", "730", "VALUE:T4b" ], [ "000, 988, 999", "800", "VALUE:T4b" ], [ "000, 988, 999", "810", "VALUE:T4b" ], [ "000, 988, 999", "815", "VALUE:T4NOS" ], [ "010", "560", "VALUE:T4a(s)" ], [ "010", "600", "VALUE:T4b(s)" ], [ "010", "620", "VALUE:T4b(s)" ], [ "010", "650", "VALUE:T4b(s)" ], [ "010", "700", "VALUE:T4b(s)" ], [ "010", "720", "ERROR:" ], [ "010", "730", "VALUE:T4b(s)" ], [ "010", "800", "VALUE:T4b(s)" ], [ "010", "810", "VALUE:T4b(s)" ], [ "010", "815", "VALUE:T4NOS(s)" ], [ "020", "560", "VALUE:T4a(m)" ], [ "020", "600", "VALUE:T4b(m)" ], [ "020", "620", "VALUE:T4b(m)" ], [ "020", "650", "VALUE:T4b(m)" ], [ "020", "700", "VALUE:T4b(m)" ], [ "020", "720", "ERROR:" ], [ "020", "730", "VALUE:T4b(m)" ], [ "020", "800", "VALUE:T4b(m)" ], [ "020", "810", "VALUE:T4b(m)" ], [ "020", "815", "VALUE:T4NOS(m)" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_thickness_ulceration_tcategory_ajcc6_xkj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_thickness_ulceration_tcategory_ajcc6_xkj.json
deleted file mode 100644
index 773fd6d85..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_thickness_ulceration_tcategory_ajcc6_xkj.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "id" : "extension_thickness_ulceration_tcategory_ajcc6_xkj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Thickness Ulceration T Category AJCC6",
- "title" : "Extension Thickness Ulceration T Category AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 310-380, the T category for AJCC 6 staging is assigned based on thickness from CS Site-Specific Factor 1 and ulceration from CS Site-Specific Factor 2. For tumor thickness 0.01-1.00 millimeter (mm), ulceration and Clark level are used to assign staging to T1a and T1b as shown in the Extension Ulceration T1 AJCC6 Table.",
- "footnotes" : "- For tumor thickness of 0.01-1.00 millimeter (mm), the T category for AJCC 6 staging is assigned as shown in the Extension Ulceration T1 AJCC 6 Table.",
- "last_modified" : "2015-05-27T16:19:20.949Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1 Thickness",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2 Ulceration",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "000", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "000", "JUMP:extension_ulceration_t1_ajcc6_xbo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "000", "ERROR:" ], [ "310", "101-200", "000", "VALUE:T2a" ], [ "310", "201-400", "000", "VALUE:T3a" ], [ "310", "401-980", "000", "VALUE:T4a" ], [ "310", "999", "000", "VALUE:T1a" ], [ "315", "101-200", "000", "VALUE:T2a" ], [ "315", "201-400", "000", "VALUE:T3a" ], [ "315", "401-980", "000", "VALUE:T4a" ], [ "315", "999", "000", "VALUE:T1a" ], [ "320", "101-200", "000", "VALUE:T2a" ], [ "320", "201-400", "000", "VALUE:T3a" ], [ "320", "401-980", "000", "VALUE:T4a" ], [ "320", "999", "000", "VALUE:T1a" ], [ "330", "101-200", "000", "VALUE:T2a" ], [ "330", "201-400", "000", "VALUE:T3a" ], [ "330", "401-980", "000", "VALUE:T4a" ], [ "330", "999", "000", "VALUE:T2a" ], [ "335", "101-200", "000", "VALUE:T2a" ], [ "335", "201-400", "000", "VALUE:T3a" ], [ "335", "401-980", "000", "VALUE:T4a" ], [ "335", "999", "000", "VALUE:T2a" ], [ "340", "101-200", "000", "VALUE:T2a" ], [ "340", "201-400", "000", "VALUE:T3a" ], [ "340", "401-980", "000", "VALUE:T4a" ], [ "340", "999", "000", "VALUE:T2a" ], [ "350", "101-200", "000", "VALUE:T2a" ], [ "350", "201-400", "000", "VALUE:T3a" ], [ "350", "401-980", "000", "VALUE:T4a" ], [ "350", "999", "000", "VALUE:T3a" ], [ "355", "101-200", "000", "VALUE:T2a" ], [ "355", "201-400", "000", "VALUE:T3a" ], [ "355", "401-980", "000", "VALUE:T4a" ], [ "355", "999", "000", "VALUE:T3a" ], [ "360", "101-200", "000", "VALUE:T2a" ], [ "360", "201-400", "000", "VALUE:T3a" ], [ "360", "401-980", "000", "VALUE:T4a" ], [ "360", "999", "000", "VALUE:T3a" ], [ "370", "101-200", "000", "VALUE:T2a" ], [ "370", "201-400", "000", "VALUE:T3a" ], [ "370", "401-980", "000", "VALUE:T4a" ], [ "370", "999", "000", "VALUE:T4a" ], [ "375", "101-200", "000", "VALUE:T2a" ], [ "375", "201-400", "000", "VALUE:T3a" ], [ "375", "401-980", "000", "VALUE:T4a" ], [ "375", "999", "000", "VALUE:T4a" ], [ "380", "101-200", "000", "VALUE:T2a" ], [ "380", "201-400", "000", "VALUE:T3a" ], [ "380", "401-980", "000", "VALUE:T4a" ], [ "380", "999", "000", "VALUE:T4a" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "001", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "001", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "001", "ERROR:" ], [ "310", "101-200", "001", "ERROR:" ], [ "310", "201-400", "001", "ERROR:" ], [ "310", "401-980", "001", "ERROR:" ], [ "310", "999", "001", "ERROR:" ], [ "315", "101-200", "001", "ERROR:" ], [ "315", "201-400", "001", "ERROR:" ], [ "315", "401-980", "001", "ERROR:" ], [ "315", "999", "001", "ERROR:" ], [ "320", "101-200", "001", "ERROR:" ], [ "320", "201-400", "001", "ERROR:" ], [ "320", "401-980", "001", "ERROR:" ], [ "320", "999", "001", "ERROR:" ], [ "330", "101-200", "001", "ERROR:" ], [ "330", "201-400", "001", "ERROR:" ], [ "330", "401-980", "001", "ERROR:" ], [ "330", "999", "001", "ERROR:" ], [ "335", "101-200", "001", "ERROR:" ], [ "335", "201-400", "001", "ERROR:" ], [ "335", "401-980", "001", "ERROR:" ], [ "335", "999", "001", "ERROR:" ], [ "340", "101-200", "001", "ERROR:" ], [ "340", "201-400", "001", "ERROR:" ], [ "340", "401-980", "001", "ERROR:" ], [ "340", "999", "001", "ERROR:" ], [ "350", "101-200", "001", "ERROR:" ], [ "350", "201-400", "001", "ERROR:" ], [ "350", "401-980", "001", "ERROR:" ], [ "350", "999", "001", "ERROR:" ], [ "355", "101-200", "001", "ERROR:" ], [ "355", "201-400", "001", "ERROR:" ], [ "355", "401-980", "001", "ERROR:" ], [ "355", "999", "001", "ERROR:" ], [ "360", "101-200", "001", "ERROR:" ], [ "360", "201-400", "001", "ERROR:" ], [ "360", "401-980", "001", "ERROR:" ], [ "360", "999", "001", "ERROR:" ], [ "370", "101-200", "001", "ERROR:" ], [ "370", "201-400", "001", "ERROR:" ], [ "370", "401-980", "001", "ERROR:" ], [ "370", "999", "001", "ERROR:" ], [ "375", "101-200", "001", "ERROR:" ], [ "375", "201-400", "001", "ERROR:" ], [ "375", "401-980", "001", "ERROR:" ], [ "375", "999", "001", "ERROR:" ], [ "380", "101-200", "001", "ERROR:" ], [ "380", "201-400", "001", "ERROR:" ], [ "380", "401-980", "001", "ERROR:" ], [ "380", "999", "001", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "010", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "010", "JUMP:extension_ulceration_t1_ajcc6_xbo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "010", "ERROR:" ], [ "310", "101-200", "010", "VALUE:T2b" ], [ "310", "201-400", "010", "VALUE:T3b" ], [ "310", "401-980", "010", "VALUE:T4b" ], [ "310", "999", "010", "VALUE:T1b" ], [ "315", "101-200", "010", "VALUE:T2b" ], [ "315", "201-400", "010", "VALUE:T3b" ], [ "315", "401-980", "010", "VALUE:T4b" ], [ "315", "999", "010", "VALUE:T1b" ], [ "320", "101-200", "010", "VALUE:T2b" ], [ "320", "201-400", "010", "VALUE:T3b" ], [ "320", "401-980", "010", "VALUE:T4b" ], [ "320", "999", "010", "VALUE:T1b" ], [ "330", "101-200", "010", "VALUE:T2b" ], [ "330", "201-400", "010", "VALUE:T3b" ], [ "330", "401-980", "010", "VALUE:T4b" ], [ "330", "999", "010", "VALUE:T2b" ], [ "335", "101-200", "010", "VALUE:T2b" ], [ "335", "201-400", "010", "VALUE:T3b" ], [ "335", "401-980", "010", "VALUE:T4b" ], [ "335", "999", "010", "VALUE:T2b" ], [ "340", "101-200", "010", "VALUE:T2b" ], [ "340", "201-400", "010", "VALUE:T3b" ], [ "340", "401-980", "010", "VALUE:T4b" ], [ "340", "999", "010", "VALUE:T2b" ], [ "350", "101-200", "010", "VALUE:T2b" ], [ "350", "201-400", "010", "VALUE:T3b" ], [ "350", "401-980", "010", "VALUE:T4b" ], [ "350", "999", "010", "VALUE:T3b" ], [ "355", "101-200", "010", "VALUE:T2b" ], [ "355", "201-400", "010", "VALUE:T3b" ], [ "355", "401-980", "010", "VALUE:T4b" ], [ "355", "999", "010", "VALUE:T3b" ], [ "360", "101-200", "010", "VALUE:T2b" ], [ "360", "201-400", "010", "VALUE:T3b" ], [ "360", "401-980", "010", "VALUE:T4b" ], [ "360", "999", "010", "VALUE:T3b" ], [ "370", "101-200", "010", "VALUE:T2b" ], [ "370", "201-400", "010", "VALUE:T3b" ], [ "370", "401-980", "010", "VALUE:T4b" ], [ "370", "999", "010", "VALUE:T4b" ], [ "375", "101-200", "010", "VALUE:T2b" ], [ "375", "201-400", "010", "VALUE:T3b" ], [ "375", "401-980", "010", "VALUE:T4b" ], [ "375", "999", "010", "VALUE:T4b" ], [ "380", "101-200", "010", "VALUE:T2b" ], [ "380", "201-400", "010", "VALUE:T3b" ], [ "380", "401-980", "010", "VALUE:T4b" ], [ "380", "999", "010", "VALUE:T4b" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "988", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "988", "JUMP:extension_ulceration_t1_ajcc6_xbo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "988", "ERROR:" ], [ "310", "101-200", "988", "ERROR:" ], [ "310", "201-400", "988", "ERROR:" ], [ "310", "401-980", "988", "ERROR:" ], [ "310", "999", "988", "ERROR:" ], [ "315", "101-200", "988", "ERROR:" ], [ "315", "201-400", "988", "ERROR:" ], [ "315", "401-980", "988", "ERROR:" ], [ "315", "999", "988", "ERROR:" ], [ "320", "101-200", "988", "ERROR:" ], [ "320", "201-400", "988", "ERROR:" ], [ "320", "401-980", "988", "ERROR:" ], [ "320", "999", "988", "ERROR:" ], [ "330", "101-200", "988", "ERROR:" ], [ "330", "201-400", "988", "ERROR:" ], [ "330", "401-980", "988", "ERROR:" ], [ "330", "999", "988", "ERROR:" ], [ "335", "101-200", "988", "ERROR:" ], [ "335", "201-400", "988", "ERROR:" ], [ "335", "401-980", "988", "ERROR:" ], [ "335", "999", "988", "ERROR:" ], [ "340", "101-200", "988", "ERROR:" ], [ "340", "201-400", "988", "ERROR:" ], [ "340", "401-980", "988", "ERROR:" ], [ "340", "999", "988", "ERROR:" ], [ "350", "101-200", "988", "ERROR:" ], [ "350", "201-400", "988", "ERROR:" ], [ "350", "401-980", "988", "ERROR:" ], [ "350", "999", "988", "ERROR:" ], [ "355", "101-200", "988", "ERROR:" ], [ "355", "201-400", "988", "ERROR:" ], [ "355", "401-980", "988", "ERROR:" ], [ "355", "999", "988", "ERROR:" ], [ "360", "101-200", "988", "ERROR:" ], [ "360", "201-400", "988", "ERROR:" ], [ "360", "401-980", "988", "ERROR:" ], [ "360", "999", "988", "ERROR:" ], [ "370", "101-200", "988", "ERROR:" ], [ "370", "201-400", "988", "ERROR:" ], [ "370", "401-980", "988", "ERROR:" ], [ "370", "999", "988", "ERROR:" ], [ "375", "101-200", "988", "ERROR:" ], [ "375", "201-400", "988", "ERROR:" ], [ "375", "401-980", "988", "ERROR:" ], [ "375", "999", "988", "ERROR:" ], [ "380", "101-200", "988", "ERROR:" ], [ "380", "201-400", "988", "ERROR:" ], [ "380", "401-980", "988", "ERROR:" ], [ "380", "999", "988", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "999", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "999", "JUMP:extension_ulceration_t1_ajcc6_xbo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "999", "ERROR:" ], [ "310", "101-200", "999", "VALUE:T2NOS" ], [ "310", "201-400", "999", "VALUE:T3NOS" ], [ "310", "401-980", "999", "VALUE:T4NOS" ], [ "310", "999", "999", "VALUE:T1a" ], [ "315", "101-200", "999", "VALUE:T2NOS" ], [ "315", "201-400", "999", "VALUE:T3NOS" ], [ "315", "401-980", "999", "VALUE:T4NOS" ], [ "315", "999", "999", "VALUE:T1NOS" ], [ "320", "101-200", "999", "VALUE:T2NOS" ], [ "320", "201-400", "999", "VALUE:T3NOS" ], [ "320", "401-980", "999", "VALUE:T4NOS" ], [ "320", "999", "999", "VALUE:T1NOS" ], [ "330", "101-200", "999", "VALUE:T2a" ], [ "330", "201-400", "999", "VALUE:T3NOS" ], [ "330", "401-980", "999", "VALUE:T4NOS" ], [ "330", "999", "999", "VALUE:T2a" ], [ "335", "101-200", "999", "VALUE:T2b" ], [ "335", "201-400", "999", "VALUE:T3NOS" ], [ "335", "401-980", "999", "VALUE:T4NOS" ], [ "335", "999", "999", "VALUE:T2b" ], [ "340", "101-200", "999", "VALUE:T2NOS" ], [ "340", "201-400", "999", "VALUE:T3NOS" ], [ "340", "401-980", "999", "VALUE:T4NOS" ], [ "340", "999", "999", "VALUE:T2NOS" ], [ "350", "101-200", "999", "VALUE:T2NOS" ], [ "350", "201-400", "999", "VALUE:T3a" ], [ "350", "401-980", "999", "VALUE:T4NOS" ], [ "350", "999", "999", "VALUE:T3a" ], [ "355", "101-200", "999", "VALUE:T2NOS" ], [ "355", "201-400", "999", "VALUE:T3b" ], [ "355", "401-980", "999", "VALUE:T4NOS" ], [ "355", "999", "999", "VALUE:T3b" ], [ "360", "101-200", "999", "VALUE:T2NOS" ], [ "360", "201-400", "999", "VALUE:T3NOS" ], [ "360", "401-980", "999", "VALUE:T4NOS" ], [ "360", "999", "999", "VALUE:T3NOS" ], [ "370", "101-200", "999", "VALUE:T2NOS" ], [ "370", "201-400", "999", "VALUE:T3NOS" ], [ "370", "401-980", "999", "VALUE:T4a" ], [ "370", "999", "999", "VALUE:T4a" ], [ "375", "101-200", "999", "VALUE:T2NOS" ], [ "375", "201-400", "999", "VALUE:T3NOS" ], [ "375", "401-980", "999", "VALUE:T4b" ], [ "375", "999", "999", "VALUE:T4b" ], [ "380", "101-200", "999", "VALUE:T2NOS" ], [ "380", "201-400", "999", "VALUE:T3NOS" ], [ "380", "401-980", "999", "VALUE:T4NOS" ], [ "380", "999", "999", "VALUE:T4NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_thickness_ulceration_tcategory_ajcc7_xkk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_thickness_ulceration_tcategory_ajcc7_xkk.json
deleted file mode 100644
index d031a0fb0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_thickness_ulceration_tcategory_ajcc7_xkk.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "id" : "extension_thickness_ulceration_tcategory_ajcc7_xkk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Thickness Ulceration T Category AJCC7",
- "title" : "Extension Thickness Ulceration T Category AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 310-380, the T category for AJCC 7 staging is assigned based on thickness from CS Site-Specific Factor 1 and ulceration from CS Site-Specific Factor 2. For tumor thickness 0.01-1.00 millimeter (mm), ulceration and mitotic rate are used to assign staging to T1a and T1b as shown in the Mitotic Rate Ulceration T1 AJCC 7 Table.",
- "footnotes" : "- For tumor thickness of 0.01-1.00 millimeter (mm), the T category for AJCC7 staging is assigned as shown in the Mitotic Rate Ulceration T1 AJCC 7 Table.",
- "last_modified" : "2015-05-27T16:19:21.032Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1 Thickness",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2 Ulceration",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "AJCC 7 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "000", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "000", "JUMP:mitotic_rate_ulceration_t1_ajcc7_xgo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "000", "ERROR:" ], [ "310", "101-200", "000", "VALUE:T2a" ], [ "310", "201-400", "000", "VALUE:T3a" ], [ "310", "401-980", "000", "VALUE:T4a" ], [ "310", "999", "000", "VALUE:T1a" ], [ "315", "101-200", "000", "VALUE:T2a" ], [ "315", "201-400", "000", "VALUE:T3a" ], [ "315", "401-980", "000", "VALUE:T4a" ], [ "315", "999", "000", "VALUE:T1a" ], [ "320", "101-200", "000", "VALUE:T2a" ], [ "320", "201-400", "000", "VALUE:T3a" ], [ "320", "401-980", "000", "VALUE:T4a" ], [ "320", "999", "000", "VALUE:T1a" ], [ "330", "101-200", "000", "VALUE:T2a" ], [ "330", "201-400", "000", "VALUE:T3a" ], [ "330", "401-980", "000", "VALUE:T4a" ], [ "330", "999", "000", "VALUE:T2a" ], [ "335", "101-200", "000", "VALUE:T2a" ], [ "335", "201-400", "000", "VALUE:T3a" ], [ "335", "401-980", "000", "VALUE:T4a" ], [ "335", "999", "000", "VALUE:T2a" ], [ "340", "101-200", "000", "VALUE:T2a" ], [ "340", "201-400", "000", "VALUE:T3a" ], [ "340", "401-980", "000", "VALUE:T4a" ], [ "340", "999", "000", "VALUE:T2a" ], [ "350", "101-200", "000", "VALUE:T2a" ], [ "350", "201-400", "000", "VALUE:T3a" ], [ "350", "401-980", "000", "VALUE:T4a" ], [ "350", "999", "000", "VALUE:T3a" ], [ "355", "101-200", "000", "VALUE:T2a" ], [ "355", "201-400", "000", "VALUE:T3a" ], [ "355", "401-980", "000", "VALUE:T4a" ], [ "355", "999", "000", "VALUE:T3a" ], [ "360", "101-200", "000", "VALUE:T2a" ], [ "360", "201-400", "000", "VALUE:T3a" ], [ "360", "401-980", "000", "VALUE:T4a" ], [ "360", "999", "000", "VALUE:T3a" ], [ "370", "101-200", "000", "VALUE:T2a" ], [ "370", "201-400", "000", "VALUE:T3a" ], [ "370", "401-980", "000", "VALUE:T4a" ], [ "370", "999", "000", "VALUE:T4a" ], [ "375", "101-200", "000", "VALUE:T2a" ], [ "375", "201-400", "000", "VALUE:T3a" ], [ "375", "401-980", "000", "VALUE:T4a" ], [ "375", "999", "000", "VALUE:T4a" ], [ "380", "101-200", "000", "VALUE:T2a" ], [ "380", "201-400", "000", "VALUE:T3a" ], [ "380", "401-980", "000", "VALUE:T4a" ], [ "380", "999", "000", "VALUE:T4a" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "001", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "001", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "001", "ERROR:" ], [ "310", "101-200", "001", "ERROR:" ], [ "310", "201-400", "001", "ERROR:" ], [ "310", "401-980", "001", "ERROR:" ], [ "310", "999", "001", "ERROR:" ], [ "315", "101-200", "001", "ERROR:" ], [ "315", "201-400", "001", "ERROR:" ], [ "315", "401-980", "001", "ERROR:" ], [ "315", "999", "001", "ERROR:" ], [ "320", "101-200", "001", "ERROR:" ], [ "320", "201-400", "001", "ERROR:" ], [ "320", "401-980", "001", "ERROR:" ], [ "320", "999", "001", "ERROR:" ], [ "330", "101-200", "001", "ERROR:" ], [ "330", "201-400", "001", "ERROR:" ], [ "330", "401-980", "001", "ERROR:" ], [ "330", "999", "001", "ERROR:" ], [ "335", "101-200", "001", "ERROR:" ], [ "335", "201-400", "001", "ERROR:" ], [ "335", "401-980", "001", "ERROR:" ], [ "335", "999", "001", "ERROR:" ], [ "340", "101-200", "001", "ERROR:" ], [ "340", "201-400", "001", "ERROR:" ], [ "340", "401-980", "001", "ERROR:" ], [ "340", "999", "001", "ERROR:" ], [ "350", "101-200", "001", "ERROR:" ], [ "350", "201-400", "001", "ERROR:" ], [ "350", "401-980", "001", "ERROR:" ], [ "350", "999", "001", "ERROR:" ], [ "355", "101-200", "001", "ERROR:" ], [ "355", "201-400", "001", "ERROR:" ], [ "355", "401-980", "001", "ERROR:" ], [ "355", "999", "001", "ERROR:" ], [ "360", "101-200", "001", "ERROR:" ], [ "360", "201-400", "001", "ERROR:" ], [ "360", "401-980", "001", "ERROR:" ], [ "360", "999", "001", "ERROR:" ], [ "370", "101-200", "001", "ERROR:" ], [ "370", "201-400", "001", "ERROR:" ], [ "370", "401-980", "001", "ERROR:" ], [ "370", "999", "001", "ERROR:" ], [ "375", "101-200", "001", "ERROR:" ], [ "375", "201-400", "001", "ERROR:" ], [ "375", "401-980", "001", "ERROR:" ], [ "375", "999", "001", "ERROR:" ], [ "380", "101-200", "001", "ERROR:" ], [ "380", "201-400", "001", "ERROR:" ], [ "380", "401-980", "001", "ERROR:" ], [ "380", "999", "001", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "010", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "010", "JUMP:mitotic_rate_ulceration_t1_ajcc7_xgo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "010", "ERROR:" ], [ "310", "101-200", "010", "VALUE:T2b" ], [ "310", "201-400", "010", "VALUE:T3b" ], [ "310", "401-980", "010", "VALUE:T4b" ], [ "310", "999", "010", "VALUE:T1b" ], [ "315", "101-200", "010", "VALUE:T2b" ], [ "315", "201-400", "010", "VALUE:T3b" ], [ "315", "401-980", "010", "VALUE:T4b" ], [ "315", "999", "010", "VALUE:T1b" ], [ "320", "101-200", "010", "VALUE:T2b" ], [ "320", "201-400", "010", "VALUE:T3b" ], [ "320", "401-980", "010", "VALUE:T4b" ], [ "320", "999", "010", "VALUE:T1b" ], [ "330", "101-200", "010", "VALUE:T2b" ], [ "330", "201-400", "010", "VALUE:T3b" ], [ "330", "401-980", "010", "VALUE:T4b" ], [ "330", "999", "010", "VALUE:T2b" ], [ "335", "101-200", "010", "VALUE:T2b" ], [ "335", "201-400", "010", "VALUE:T3b" ], [ "335", "401-980", "010", "VALUE:T4b" ], [ "335", "999", "010", "VALUE:T2b" ], [ "340", "101-200", "010", "VALUE:T2b" ], [ "340", "201-400", "010", "VALUE:T3b" ], [ "340", "401-980", "010", "VALUE:T4b" ], [ "340", "999", "010", "VALUE:T2b" ], [ "350", "101-200", "010", "VALUE:T2b" ], [ "350", "201-400", "010", "VALUE:T3b" ], [ "350", "401-980", "010", "VALUE:T4b" ], [ "350", "999", "010", "VALUE:T3b" ], [ "355", "101-200", "010", "VALUE:T2b" ], [ "355", "201-400", "010", "VALUE:T3b" ], [ "355", "401-980", "010", "VALUE:T4b" ], [ "355", "999", "010", "VALUE:T3b" ], [ "360", "101-200", "010", "VALUE:T2b" ], [ "360", "201-400", "010", "VALUE:T3b" ], [ "360", "401-980", "010", "VALUE:T4b" ], [ "360", "999", "010", "VALUE:T3b" ], [ "370", "101-200", "010", "VALUE:T2b" ], [ "370", "201-400", "010", "VALUE:T3b" ], [ "370", "401-980", "010", "VALUE:T4b" ], [ "370", "999", "010", "VALUE:T4b" ], [ "375", "101-200", "010", "VALUE:T2b" ], [ "375", "201-400", "010", "VALUE:T3b" ], [ "375", "401-980", "010", "VALUE:T4b" ], [ "375", "999", "010", "VALUE:T4b" ], [ "380", "101-200", "010", "VALUE:T2b" ], [ "380", "201-400", "010", "VALUE:T3b" ], [ "380", "401-980", "010", "VALUE:T4b" ], [ "380", "999", "010", "VALUE:T4b" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "988", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "988", "JUMP:mitotic_rate_ulceration_t1_ajcc7_xgo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "988", "ERROR:" ], [ "310", "101-200", "988", "ERROR:" ], [ "310", "201-400", "988", "ERROR:" ], [ "310", "401-980", "988", "ERROR:" ], [ "310", "999", "988", "ERROR:" ], [ "315", "101-200", "988", "ERROR:" ], [ "315", "201-400", "988", "ERROR:" ], [ "315", "401-980", "988", "ERROR:" ], [ "315", "999", "988", "ERROR:" ], [ "320", "101-200", "988", "ERROR:" ], [ "320", "201-400", "988", "ERROR:" ], [ "320", "401-980", "988", "ERROR:" ], [ "320", "999", "988", "ERROR:" ], [ "330", "101-200", "988", "ERROR:" ], [ "330", "201-400", "988", "ERROR:" ], [ "330", "401-980", "988", "ERROR:" ], [ "330", "999", "988", "ERROR:" ], [ "335", "101-200", "988", "ERROR:" ], [ "335", "201-400", "988", "ERROR:" ], [ "335", "401-980", "988", "ERROR:" ], [ "335", "999", "988", "ERROR:" ], [ "340", "101-200", "988", "ERROR:" ], [ "340", "201-400", "988", "ERROR:" ], [ "340", "401-980", "988", "ERROR:" ], [ "340", "999", "988", "ERROR:" ], [ "350", "101-200", "988", "ERROR:" ], [ "350", "201-400", "988", "ERROR:" ], [ "350", "401-980", "988", "ERROR:" ], [ "350", "999", "988", "ERROR:" ], [ "355", "101-200", "988", "ERROR:" ], [ "355", "201-400", "988", "ERROR:" ], [ "355", "401-980", "988", "ERROR:" ], [ "355", "999", "988", "ERROR:" ], [ "360", "101-200", "988", "ERROR:" ], [ "360", "201-400", "988", "ERROR:" ], [ "360", "401-980", "988", "ERROR:" ], [ "360", "999", "988", "ERROR:" ], [ "370", "101-200", "988", "ERROR:" ], [ "370", "201-400", "988", "ERROR:" ], [ "370", "401-980", "988", "ERROR:" ], [ "370", "999", "988", "ERROR:" ], [ "375", "101-200", "988", "ERROR:" ], [ "375", "201-400", "988", "ERROR:" ], [ "375", "401-980", "988", "ERROR:" ], [ "375", "999", "988", "ERROR:" ], [ "380", "101-200", "988", "ERROR:" ], [ "380", "201-400", "988", "ERROR:" ], [ "380", "401-980", "988", "ERROR:" ], [ "380", "999", "988", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "999", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001-100", "999", "JUMP:mitotic_rate_ulceration_t1_ajcc7_xgo" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "981-990", "999", "ERROR:" ], [ "310", "101-200", "999", "VALUE:T2NOS" ], [ "310", "201-400", "999", "VALUE:T3NOS" ], [ "310", "401-980", "999", "VALUE:T4NOS" ], [ "310", "999", "999", "VALUE:T1a" ], [ "315", "101-200", "999", "VALUE:T2NOS" ], [ "315", "201-400", "999", "VALUE:T3NOS" ], [ "315", "401-980", "999", "VALUE:T4NOS" ], [ "315", "999", "999", "VALUE:T1b" ], [ "320", "101-200", "999", "VALUE:T2NOS" ], [ "320", "201-400", "999", "VALUE:T3NOS" ], [ "320", "401-980", "999", "VALUE:T4NOS" ], [ "320", "999", "999", "VALUE:T1NOS" ], [ "330", "101-200", "999", "VALUE:T2a" ], [ "330", "201-400", "999", "VALUE:T3NOS" ], [ "330", "401-980", "999", "VALUE:T4NOS" ], [ "330", "999", "999", "VALUE:T2a" ], [ "335", "101-200", "999", "VALUE:T2b" ], [ "335", "201-400", "999", "VALUE:T3NOS" ], [ "335", "401-980", "999", "VALUE:T4NOS" ], [ "335", "999", "999", "VALUE:T2b" ], [ "340", "101-200", "999", "VALUE:T2NOS" ], [ "340", "201-400", "999", "VALUE:T3NOS" ], [ "340", "401-980", "999", "VALUE:T4NOS" ], [ "340", "999", "999", "VALUE:T2NOS" ], [ "350", "101-200", "999", "VALUE:T2NOS" ], [ "350", "201-400", "999", "VALUE:T3a" ], [ "350", "401-980", "999", "VALUE:T4NOS" ], [ "350", "999", "999", "VALUE:T3a" ], [ "355", "101-200", "999", "VALUE:T2NOS" ], [ "355", "201-400", "999", "VALUE:T3b" ], [ "355", "401-980", "999", "VALUE:T4NOS" ], [ "355", "999", "999", "VALUE:T3b" ], [ "360", "101-200", "999", "VALUE:T2NOS" ], [ "360", "201-400", "999", "VALUE:T3NOS" ], [ "360", "401-980", "999", "VALUE:T4NOS" ], [ "360", "999", "999", "VALUE:T3NOS" ], [ "370", "101-200", "999", "VALUE:T2NOS" ], [ "370", "201-400", "999", "VALUE:T3NOS" ], [ "370", "401-980", "999", "VALUE:T4a" ], [ "370", "999", "999", "VALUE:T4a" ], [ "375", "101-200", "999", "VALUE:T2NOS" ], [ "375", "201-400", "999", "VALUE:T3NOS" ], [ "375", "401-980", "999", "VALUE:T4b" ], [ "375", "999", "999", "VALUE:T4b" ], [ "380", "101-200", "999", "VALUE:T2NOS" ], [ "380", "201-400", "999", "VALUE:T3NOS" ], [ "380", "401-980", "999", "VALUE:T4NOS" ], [ "380", "999", "999", "VALUE:T4NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ulceration_t1_ajcc6_xbo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ulceration_t1_ajcc6_xbo.json
deleted file mode 100644
index 05df7e1fe..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/extension_ulceration_t1_ajcc6_xbo.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "extension_ulceration_t1_ajcc6_xbo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Extension Ulceration T1 AJCC6",
- "title" : "Extension Ulceration T1 AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 100-800 and 999 ONLY with thickness (CS Site-Specific Factor 1) between 001and 100 (0.01 to 1.00 millimeter (mm)), the T1 category for AJCC 6 staging is based on the value of Clark level of invasion coded in CS Extension and ulceration coded in CS Site-Specific Factor 2.",
- "last_modified" : "2015-05-27T16:19:21.106Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2 Ulceration",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "AJCC 6 T",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "VALUE:T1a" ], [ "200", "000", "VALUE:T1a" ], [ "300", "000", "VALUE:T1b" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "000", "VALUE:T1NOS" ], [ "400", "000", "VALUE:T1NOS" ], [ "500", "000", "VALUE:T1b" ], [ "800", "000", "VALUE:T1b" ], [ "999", "000", "VALUE:T1b" ], [ "100", "001", "ERROR:" ], [ "200", "001", "ERROR:" ], [ "300", "001", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "001", "ERROR:" ], [ "400", "001", "ERROR:" ], [ "500", "001", "ERROR:" ], [ "800", "001", "ERROR:" ], [ "999", "001", "ERROR:" ], [ "100", "010", "VALUE:T1b" ], [ "200", "010", "VALUE:T1b" ], [ "300", "010", "VALUE:T1b" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "010", "VALUE:T1NOS" ], [ "400", "010", "VALUE:T1b" ], [ "500", "010", "VALUE:T1b" ], [ "800", "010", "VALUE:T1b" ], [ "999", "010", "VALUE:T1b" ], [ "100", "988", "ERROR:" ], [ "200", "988", "ERROR:" ], [ "300", "988", "ERROR:" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "988", "ERROR:" ], [ "400", "988", "ERROR:" ], [ "500", "988", "ERROR:" ], [ "800", "988", "ERROR:" ], [ "999", "988", "ERROR:" ], [ "100", "999", "VALUE:T1NOS" ], [ "200", "999", "VALUE:T1NOS" ], [ "300", "999", "VALUE:T1b" ], [ "310,315,320,330,335,340,350,355,360,370,375,380", "999", "VALUE:T1NOS" ], [ "400", "999", "VALUE:T1NOS" ], [ "500", "999", "VALUE:T1b" ], [ "800", "999", "VALUE:T1b" ], [ "999", "999", "VALUE:T1b" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/grade.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/grade.json
deleted file mode 100644
index eed6525f9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/grade.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "grade",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Grade",
- "title" : "Grade",
- "last_modified" : "2015-05-27T16:19:21.164Z",
- "definition" : [ {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "desc",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "1", "Grade I" ], [ "2", "Grade II" ], [ "3", "Grade III" ], [ "4", "Grade IV" ], [ "5", "T-Cell" ], [ "6", "B-Cell" ], [ "7", "Null cell" ], [ "8", "NK (natural killer) cell" ], [ "9", "Grade/differentiation unknown, not stated, or not applicable" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/grade_category_calculation_xei.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/grade_category_calculation_xei.json
deleted file mode 100644
index ecccab479..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/grade_category_calculation_xei.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "grade_category_calculation_xei",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Grade Category Calculation",
- "title" : "Grade Category Calculation Table",
- "notes" : "**Note**: The Grade Category is based on CS Site-Specific Factor 11, Histopathologic Grading. The Grade Category is not the same as histologic grade (G); it is an intermediate variable used to derive stage. Note that the category C2 includes high grade for mucinous tumors and G2 and G3 (moderately differentiated and poorly differentiated) for non-mucinous tumors.",
- "last_modified" : "2015-05-27T16:19:21.212Z",
- "definition" : [ {
- "key" : "ssf11",
- "name" : "CS SSF11",
- "type" : "INPUT"
- }, {
- "key" : "grade_category",
- "name" : "Grade Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010", "VALUE:C1" ], [ "011", "VALUE:C1" ], [ "020", "VALUE:C2" ], [ "021", "VALUE:C2" ], [ "030", "VALUE:C3" ], [ "040", "VALUE:C4" ], [ "988", "VALUE:CX" ], [ "998", "VALUE:CX" ], [ "999", "VALUE:CX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_grade_stage_xce.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_grade_stage_xce.json
deleted file mode 100644
index c6eac7762..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_grade_stage_xce.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "histologies_grade_stage_xce",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histologies Grade Stage - AJCC 7",
- "title" : "Histologies, Grade, Stage - AJCC 7",
- "notes" : "**Note**: The determination of AJCC stage group from T, N, and M for thyroid depends further on histologic type, grade, and age. This table shows the selection of the appropriate version of the AJCC Stage table based on histology and grade. For papillary and follicular carcinomas, a further check on age is needed to identify the correct AJCC Stage table to be used. In the table below, \"Anaplastic\" maps to the table AJCC-Stage: Anaplastic; \"Med\", to AJCC-Stage: Medullary; and \"Pap/Fol\", to either AJCC Stage-Thyroid: Papillary and Follicular - Age less than 45 or AJCC Stage-Thyroid: Papillary and Follicular - Age 45 and Older. If age at diagnosis is unknown, AJCC stage is derived as unknown for papillary and follicular carcinomas.",
- "last_modified" : "2015-05-27T16:19:21.261Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "ICD-O-3 histology code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Stage Table",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_stage",
- "name" : "Stage Table 7",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "8020", "Carcinoma, undifferentiated, NOS", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm7_stage_thyroid_anaplastic_xdz" ], [ "8021", "Carcinoma, anaplastic, NOS", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm7_stage_thyroid_anaplastic_xdz" ], [ "8030", "Giant cell and spindle cell carcinoma", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm7_stage_thyroid_anaplastic_xdz" ], [ "8031", "Giant cell carcinoma", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm7_stage_thyroid_anaplastic_xdz" ], [ "8032", "Spindle cell carcinoma", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm7_stage_thyroid_anaplastic_xdz" ], [ "8345", "Medullary carcinoma with amyloid stroma (C73.9)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm7_stage_thyroid_medullary_xdy" ], [ "8346", "Mixed medullary-follicular carcinoma (C73.9)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm7_stage_thyroid_medullary_xdy" ], [ "8347", "Mixed medullary-papillary carcinoma (C73.9)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm7_stage_thyroid_medullary_xdy" ], [ "8430", "Mucoepidermoid tumor [obs]", "1,2,3,9", "*", "Med", "JUMP:ajcctnm7_stage_thyroid_medullary_xdy" ], [ "8510", "Medullary carcinoma, NOS", "1,2,3,9", "*", "Med", "JUMP:ajcctnm7_stage_thyroid_medullary_xdy" ], [ "8512", "Medullary carcinoma with lymphoid stroma", "1,2,3,9", "*", "Med", "JUMP:ajcctnm7_stage_thyroid_medullary_xdy" ], [ "8513", "Atypical medullary carcinoma (C50._)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm7_stage_thyroid_medullary_xdy" ], [ "*", "Any histology in inclusion table", "4", "*", "Anaplastic", "JUMP:ajcctnm7_stage_thyroid_anaplastic_xdz" ], [ "*", "Any histology in inclusion table", "5-8", "*", "ERROR", "ERROR:" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "1,2,3,9", "000-044", "Pap/Fol", "JUMP:ajcc7_stage_uag" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "1,2,3,9", "045-120", "Pap/Fol", "JUMP:ajcctnm7_stage_thyroid_papillaryand_follicular_age45and_older_xdx" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "1,2,3,9", "999", "Pap/Fol", "JUMP:determine_validity_for_ajcc7_ns42" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_grade_stage_xce_6.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_grade_stage_xce_6.json
deleted file mode 100644
index 408743b5d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_grade_stage_xce_6.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "histologies_grade_stage_xce_6",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histologies Grade Stage - AJCC 6",
- "title" : "Histologies, Grade, Stage - AJCC 6",
- "notes" : "**Note**: The determination of AJCC stage group from T, N, and M for thyroid depends further on histologic type, grade, and age. This table shows the selection of the appropriate version of the AJCC Stage table based on histology and grade. For papillary and follicular carcinomas, a further check on age is needed to identify the correct AJCC Stage table to be used. In the table below, \"Anaplastic\" maps to the table AJCC-Stage: Anaplastic; \"Med\", to AJCC-Stage: Medullary; and \"Pap/Fol\", to either AJCC Stage-Thyroid: Papillary and Follicular - Age less than 45 or AJCC Stage-Thyroid: Papillary and Follicular - Age 45 and Older. If age at diagnosis is unknown, AJCC stage is derived as unknown for papillary and follicular carcinomas.",
- "last_modified" : "2015-05-27T16:19:21.307Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "ICD-O-3 histology code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "age_dx",
- "name" : "Age at Diagnosis",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Stage Table",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc6_stage",
- "name" : "Stage Table 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "8020", "Carcinoma, undifferentiated, NOS", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm6_stage_thyroid_anaplastic_xcg" ], [ "8021", "Carcinoma, anaplastic, NOS", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm6_stage_thyroid_anaplastic_xcg" ], [ "8030", "Giant cell and spindle cell carcinoma", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm6_stage_thyroid_anaplastic_xcg" ], [ "8031", "Giant cell carcinoma", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm6_stage_thyroid_anaplastic_xcg" ], [ "8032", "Spindle cell carcinoma", "1,2,3,4,9", "*", "Anaplastic", "JUMP:ajcctnm6_stage_thyroid_anaplastic_xcg" ], [ "8345", "Medullary carcinoma with amyloid stroma (C73.9)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm6_stage_thyroid_medullary_xcf" ], [ "8346", "Mixed medullary-follicular carcinoma (C73.9)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm6_stage_thyroid_medullary_xcf" ], [ "8347", "Mixed medullary-papillary carcinoma (C73.9)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm6_stage_thyroid_medullary_xcf" ], [ "8430", "Mucoepidermoid tumor [obs]", "1,2,3,9", "*", "Med", "JUMP:ajcctnm6_stage_thyroid_medullary_xcf" ], [ "8510", "Medullary carcinoma, NOS", "1,2,3,9", "*", "Med", "JUMP:ajcctnm6_stage_thyroid_medullary_xcf" ], [ "8512", "Medullary carcinoma with lymphoid stroma", "1,2,3,9", "*", "Med", "JUMP:ajcctnm6_stage_thyroid_medullary_xcf" ], [ "8513", "Atypical medullary carcinoma (C50._)", "1,2,3,9", "*", "Med", "JUMP:ajcctnm6_stage_thyroid_medullary_xcf" ], [ "*", "Any histology in inclusion table", "4", "*", "Anaplastic", "JUMP:ajcctnm6_stage_thyroid_anaplastic_xcg" ], [ "*", "Any histology in inclusion table", "5-8", "*", "ERROR", "ERROR:" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "1,2,3,9", "000-044", "Pap/Fol", "JUMP:ajcc6_stage_qax" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "1,2,3,9", "045-120", "Pap/Fol", "JUMP:ajcctnm6_stage_thyroid_papillaryand_follicular_age45and_older_xco" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "1,2,3,9", "999", "Pap/Fol", "JUMP:determine_validity_for_ajcc6_ns50" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhq_6.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhq_6.json
deleted file mode 100644
index 3ec5b4009..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhq_6.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "histologies_stage_xhq_6",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histologies Stage TNM 6",
- "title" : "Histologies Stage Table - For TNM 6",
- "notes" : "**Note**: The determination of AJCC stage group from T, N, M, and grade for bone depends further on histologic type. This table shows the selection of the appropriate version of the AJCC Stage table based on histology. \"Ewing\" maps to the table AJCC TNM 6 and 7 Stage Ewing, which is used to derive stage group for both AJCC 6 and AJCC 7 staging. \"Not Ewing\" maps to the tables AJCC TNM 6 Stage Not Ewing and AJCC TNM 7 Stage Not Ewing for deriving AJCC 6and AJCC 7 stage group, respectively.",
- "last_modified" : "2015-05-27T16:19:21.353Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "ICD-O-3 Histology Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "9260", "Ewing sarcoma", "JUMP:ajcctnm6and7_stage_ewing_xho" ], [ "9364", "Peripheral neuroectodermal tumor", "JUMP:ajcctnm6and7_stage_ewing_xho" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "JUMP:ajcc6_stage_not_ewing_qai" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhq_7.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhq_7.json
deleted file mode 100644
index fe576c6d7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhq_7.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "histologies_stage_xhq_7",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histologies Stage TNM 7",
- "title" : "Histologies Stage Table - For TNM 7",
- "notes" : "**Note**: The determination of AJCC stage group from T, N, M, and grade for bone depends further on histologic type. This table shows the selection of the appropriate version of the AJCC Stage table based on histology. \"Ewing\" maps to the table AJCC TNM 6 and 7 Stage Ewing, which is used to derive stage group for both AJCC 6 and AJCC 7 staging. \"Not Ewing\" maps to the tables AJCC TNM 6 Stage Not Ewing and AJCC TNM 7 Stage Not Ewing for deriving AJCC 6and AJCC 7 stage group, respectively.",
- "last_modified" : "2015-05-27T16:19:21.398Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "ICD-O-3 Histology Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "stage",
- "name" : "Stage",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "9260", "Ewing sarcoma", "JUMP:ajcctnm6and7_stage_ewing_xho" ], [ "9364", "Peripheral neuroectodermal tumor", "JUMP:ajcctnm6and7_stage_ewing_xho" ], [ "*", "ALL OTHER HISTOLOGIES IN INCLUSION TABLE", "JUMP:ajcc7_stage_not_ewing_ube" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhw.json
deleted file mode 100644
index 9979edb9a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhw.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "histologies_stage_xhw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histologies Stage",
- "title" : "Histologies Stage Table",
- "notes" : "**Note 1**: The determination of the AJCC 7 stage group from T, N, M, and grade for esophagus depends further on histologic type. Since squamous cell carcinoma typically has a poorer prognosis than adenocarcinoma, a tumor of mixed histopathologic type (including a squamous component or NOS histology) or a type that is not otherwise specified should be staged as squamous cell carcinoma.\n\n**Note 2**: This table shows the selection of the appropriate version of the AJCC Stage table based on histology. In the table below, Squamous maps to the table AJCC TNM 7 Stage Squamous, and Adenocarcinoma maps to the table AJCC TNM 7 Stage Adenocarcinoma.",
- "last_modified" : "2015-05-27T16:19:21.442Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "ICD-O-3 histology code",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage Table",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "8000-8046", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8050", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8051-8131", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8140-8147", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8148-8157", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8160-8162", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8170-8175", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8180-8221", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8230-8249", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8250-8507", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8508", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8510-8513", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8514-8551", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8560-8570", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8571-8574", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8575", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8576", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8940-8941", "JUMP:ajcctnm7_stage_adenocarcinoma_xhz" ], [ "8950", "JUMP:ajcctnm7_stage_squamous_xhy" ], [ "8980-8981", "JUMP:ajcctnm7_stage_squamous_xhy" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhx.json
deleted file mode 100644
index d036c1348..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histologies_stage_xhx.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "histologies_stage_xhx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histologies Stage",
- "title" : "Histologies Stage Table",
- "notes" : "**Note 1**: The determination of AJCC stage group from T, N, M, and grade for EsophagusGEJunction depends further on histologic type. Since squamous cell carcinoma typically has a poorer prognosis than adenocarcinoma, a tumor of mixed histopathologic type (including a squamous component or NOS histology) or a type that is not otherwise specified should be staged as squamous cell carcinoma.\n\n**Note 2**: This table shows the selection of the appropriate version of the AJCC Stage table based on histology. In the table below, Squamous maps to the table AJCC TNM 7 Stage Squamous, and Adenocarcinoma maps to the table AJCC TNM 7 Stage Adenocarcinoma.",
- "last_modified" : "2015-05-27T16:19:21.494Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- }, {
- "key" : "stage",
- "name" : "Stage Table",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "8000-8046", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8050", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8051-8131", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8140-8147", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8148-8152", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8154-8157", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8160-8162", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8170-8175", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8180-8221", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8230-8231", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8243-8245", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8247-8248", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8250-8507", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8508-8513", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8514-8551", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8560-8570", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8571-8574", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8575", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8576", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8940-8941", "JUMP:ajcctnm7_stage_adenocarcinoma_xib" ], [ "8950", "JUMP:ajcctnm7_stage_squamous_xia" ], [ "8980-8981", "JUMP:ajcctnm7_stage_squamous_xia" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology.json
deleted file mode 100644
index ef1d5b03c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "id" : "histology",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histology",
- "title" : "Valid ICD-O-3 Histology Codes",
- "last_modified" : "2015-05-27T16:19:21.539Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "Histology",
- "type" : "INPUT"
- } ],
- "rows" : [ [ "8000-8005" ], [ "8010-8015" ], [ "8020-8022" ], [ "8030-8035" ], [ "8040-8046" ], [ "8050-8053" ], [ "8060" ], [ "8070-8078" ], [ "8080-8084" ], [ "8090-8098" ], [ "8100-8103" ], [ "8110" ], [ "8120-8124" ], [ "8130,8131" ], [ "8140-8157" ], [ "8160-8162" ], [ "8170-8175" ], [ "8180" ], [ "8190,8191" ], [ "8200-8202" ], [ "8204" ], [ "8210-8215" ], [ "8220,8221" ], [ "8230,8231" ], [ "8240-8255" ], [ "8260-8264" ], [ "8270-8272" ], [ "8280,8281" ], [ "8290" ], [ "8300" ], [ "8310-8325" ], [ "8330-8337" ], [ "8340-8347" ], [ "8350" ], [ "8360,8361" ], [ "8370-8375" ], [ "8380-8384" ], [ "8390-8392" ], [ "8400-8410" ], [ "8413" ], [ "8420" ], [ "8430" ], [ "8440-8444" ], [ "8450-8454" ], [ "8460-8463" ], [ "8470-8473" ], [ "8480-8482" ], [ "8490" ], [ "8500-8508" ], [ "8510" ], [ "8512-8514" ], [ "8520-8525" ], [ "8530" ], [ "8540-8543" ], [ "8550,8551" ], [ "8560-8562" ], [ "8570-8576" ], [ "8580-8593" ], [ "8600-8602" ], [ "8610" ], [ "8620-8623" ], [ "8630-8634" ], [ "8640-8642" ], [ "8650" ], [ "8660" ], [ "8670,8671" ], [ "8680-8683" ], [ "8690-8693" ], [ "8700" ], [ "8710-8713" ], [ "8720-8723" ], [ "8725-8728" ], [ "8730" ], [ "8740-8746" ], [ "8750" ], [ "8760-8762" ], [ "8770-8774" ], [ "8780" ], [ "8790" ], [ "8800-8806" ], [ "8810-8815" ], [ "8820-8827" ], [ "8830-8836" ], [ "8840-8842" ], [ "8850-8858" ], [ "8860-8862" ], [ "8870" ], [ "8880,8881" ], [ "8890-8898" ], [ "8900-8905" ], [ "8910" ], [ "8912" ], [ "8920,8921" ], [ "8930-8936" ], [ "8940,8941" ], [ "8950,8951" ], [ "8959,8960" ], [ "8963-8967" ], [ "8970-8974" ], [ "8980-8983" ], [ "8990,8991" ], [ "9000" ], [ "9010-9016" ], [ "9020" ], [ "9030" ], [ "9040-9044" ], [ "9050-9055" ], [ "9060-9065" ], [ "9070-9073" ], [ "9080-9085" ], [ "9090,9091" ], [ "9100-9105" ], [ "9110" ], [ "9120-9125" ], [ "9130-9133" ], [ "9135,9136" ], [ "9140-9142" ], [ "9150" ], [ "9160,9161" ], [ "9170-9175" ], [ "9180-9187" ], [ "9191-9195" ], [ "9200" ], [ "9210" ], [ "9220,9221" ], [ "9230,9231" ], [ "9240-9243" ], [ "9250-9252" ], [ "9260-9262" ], [ "9270-9275" ], [ "9280-9282" ], [ "9290" ], [ "9300-9302" ], [ "9310-9312" ], [ "9320-9322" ], [ "9330" ], [ "9340-9342" ], [ "9350-9352" ], [ "9360-9365" ], [ "9370-9373" ], [ "9380-9384" ], [ "9390-9394" ], [ "9400,9401" ], [ "9410-9413" ], [ "9420,9421" ], [ "9423,9424" ], [ "9430" ], [ "9440-9442" ], [ "9444" ], [ "9450,9451" ], [ "9460" ], [ "9470-9474" ], [ "9480" ], [ "9490-9493" ], [ "9500-9508" ], [ "9510-9514" ], [ "9520-9523" ], [ "9530-9535" ], [ "9537-9541" ], [ "9550" ], [ "9560-9562" ], [ "9570,9571" ], [ "9580-9582" ], [ "9590,9591" ], [ "9596,9597" ], [ "9650-9655" ], [ "9659" ], [ "9661-9665" ], [ "9667" ], [ "9670,9671" ], [ "9673" ], [ "9675" ], [ "9678-9680" ], [ "9684" ], [ "9687-9691" ], [ "9695" ], [ "9698-9702" ], [ "9705" ], [ "9708,9709" ], [ "9712" ], [ "9714" ], [ "9716-9719" ], [ "9724-9729" ], [ "9731-9735" ], [ "9737,9738" ], [ "9740-9742" ], [ "9750-9762" ], [ "9764-9769" ], [ "9800,9801" ], [ "9805-9809" ], [ "9811-9818" ], [ "9820" ], [ "9823" ], [ "9826,9827" ], [ "9831-9837" ], [ "9840" ], [ "9860,9861" ], [ "9863" ], [ "9865-9867" ], [ "9869-9876" ], [ "9891" ], [ "9895-9898" ], [ "9910,9911" ], [ "9920" ], [ "9930,9931" ], [ "9940" ], [ "9945,9946" ], [ "9948" ], [ "9950" ], [ "9960-9967" ], [ "9970,9971" ], [ "9975" ], [ "9980" ], [ "9982-9987" ], [ "9989" ], [ "9991,9992" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_ajcc6_xkw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_ajcc6_xkw.json
deleted file mode 100644
index 9986f1e05..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_ajcc6_xkw.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "histology_grade_extension_ajcc6_xkw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histology Grade Extension AJCC6",
- "title" : "Histology Grade Extension AJCC 6 Table",
- "notes" : "**Note**: For CS Extension codes 000, 100-550, and 950-999 ONLY, where histology equals 8020, 8021, 8030, 8031, or 8032, or grade equals 4, the T category is assigned based on the value of CS Extension as shown here.",
- "last_modified" : "2015-05-27T16:19:21.589Z",
- "definition" : [ {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "VALUE:T4NOS" ], [ "100", "VALUE:T4a" ], [ "200", "VALUE:T4a" ], [ "300", "VALUE:T4a" ], [ "400", "VALUE:T4a" ], [ "405", "ERROR:" ], [ "410", "ERROR:" ], [ "415", "ERROR:" ], [ "420", "ERROR:" ], [ "450", "VALUE:T4b" ], [ "480", "VALUE:T4b" ], [ "490", "ERROR:" ], [ "500", "VALUE:T4b" ], [ "520", "VALUE:T4b" ], [ "550", "VALUE:T4b" ], [ "950", "VALUE:T4NOS" ], [ "999", "VALUE:T4NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_ssf1_ajcc7_xkv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_ssf1_ajcc7_xkv.json
deleted file mode 100644
index f41d9bca1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_ssf1_ajcc7_xkv.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "histology_grade_extension_ssf1_ajcc7_xkv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histology Grade Extension SSF1 AJCC7",
- "title" : "Histology Grade Extension SSF 1 AJCC 7 Table",
- "notes" : "**Note**: For CS Extension codes 000, 100-550, and 950-999 ONLY, where histology equals 8020, 8021, 8030, 8031, or 8032, or grade equals4, the T category for AJCC 7 staging is assigned based on the value of CS Extension and CS Site-Specific Factor 1 as shown here.",
- "last_modified" : "2015-05-27T16:19:21.638Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "SSF1",
- "type" : "INPUT"
- }, {
- "key" : "extension",
- "name" : "CS Extension",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_t",
- "name" : "T Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "001, 002", "000", "ERROR:" ], [ "001, 002", "100", "ERROR:" ], [ "001, 002", "200", "ERROR:" ], [ "001, 002", "300", "ERROR:" ], [ "001, 002", "400", "ERROR:" ], [ "001, 002", "405", "ERROR:" ], [ "001, 002", "410", "ERROR:" ], [ "001, 002", "415", "ERROR:" ], [ "001, 002", "420", "ERROR:" ], [ "001, 002", "450", "ERROR:" ], [ "001, 002", "480", "ERROR:" ], [ "001, 002", "490", "ERROR:" ], [ "001, 002", "500", "ERROR:" ], [ "001, 002", "520", "ERROR:" ], [ "001, 002", "550", "ERROR:" ], [ "001, 002", "950", "ERROR:" ], [ "001, 002", "999", "ERROR:" ], [ "000, 988, 999", "000", "VALUE:T4NOS" ], [ "000, 988, 999", "100", "VALUE:T4a" ], [ "000, 988, 999", "200", "VALUE:T4a" ], [ "000, 988, 999", "300", "VALUE:T4a" ], [ "000, 988, 999", "400", "VALUE:T4a" ], [ "000, 988, 999", "405", "ERROR:" ], [ "000, 988, 999", "410", "ERROR:" ], [ "000, 988, 999", "415", "ERROR:" ], [ "000, 988, 999", "420", "ERROR:" ], [ "000, 988, 999", "450", "VALUE:T4b" ], [ "000, 988, 999", "480", "VALUE:T4b" ], [ "000, 988, 999", "490", "ERROR:" ], [ "000, 988, 999", "500", "VALUE:T4b" ], [ "000, 988, 999", "520", "VALUE:T4b" ], [ "000, 988, 999", "550", "VALUE:T4b" ], [ "000, 988, 999", "950", "VALUE:T4NOS" ], [ "000, 988, 999", "999", "VALUE:T4NOS" ], [ "010", "000", "VALUE:T4NOS(s)" ], [ "010", "100", "VALUE:T4a(s)" ], [ "010", "200", "VALUE:T4a(s)" ], [ "010", "300", "VALUE:T4a(s)" ], [ "010", "400", "VALUE:T4a(s)" ], [ "010", "405", "ERROR:" ], [ "010", "410", "ERROR:" ], [ "010", "415", "ERROR:" ], [ "010", "420", "ERROR:" ], [ "010", "450", "VALUE:T4b(s)" ], [ "010", "480", "VALUE:T4b(s)" ], [ "010", "490", "ERROR:" ], [ "010", "500", "VALUE:T4b(s)" ], [ "010", "520", "VALUE:T4b(s)" ], [ "010", "550", "VALUE:T4b(s)" ], [ "010", "950", "VALUE:T4NOS(s)" ], [ "010", "999", "VALUE:T4NOS(s)" ], [ "020", "000", "VALUE:T4NOS(m)" ], [ "020", "100", "VALUE:T4a(m)" ], [ "020", "200", "VALUE:T4a(m)" ], [ "020", "300", "VALUE:T4a(m)" ], [ "020", "400", "VALUE:T4a(m)" ], [ "020", "405", "ERROR:" ], [ "020", "410", "ERROR:" ], [ "020", "415", "ERROR:" ], [ "020", "420", "ERROR:" ], [ "020", "450", "VALUE:T4b(m)" ], [ "020", "480", "VALUE:T4b(m)" ], [ "020", "490", "ERROR:" ], [ "020", "500", "VALUE:T4b(m)" ], [ "020", "520", "VALUE:T4b(m)" ], [ "020", "550", "VALUE:T4b(m)" ], [ "020", "950", "VALUE:T4NOS(m)" ], [ "020", "999", "VALUE:T4NOS(m)" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_summary_stage_xgx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_summary_stage_xgx.json
deleted file mode 100644
index 4997beba0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/histology_grade_extension_summary_stage_xgx.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "id" : "histology_grade_extension_summary_stage_xgx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Histology Grade Extension Summary Stage",
- "title" : "Histology Grade Extension Summary Stage Table",
- "notes" : "**Note**: For CS Extension code 560 ONLY, \"Stated as T4a\", the value of Summary Stage 1977 and Summary Stage 2000 is assigned on the basis of histology and grade as shown here.",
- "last_modified" : "2015-05-27T16:19:21.686Z",
- "definition" : [ {
- "key" : "hist",
- "name" : "ICD-O-3 histology code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "grade",
- "name" : "Grade",
- "type" : "INPUT"
- }, {
- "key" : "t77",
- "name" : "SS77 Map",
- "type" : "ENDPOINT"
- }, {
- "key" : "t2000",
- "name" : "SS2000 Map",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "8020", "Carcinoma, undifferentiated, NOS", "1,2,3,9", "VALUE:L", "VALUE:L" ], [ "8021", "Carcinoma, anaplastic, NOS", "1,2,3,9", "VALUE:L", "VALUE:L" ], [ "8030", "Giant cell and spindle cell carcinoma", "1,2,3,9", "VALUE:L", "VALUE:L" ], [ "8031", "Giant cell carcinoma", "1,2,3,9", "VALUE:L", "VALUE:L" ], [ "8032", "Spindle cell carcinoma", "1,2,3,9", "VALUE:L", "VALUE:L" ], [ "8000-9992", "Any histology", "4", "VALUE:L", "VALUE:L" ], [ "8000-9992", "Any histology", "5-8", "ERROR:", "ERROR:" ], [ "8000-8015,8022,8033-9992", "All histologies except 8020, 8021, 8030, 8031, and 8032", "1,2,3,9", "VALUE:RE", "VALUE:RE" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ids.txt b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ids.txt
deleted file mode 100644
index b2109f8e4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ids.txt
+++ /dev/null
@@ -1,1484 +0,0 @@
-ajcc6_exclusions_paa
-ajcc6_exclusions_pab
-ajcc6_exclusions_pac
-ajcc6_exclusions_pad
-ajcc6_exclusions_pae
-ajcc6_exclusions_paf
-ajcc6_exclusions_pag
-ajcc6_exclusions_paj
-ajcc6_exclusions_pak
-ajcc6_exclusions_pam
-ajcc6_exclusions_pan
-ajcc6_exclusions_ppb
-ajcc6_exclusions_ppc
-ajcc6_exclusions_ppd
-ajcc6_exclusions_ppe
-ajcc6_m_codes
-ajcc6_n_codes
-ajcc6_stage_codes
-ajcc6_stage_not_ewing_qai
-ajcc6_stage_qab
-ajcc6_stage_qac
-ajcc6_stage_qad
-ajcc6_stage_qag
-ajcc6_stage_qah
-ajcc6_stage_qaj
-ajcc6_stage_qaj_grade
-ajcc6_stage_qak
-ajcc6_stage_qal
-ajcc6_stage_qam
-ajcc6_stage_qao
-ajcc6_stage_qar
-ajcc6_stage_qas
-ajcc6_stage_qat
-ajcc6_stage_qau
-ajcc6_stage_qav
-ajcc6_stage_qaw
-ajcc6_stage_qax
-ajcc6_stage_qaz
-ajcc6_stage_qbb
-ajcc6_stage_qbh
-ajcc6_stage_qbi
-ajcc6_stage_qbj
-ajcc6_stage_qbk
-ajcc6_stage_qbl
-ajcc6_stage_qbq
-ajcc6_stage_qbr
-ajcc6_stage_qbv
-ajcc6_stage_qcb
-ajcc6_stage_qcc
-ajcc6_stage_qcd
-ajcc6_stage_qdx
-ajcc6_stage_qdy
-ajcc6_stage_qea
-ajcc6_stage_qna
-ajcc6_stage_qnb
-ajcc6_stage_qpb
-ajcc6_stage_qpf
-ajcc6_stage_qpi
-ajcc6_stage_qpj
-ajcc6_stage_qpk
-ajcc6_stage_qpl
-ajcc6_stage_qpn
-ajcc6_stage_qpo
-ajcc6_stage_qpp
-ajcc6_stage_qpq
-ajcc6_stage_qpr
-ajcc6_stage_qps
-ajcc6_stage_qpt
-ajcc6_stage_qpu
-ajcc6_stage_qpv
-ajcc6_stage_qpw
-ajcc6_stage_qpx
-ajcc6_t_codes
-ajcc6_year_validation
-ajcc7_inclusions_tab
-ajcc7_inclusions_tae
-ajcc7_inclusions_tpa
-ajcc7_inclusions_tpb
-ajcc7_inclusions_tpc
-ajcc7_inclusions_tpe
-ajcc7_inclusions_tpf
-ajcc7_inclusions_tpg
-ajcc7_inclusions_tph
-ajcc7_inclusions_tpi
-ajcc7_inclusions_tpj
-ajcc7_inclusions_tpk
-ajcc7_inclusions_tpl
-ajcc7_inclusions_tpm
-ajcc7_inclusions_tpn
-ajcc7_inclusions_tpo
-ajcc7_inclusions_tpp
-ajcc7_inclusions_tpq
-ajcc7_inclusions_tpr
-ajcc7_inclusions_tps
-ajcc7_inclusions_tpt
-ajcc7_inclusions_tpv
-ajcc7_inclusions_tpw
-ajcc7_inclusions_tpx
-ajcc7_inclusions_tpy
-ajcc7_inclusions_tpz
-ajcc7_inclusions_tqa
-ajcc7_inclusions_tqb
-ajcc7_inclusions_tqc
-ajcc7_inclusions_tqf
-ajcc7_inclusions_tqg
-ajcc7_inclusions_tqh
-ajcc7_inclusions_tqi
-ajcc7_inclusions_tqj
-ajcc7_inclusions_tqk
-ajcc7_inclusions_tql
-ajcc7_inclusions_tqm
-ajcc7_inclusions_tqn
-ajcc7_m_codes
-ajcc7_n_codes
-ajcc7_stage_codes
-ajcc7_stage_not_ewing_ube
-ajcc7_stage_uaa
-ajcc7_stage_uab
-ajcc7_stage_uac
-ajcc7_stage_uad
-ajcc7_stage_uae
-ajcc7_stage_uaf
-ajcc7_stage_uag
-ajcc7_stage_uak
-ajcc7_stage_ual
-ajcc7_stage_uam
-ajcc7_stage_uao
-ajcc7_stage_uap
-ajcc7_stage_uaq
-ajcc7_stage_uar
-ajcc7_stage_uau
-ajcc7_stage_uav
-ajcc7_stage_uaw
-ajcc7_stage_uax
-ajcc7_stage_uay
-ajcc7_stage_uaz
-ajcc7_stage_uba
-ajcc7_stage_ubb
-ajcc7_stage_ubc
-ajcc7_stage_ubd
-ajcc7_stage_ubf
-ajcc7_stage_ubg
-ajcc7_stage_ubh
-ajcc7_stage_ubi
-ajcc7_stage_ubj
-ajcc7_stage_ubk
-ajcc7_stage_ubl
-ajcc7_stage_ubm
-ajcc7_stage_ubn
-ajcc7_stage_ubp
-ajcc7_stage_ubq
-ajcc7_stage_ubs
-ajcc7_stage_ubt
-ajcc7_stage_ubu
-ajcc7_stage_ubv
-ajcc7_stage_ubw
-ajcc7_stage_ubx
-ajcc7_stage_uby
-ajcc7_stage_una
-ajcc7_stage_unb
-ajcc7_stage_upm
-ajcc7_stage_ups
-ajcc7_stage_upt
-ajcc7_stage_upu
-ajcc7_stage_upv
-ajcc7_stage_upw
-ajcc7_stage_upx
-ajcc7_stage_upy
-ajcc7_stage_upz
-ajcc7_stage_uqa
-ajcc7_stage_uqb
-ajcc7_stage_uqc
-ajcc7_stage_uqd
-ajcc7_stage_uqe
-ajcc7_t_codes
-ajcc7_year_validation
-ajcc_descriptor_codes
-ajcc_mdescriptor_cleanup
-ajcc_ndescriptor_cleanup
-ajcc_tdescriptor_cleanup
-ajcc_tnm6_stage_csv1_xie
-ajcctnm6_stage_csv1_xpz
-ajcctnm6_stage_thyroid_anaplastic_xcg
-ajcctnm6_stage_thyroid_medullary_xcf
-ajcctnm6_stage_thyroid_papillaryand_follicular_age45and_older_xco
-ajcctnm6and7_stage_ewing_xho
-ajcctnm7_stage_adenocarcinoma_xhz
-ajcctnm7_stage_adenocarcinoma_xib
-ajcctnm7_stage_giststomach_xit
-ajcctnm7_stage_squamous_xhy
-ajcctnm7_stage_squamous_xia
-ajcctnm7_stage_thyroid_anaplastic_xdz
-ajcctnm7_stage_thyroid_medullary_xdy
-ajcctnm7_stage_thyroid_papillaryand_follicular_age45and_older_xdx
-behavior
-clinical_eval_extension_quadrants_ajcc7_xca
-clinical_eval_extension_thickness_ajcc6_xbw
-combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_greater_than2009_xiy
-combined_serum_tumor_marker_svalue_tablefor_yearof_diagnosis_less_than2010_xiz
-cs_input_version_original
-cs_year_validation
-csextension_size_tablefor_ajcc6th_xba
-determine_correct_table_for_ajcc6_m_ns29
-determine_correct_table_for_ajcc6_m_ns4
-determine_correct_table_for_ajcc6_meval_ns30
-determine_correct_table_for_ajcc6_n_ns1
-determine_correct_table_for_ajcc6_n_ns10
-determine_correct_table_for_ajcc6_n_ns13
-determine_correct_table_for_ajcc6_n_ns22
-determine_correct_table_for_ajcc6_n_ns23
-determine_correct_table_for_ajcc6_n_ns24
-determine_correct_table_for_ajcc6_n_ns26
-determine_correct_table_for_ajcc6_n_ns3
-determine_correct_table_for_ajcc6_n_ns41
-determine_correct_table_for_ajcc6_n_ns8
-determine_correct_table_for_ajcc6_n_ns9
-determine_correct_table_for_ajcc6_neval_ns31
-determine_correct_table_for_ajcc6_stg_ns15
-determine_correct_table_for_ajcc6_stg_ns37
-determine_correct_table_for_ajcc6_t_ns16
-determine_correct_table_for_ajcc6_t_ns33
-determine_correct_table_for_ajcc6_t_ns34
-determine_correct_table_for_ajcc6_t_ns39
-determine_correct_table_for_ajcc6_t_ns6
-determine_correct_table_for_ajcc6_t_ns7
-determine_correct_table_for_ajcc6_tm_ns44
-determine_correct_table_for_ajcc6_tm_ns47
-determine_correct_table_for_ajcc7_n_ns11
-determine_correct_table_for_ajcc7_n_ns12
-determine_correct_table_for_ajcc7_n_ns14
-determine_correct_table_for_ajcc7_n_ns18
-determine_correct_table_for_ajcc7_n_ns19
-determine_correct_table_for_ajcc7_n_ns2
-determine_correct_table_for_ajcc7_n_ns20
-determine_correct_table_for_ajcc7_n_ns21
-determine_correct_table_for_ajcc7_n_ns25
-determine_correct_table_for_ajcc7_n_ns27
-determine_correct_table_for_ajcc7_n_ns40
-determine_correct_table_for_ajcc7_n_ns5
-determine_correct_table_for_ajcc7_t_ns17
-determine_correct_table_for_ajcc7_t_ns32
-determine_correct_table_for_ajcc7_t_ns38
-determine_correct_table_for_ajcc7_t_ns43
-determine_correct_table_for_m_ns48
-determine_correct_table_for_n_ns35
-determine_correct_table_for_s_ns36
-determine_correct_table_for_ss00t_ns46
-determine_correct_table_for_ss77t_ns45
-determine_correct_table_for_t_ns28
-determine_validity_for_ajcc6_ns50
-determine_validity_for_ajcc7_ns42
-eval_extension_t3_ajcc7_xgh
-extension_baa
-extension_bab
-extension_bac
-extension_bad
-extension_bae
-extension_baf
-extension_bag
-extension_bah
-extension_bai
-extension_baj
-extension_bak
-extension_bal
-extension_bam
-extension_ban
-extension_bao
-extension_bap
-extension_baq
-extension_bar
-extension_bas
-extension_bat
-extension_bau
-extension_bav
-extension_baw
-extension_bax
-extension_bay
-extension_baz
-extension_bba
-extension_bbb
-extension_bbc
-extension_bbd
-extension_bbe
-extension_bbf
-extension_bbg
-extension_bbh
-extension_bbi
-extension_bbj
-extension_bbk
-extension_bbl
-extension_bbm
-extension_bbn
-extension_bbo
-extension_bbp
-extension_bbq
-extension_bbr
-extension_bbs
-extension_bbt
-extension_bbu
-extension_bbv
-extension_bbx
-extension_bby
-extension_bbz
-extension_bca
-extension_bcb
-extension_bcc
-extension_bcd
-extension_bce
-extension_bcf
-extension_bcg
-extension_bch
-extension_bci
-extension_bcj
-extension_bcl
-extension_bcm
-extension_bcn
-extension_bco
-extension_bcp
-extension_bcq
-extension_bcr
-extension_bcs
-extension_bct
-extension_bcu
-extension_bcv
-extension_bcw
-extension_bcx
-extension_bcy
-extension_bda
-extension_bdc
-extension_bdd
-extension_bde
-extension_bdf
-extension_bdg
-extension_bdh
-extension_bdi
-extension_bdj
-extension_bdk
-extension_bdl
-extension_bdm
-extension_bdn
-extension_bdo
-extension_bdp
-extension_bdr
-extension_bds
-extension_bdt
-extension_bdu
-extension_bdv
-extension_bdw
-extension_bdx
-extension_bdy
-extension_beb
-extension_bed
-extension_bee
-extension_bef
-extension_beg
-extension_beh
-extension_behavior_xci
-extension_bei
-extension_bej
-extension_bek
-extension_bel
-extension_bem
-extension_ben
-extension_beo
-extension_bep
-extension_beq
-extension_ber
-extension_bes
-extension_bet
-extension_bev
-extension_bew
-extension_bex
-extension_bey
-extension_bez
-extension_bfa
-extension_bfc
-extension_bfd
-extension_bfe
-extension_bff
-extension_bfg
-extension_bfh
-extension_bfi
-extension_bfj
-extension_bfk
-extension_bfl
-extension_bfm
-extension_bfn
-extension_bfo
-extension_bfp
-extension_bfq
-extension_bfr
-extension_bfs
-extension_bft
-extension_bfu
-extension_bfv
-extension_bfw
-extension_bfx
-extension_bfy
-extension_bfz
-extension_bga
-extension_bgb
-extension_bgc
-extension_bna
-extension_bpb
-extension_btb
-extension_cytology_ajcc6_table_csv1_xkn
-extension_cytology_ajcc6_table_csv1_xko
-extension_cytology_ajcc6_table_csv2_xkm
-extension_cytology_ajcc6_table_csv2_xkq
-extension_cytology_summary_stage_xkl
-extension_cytology_summary_stage_xkp
-extension_cytology_summary_stage_xqa
-extension_eval_6_cab
-extension_eval_6_cac
-extension_eval_cab
-extension_eval_cac
-extension_eval_cae
-extension_eval_caf
-extension_eval_cag
-extension_eval_caj
-extension_eval_cak
-extension_eval_cal
-extension_eval_cam
-extension_eval_cna
-extension_eval_cpa
-extension_eval_cpb
-extension_eval_cpc
-extension_grade_lvi_xdm
-extension_mets_ajcc6_xeh
-extension_mets_ssf1_ajcc6_xjo_m
-extension_mets_ssf1_ajcc6_xjo_t
-extension_orchiectomy_lviajcc6_table_csv1_xbv
-extension_orchiectomy_lviajcc6_table_csv2_xis
-extension_orchiectomy_lviajcc7_xgs
-extension_periductal_invasion_ajcc7_xks
-extension_size_ajcc6_table_csv1_xjb
-extension_size_ajcc6_xai
-extension_size_ajcc6_xak
-extension_size_ajcc6_xat
-extension_size_ajcc6_xav
-extension_size_ajcc6_xaz
-extension_size_ajcc6_xbc
-extension_size_ajcc6_xda
-extension_size_ajcc6_xdk
-extension_size_ajcc6_xea
-extension_size_ajcc6_xfw
-extension_size_ajcc6_xir
-extension_size_ajcc6_xji
-extension_size_ajcc6_xjj
-extension_size_ajcc6_xqb
-extension_size_ajcc6_xqc
-extension_size_ajcc7_xbl
-extension_size_ajcc7_xdj
-extension_size_ajcc7_xdl
-extension_size_ajcc7_xdw
-extension_size_ajcc7_xeb
-extension_size_ajcc7_xec
-extension_size_ajcc7_xed
-extension_size_ajcc7_xef
-extension_size_ajcc7_xej
-extension_size_ajcc7_xet
-extension_size_ajcc7_xeu
-extension_size_ajcc7_xev
-extension_size_ajcc7_xey
-extension_size_ajcc7_xfc
-extension_size_ajcc7_xfd
-extension_size_ajcc7_xfe
-extension_size_ajcc7_xff
-extension_size_ajcc7_xfp
-extension_size_ajcc7_xgi
-extension_size_ajcc7_xik
-extension_size_ajcc7_xim
-extension_size_ajcc7_xio
-extension_size_ajcc7_xkg
-extension_size_ajcc7_xkh
-extension_size_ajcc7_xkr
-extension_size_category_ajcc7_xpm
-extension_size_high_risk_xfa
-extension_size_high_risk_xfy
-extension_size_pair_ajcc6_xpn
-extension_size_perineural_invasion888988_ajcc6_table_csv2_xij
-extension_size_perineural_invasion888988_ajcc7_xic
-extension_size_perineural_invasion_negativeor_unknown_ajcc6_table_csv2_xgl
-extension_size_perineural_invasion_negativeor_unknown_ajcc7_xgj
-extension_size_perineural_invasion_positive_ajcc6_table_csv2_xgm
-extension_size_perineural_invasion_positive_ajcc7_xgk
-extension_size_ssf1_ajcc7_xgb
-extension_size_table_ajcc6_xal
-extension_size_table_ajcc7_xek
-extension_size_table_csv1_xas
-extension_size_table_csv2_xez
-extension_size_xaa
-extension_size_xab
-extension_size_xac
-extension_size_xad
-extension_size_xae
-extension_size_xaf
-extension_size_xag
-extension_size_xar
-extension_size_xbq
-extension_size_xdb
-extension_size_xde
-extension_size_xfn
-extension_size_xfu
-extension_size_xgn
-extension_size_xjg
-extension_size_xjh
-extension_size_xpa
-extension_size_xpb
-extension_size_xpe
-extension_size_xpf
-extension_size_xqj
-extension_ssf1_ajcc7_t_xjy
-extension_ssf1_summary_stage2000_xke
-extension_ssf1_summary_stage2000_xkf
-extension_ssf1_summary_stage77_xkc
-extension_ssf1_summary_stage77_xkd
-extension_sstg_bbo
-extension_sstg_bcu
-extension_t4_ssf1_ajcc7_xgw
-extension_thickness_ulceration_tcategory_ajcc6_xkj
-extension_thickness_ulceration_tcategory_ajcc7_xkk
-extension_ulceration_t1_ajcc6_xbo
-grade
-grade_category_calculation_xei
-histologies_grade_stage_xce
-histologies_grade_stage_xce_6
-histologies_stage_xhq_6
-histologies_stage_xhq_7
-histologies_stage_xhw
-histologies_stage_xhx
-histology
-histology_grade_extension_ajcc6_xkw
-histology_grade_extension_ssf1_ajcc7_xkv
-histology_grade_extension_summary_stage_xgx
-ihcmol_xcc
-invalid_lung_m_values_ns49
-lvi
-lymph_node_extranodal_extension_xdn
-lymph_nodeand_nodal_status_clinical_eval_ajcc6_xlk
-lymph_nodeand_nodal_status_clinical_eval_ajcc7_xlh
-lymph_nodeand_nodal_status_eval_ajcc7_xlb
-lymph_nodeand_nodal_status_eval_ajcc7_xld
-lymph_nodeand_nodal_status_eval_ajcc7_xle
-lymph_nodeand_nodal_status_eval_ajcc7_xlg
-lymph_nodeand_nodal_status_eval_blank_ajcc6_xlm
-lymph_nodeand_nodal_status_eval_blank_ajcc7_xlj
-lymph_nodeand_nodal_status_eval_blank_ajcc7_xln
-lymph_nodeand_nodal_status_eval_blank_ajcc7_xlo
-lymph_nodeand_nodal_status_eval_blank_ajcc7_xlp
-lymph_nodeand_nodal_status_eval_blank_ajcc7_xlq
-lymph_nodeand_nodal_status_pathologic_eval_ajcc6_xll
-lymph_nodeand_nodal_status_pathologic_eval_ajcc7_xli
-lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdf
-lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdh
-lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xee
-lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfq
-lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfs
-lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh
-lymph_nodes_clinical_eval_v0205_ajcc7_xaj
-lymph_nodes_clinical_eval_v0205_ajcc7_xam
-lymph_nodes_clinical_eval_v0205_ajcc7_xao
-lymph_nodes_clinical_eval_v0205_ajcc7_xaw
-lymph_nodes_clinical_eval_v0205_ajcc7_xax
-lymph_nodes_clinical_eval_v0205_ajcc7_xcd
-lymph_nodes_clinical_eval_v0205_ajcc7_xch
-lymph_nodes_clinical_eval_xgt
-lymph_nodes_clinical_evaluation0or5_ajcc6_xbg
-lymph_nodes_clinical_evaluation1or9_ajcc6_xbf
-lymph_nodes_clinical_evaluation6th_xqf
-lymph_nodes_clinical_evaluation_ajcc6_xbe
-lymph_nodes_clinical_evaluation_ajcc6_xbi
-lymph_nodes_clinical_evaluation_ajcc6_xbj
-lymph_nodes_clinical_evaluation_ajcc6_xbk
-lymph_nodes_clinical_evaluation_ajcc6_xpo
-lymph_nodes_clinical_evaluation_ajcc6_xpq
-lymph_nodes_clinical_evaluation_xcx
-lymph_nodes_metsat_dxajcc6_xew
-lymph_nodes_metsat_dxajcc6_xfh_m
-lymph_nodes_metsat_dxajcc6_xfh_n
-lymph_nodes_metsat_dxajcc6_xfm
-lymph_nodes_metsat_dxajcc6_xfo
-lymph_nodes_metsat_dxajcc6_xgq_m
-lymph_nodes_metsat_dxajcc6_xgq_n
-lymph_nodes_metsat_dxajcc6_xhv
-lymph_nodes_metsat_dxajcc6_xjc
-lymph_nodes_metsat_dxajcc6_xjd
-lymph_nodes_metsat_dxajcc6_xje
-lymph_nodes_metsat_dxajcc6_xjf
-lymph_nodes_metsat_dxajcc6_xki
-lymph_nodes_metsat_dxajcc6_xlf
-lymph_nodes_metsat_dxtable_ajcc6_xfv
-lymph_nodes_pathologic_eval_xgu
-lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp
-lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg
-lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft
-lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr
-lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xdg
-lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr
-lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg
-lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi
-lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi
-lymph_nodes_pathologic_evaluation_xcw
-lymph_nodes_positive_axillary_node_xcy
-lymph_nodes_positive_eval_blank_xgv
-lymph_nodes_size_ajcc6_table_csv1_xex
-lymph_nodes_size_ajcc7_xfb
-lymph_nodes_size_ajcc7_xfz
-lymph_nodes_size_csv1_xix
-lymph_nodes_size_csv2_xiw
-lymph_nodes_size_mets00_ajcc6_xdo_m
-lymph_nodes_size_mets00_ajcc6_xdo_n
-lymph_nodes_size_mets10or50_ajcc6_xid_m
-lymph_nodes_size_mets10or50_ajcc6_xid_n
-lymph_nodes_size_mets114055or60_ajcc6_xdv_m
-lymph_nodes_size_mets114055or60_ajcc6_xdv_n
-lymph_nodes_size_mets99_ajcc6_xdp_m
-lymph_nodes_size_mets99_ajcc6_xdp_n
-lymph_nodes_size_table_csv2_xcp
-lymph_nodes_size_xja
-lymph_nodes_size_xpd
-lymph_nodes_size_xpg
-lymph_nodes_ssf11_ajcc6_xqd
-lymph_nodesand_ssf11_ajcc6_xiq
-mets_eval_iaa
-mets_eval_iac
-mets_eval_iad
-mets_eval_iae
-mets_eval_iaf
-mets_eval_ina
-mets_eval_ipa
-mets_eval_ipb
-mets_eval_ipc
-mets_hab
-mets_hac
-mets_had
-mets_hae
-mets_haf
-mets_hag
-mets_hah
-mets_hai
-mets_haj
-mets_hak
-mets_hal
-mets_ham
-mets_han
-mets_hao
-mets_hap
-mets_haq
-mets_har
-mets_hat
-mets_hau
-mets_hav
-mets_haw
-mets_haz
-mets_hba
-mets_hbb
-mets_hbc
-mets_hbe
-mets_hbf
-mets_hbg
-mets_hbj
-mets_hbn
-mets_hbo
-mets_hbu
-mets_hbv
-mets_hbx
-mets_hby
-mets_hbz
-mets_hca
-mets_hcb
-mets_hcc
-mets_hcd
-mets_hce
-mets_hcf
-mets_hcg
-mets_hch
-mets_hci
-mets_hcj
-mets_hck
-mets_hcl
-mets_hcm
-mets_hcn
-mets_hco
-mets_hcp
-mets_hcq
-mets_hcr
-mets_hcs
-mets_hcu
-mets_hcv
-mets_hcw
-mets_hcx
-mets_hcy
-mets_hna
-mets_hpa
-mets_hpb
-mets_hpc
-mets_hpd
-mets_hpe
-mets_hpf
-mets_hpg
-mets_hph
-metsat_dxand_ldh_xbs
-metsat_dxmets_eval_ajcc6_xck
-metsat_dxmets_eval_ajcc7_xfg
-mitotic_rate_calculation_xjm
-mitotic_rate_calculation_xpi
-mitotic_rate_calculation_xqe
-mitotic_rate_ulceration_t1_ajcc7_xgo
-nodes_daa
-nodes_dab
-nodes_dad
-nodes_dah
-nodes_dai
-nodes_daj
-nodes_dak
-nodes_dal
-nodes_dam
-nodes_dan
-nodes_dao
-nodes_dap
-nodes_daq
-nodes_dar
-nodes_das
-nodes_dat
-nodes_dau
-nodes_dav
-nodes_daw
-nodes_dax
-nodes_day
-nodes_daz
-nodes_dba
-nodes_dbb
-nodes_dbc
-nodes_dbd
-nodes_dbe
-nodes_dbf
-nodes_dbg
-nodes_dbh
-nodes_dbi
-nodes_dbj
-nodes_dbk
-nodes_dbl
-nodes_dbm
-nodes_dbn
-nodes_dbo
-nodes_dbq
-nodes_dbr
-nodes_dbs
-nodes_dbt
-nodes_dbu
-nodes_dbv
-nodes_dbw
-nodes_dbx
-nodes_dby
-nodes_dca
-nodes_dcb
-nodes_dcc
-nodes_dcd
-nodes_dce
-nodes_dcf
-nodes_dcj
-nodes_dck
-nodes_dcl
-nodes_dcm
-nodes_dcn
-nodes_dco
-nodes_dcp
-nodes_dcq
-nodes_dcr
-nodes_dcs
-nodes_dcu
-nodes_dcv
-nodes_dcw
-nodes_dcx
-nodes_dcy
-nodes_dcz
-nodes_ddd
-nodes_dde
-nodes_ddf
-nodes_ddg
-nodes_ddh
-nodes_ddi
-nodes_ddj
-nodes_ddk
-nodes_ddm
-nodes_ddn
-nodes_ddo
-nodes_ddp
-nodes_ddq
-nodes_ddr
-nodes_dds
-nodes_ddt
-nodes_ddw
-nodes_ddy
-nodes_ddz
-nodes_dea
-nodes_deb
-nodes_ded
-nodes_dee
-nodes_def
-nodes_deg
-nodes_dei
-nodes_dej
-nodes_dek
-nodes_del
-nodes_dem
-nodes_den
-nodes_deo
-nodes_deq
-nodes_der
-nodes_des
-nodes_det
-nodes_deu
-nodes_dev
-nodes_dew
-nodes_dex
-nodes_dey
-nodes_dez
-nodes_dfa
-nodes_dfb
-nodes_dfc
-nodes_dfd
-nodes_dfe
-nodes_dff
-nodes_dfg
-nodes_dfh
-nodes_dfi
-nodes_dfj
-nodes_dfk
-nodes_dfl
-nodes_dfm
-nodes_dfn
-nodes_dfo
-nodes_dfp
-nodes_dfq
-nodes_dfr
-nodes_dfs
-nodes_dft
-nodes_dfu
-nodes_dfv
-nodes_dfw
-nodes_dfx
-nodes_dfy
-nodes_dna
-nodes_dpa
-nodes_dpb
-nodes_dpc
-nodes_dpd
-nodes_eval_eaa
-nodes_eval_eaf
-nodes_eval_eag
-nodes_eval_eah
-nodes_eval_eai
-nodes_eval_eaj
-nodes_eval_eak
-nodes_eval_eba
-nodes_eval_ena
-nodes_eval_epa
-nodes_eval_epb
-nodes_eval_epc
-nodes_exam_gac
-nodes_exam_gaf
-nodes_exam_gna
-nodes_exam_gpa
-nodes_exam_gpb
-nodes_pos_fab
-nodes_pos_fae
-nodes_pos_fah
-nodes_pos_fna
-nodes_pos_fpa
-nodes_pos_fpb
-nodes_pos_fpc
-nodes_pos_fpd
-pathologic_eval_extension_thickness_ajcc6_xbt
-pathologic_eval_extension_thickness_ajcc7_xcb
-pleural_effusion_extension_xbz
-postorchiectomy_serum_tumor_marker_svalue_table_basedon_ssf131516_xgr
-primary_site
-schema_selection_adnexa_uterine_other
-schema_selection_adrenal_gland
-schema_selection_ampulla_vater
-schema_selection_anus
-schema_selection_appendix
-schema_selection_bile_ducts_distal
-schema_selection_bile_ducts_intrahepat
-schema_selection_bile_ducts_perihilar
-schema_selection_biliary_other
-schema_selection_bladder
-schema_selection_bone
-schema_selection_brain
-schema_selection_breast
-schema_selection_buccal_mucosa
-schema_selection_carcinoid_appendix
-schema_selection_cervix
-schema_selection_cns_other
-schema_selection_colon
-schema_selection_conjunctiva
-schema_selection_corpus_adenosarcoma
-schema_selection_corpus_carcinoma
-schema_selection_corpus_sarcoma
-schema_selection_cystic_duct
-schema_selection_digestive_other
-schema_selection_endocrine_other
-schema_selection_epiglottis_anterior
-schema_selection_esophagus
-schema_selection_esophagus_gejunction
-schema_selection_eye_other
-schema_selection_fallopian_tube
-schema_selection_floor_mouth
-schema_selection_gallbladder
-schema_selection_genital_female_other
-schema_selection_genital_male_other
-schema_selection_gist_appendix
-schema_selection_gist_colon
-schema_selection_gist_esophagus
-schema_selection_gist_peritoneum
-schema_selection_gist_rectum
-schema_selection_gist_small_intestine
-schema_selection_gist_stomach
-schema_selection_gum_lower
-schema_selection_gum_other
-schema_selection_gum_upper
-schema_selection_heart_mediastinum
-schema_selection_heme_retic
-schema_selection_hypopharynx
-schema_selection_ill_defined_other
-schema_selection_intracranial_gland
-schema_selection_kaposi_sarcoma
-schema_selection_kidney_parenchyma
-schema_selection_kidney_renal_pelvis
-schema_selection_lacrimal_gland
-schema_selection_lacrimal_sac
-schema_selection_larynx_glottic
-schema_selection_larynx_other
-schema_selection_larynx_subglottic
-schema_selection_larynx_supraglottic
-schema_selection_lip_lower
-schema_selection_lip_other
-schema_selection_lip_upper
-schema_selection_liver
-schema_selection_lung
-schema_selection_lymphoma
-schema_selection_lymphoma_ocular_adnexa
-schema_selection_melanoma_buccal_mucosa
-schema_selection_melanoma_choroid
-schema_selection_melanoma_ciliary_body
-schema_selection_melanoma_conjunctiva
-schema_selection_melanoma_epiglottis_anterior
-schema_selection_melanoma_eye_other
-schema_selection_melanoma_floor_mouth
-schema_selection_melanoma_gum_lower
-schema_selection_melanoma_gum_other
-schema_selection_melanoma_gum_upper
-schema_selection_melanoma_hypopharynx
-schema_selection_melanoma_iris
-schema_selection_melanoma_larynx_glottic
-schema_selection_melanoma_larynx_other
-schema_selection_melanoma_larynx_subglottic
-schema_selection_melanoma_larynx_supraglottic
-schema_selection_melanoma_lip_lower
-schema_selection_melanoma_lip_other
-schema_selection_melanoma_lip_upper
-schema_selection_melanoma_mouth_other
-schema_selection_melanoma_nasal_cavity
-schema_selection_melanoma_nasopharynx
-schema_selection_melanoma_oropharynx
-schema_selection_melanoma_palate_hard
-schema_selection_melanoma_palate_soft
-schema_selection_melanoma_pharynx_other
-schema_selection_melanoma_sinus_ethmoid
-schema_selection_melanoma_sinus_maxillary
-schema_selection_melanoma_sinus_other
-schema_selection_melanoma_skin
-schema_selection_melanoma_tongue_anterior
-schema_selection_melanoma_tongue_base
-schema_selection_merkel_cell_penis
-schema_selection_merkel_cell_scrotum
-schema_selection_merkel_cell_skin
-schema_selection_merkel_cell_vulva
-schema_selection_middle_ear
-schema_selection_mouth_other
-schema_selection_mycosis_fungoides
-schema_selection_myeloma_plasma_cell_disorder
-schema_selection_nasal_cavity
-schema_selection_nasopharynx
-schema_selection_net_ampulla
-schema_selection_net_colon
-schema_selection_net_rectum
-schema_selection_net_small_intestine
-schema_selection_net_stomach
-schema_selection_orbit
-schema_selection_oropharynx
-schema_selection_ovary
-schema_selection_palate_hard
-schema_selection_palate_soft
-schema_selection_pancreas_body_tail
-schema_selection_pancreas_head
-schema_selection_pancreas_other
-schema_selection_parotid_gland
-schema_selection_penis
-schema_selection_peritoneum
-schema_selection_peritoneum_female_gen
-schema_selection_pharyngeal_tonsil
-schema_selection_pharynx_other
-schema_selection_placenta
-schema_selection_pleura
-schema_selection_prostate
-schema_selection_rectum
-schema_selection_respiratory_other
-schema_selection_retinoblastoma
-schema_selection_retroperitoneum
-schema_selection_salivary_gland_other
-schema_selection_scrotum
-schema_selection_sinus_ethmoid
-schema_selection_sinus_maxillary
-schema_selection_sinus_other
-schema_selection_skin
-schema_selection_skin_eyelid
-schema_selection_small_intestine
-schema_selection_soft_tissue
-schema_selection_stomach
-schema_selection_submandibular_gland
-schema_selection_testis
-schema_selection_thyroid
-schema_selection_tongue_anterior
-schema_selection_tongue_base
-schema_selection_trachea
-schema_selection_urethra
-schema_selection_urinary_other
-schema_selection_vagina
-schema_selection_vulva
-serum_tumor_marker_svalue_table_basedon_csssf123_xcj
-size_aaa
-size_aab
-size_aac
-size_aad
-size_aae
-size_aaf
-size_aag
-size_aah
-size_aaj
-size_aak
-size_aal
-size_aam
-size_aan
-size_aao
-size_aap
-size_aaq
-size_aar
-size_aas
-size_aat
-size_aau
-size_aaw
-size_aax
-size_aay
-size_aaz
-size_aba
-size_ana
-size_apa
-size_apb
-size_apc
-size_apd
-size_apf
-size_apg
-size_aph
-size_api
-size_apj
-size_apk
-size_apl
-size_apo
-size_app
-size_apr
-size_aps
-size_apt
-size_apu
-size_extension_mets_ssf1_ajcc6_xjp_m
-size_extension_mets_ssf1_ajcc6_xjp_t
-size_extension_mets_ssf1_ajcc6_xjq_m
-size_extension_mets_ssf1_ajcc6_xjq_t
-size_extension_mets_ssf1_ajcc6_xjr_m
-size_extension_mets_ssf1_ajcc6_xjr_t
-size_extension_mets_ssf1_ajcc6_xjs_m
-size_extension_mets_ssf1_ajcc6_xjs_t
-size_extension_mets_ssf1_ajcc6_xjt_m
-size_extension_mets_ssf1_ajcc6_xjt_t
-size_extension_mets_ssf1_ajcc6_xju_m
-size_extension_mets_ssf1_ajcc6_xju_t
-size_extension_mets_ssf1_ajcc6_xjv_m
-size_extension_mets_ssf1_ajcc6_xjv_t
-size_extension_mets_ssf1_ajcc6_xjw_m
-size_extension_mets_ssf1_ajcc6_xjw_t
-size_extension_mets_ssf1_ajcc6_xjx_m
-size_extension_mets_ssf1_ajcc6_xjx_t
-size_extension_ssf1_ajcc7_t_xjz
-size_extension_ssf1_ajcc7_t_xka
-size_metastasis_ajcc7_xpx
-size_metsat_dxajcc7_m_xkb
-special_calculation_invasive_unknown_pathologic_extension_xds_xdu_xdq
-special_calculation_non_invasive_pathologic_extension_xdr_xdt_xdq
-special_calculation_tablefor_ajcct_xiu
-special_calculation_tablefor_seersummary_stage_xiv
-ss_codes
-ssf10_sad
-ssf10_sat
-ssf10_saz
-ssf10_scm
-ssf10_sek
-ssf10_seq
-ssf10_sex
-ssf10_sfi
-ssf10_sfj
-ssf10_sne
-ssf10_spd
-ssf10_spi
-ssf10_spz
-ssf10_sqj
-ssf10_sqs
-ssf10_srh
-ssf11_sae
-ssf11_sba
-ssf11_sbt
-ssf11_scj
-ssf11_see
-ssf11_sel
-ssf11_ser
-ssf11_snf
-ssf11_spe
-ssf11_spk
-ssf11_sps
-ssf11_sqa
-ssf11_sqe
-ssf11_sqt
-ssf11_srd
-ssf11_sri
-ssf12_saf
-ssf12_sbb
-ssf12_sbu
-ssf12_sck
-ssf12_sef
-ssf12_ses
-ssf12_sev
-ssf12_sew
-ssf12_sez
-ssf12_sfd
-ssf12_sng
-ssf12_spl
-ssf12_sqb
-ssf12_sqf
-ssf12_srj
-ssf13_sag
-ssf13_sbc
-ssf13_sca
-ssf13_scl
-ssf13_sdg
-ssf13_sdr
-ssf13_seg
-ssf13_sfa
-ssf13_sfe
-ssf13_snh
-ssf13_spm
-ssf13_sqg
-ssf13_sqq
-ssf14_sbd
-ssf14_sbf
-ssf14_scn
-ssf14_sdh
-ssf14_sds
-ssf14_sfb
-ssf14_sff
-ssf14_sni
-ssf14_spn
-ssf14_sqh
-ssf14_sqr
-ssf15_sbe
-ssf15_sbg
-ssf15_sco
-ssf15_sdm
-ssf15_sdt
-ssf15_sfc
-ssf15_sfg
-ssf15_snj
-ssf15_spo
-ssf16_sah
-ssf16_scp
-ssf16_sdn
-ssf16_sfh
-ssf16_snk
-ssf16_spt
-ssf16_squ
-ssf16_sqv
-ssf16_sqw
-ssf17_sai
-ssf17_seu
-ssf17_snl
-ssf17_spu
-ssf17_sqx
-ssf18_saj
-ssf18_snm
-ssf18_sqy
-ssf19_sak
-ssf19_snn
-ssf19_sqz
-ssf1_jae
-ssf1_jag
-ssf1_jaj
-ssf1_jal
-ssf1_jam
-ssf1_jap
-ssf1_jaq
-ssf1_jat
-ssf1_jav
-ssf1_jaw
-ssf1_jax
-ssf1_jba
-ssf1_jbd
-ssf1_jbg
-ssf1_jbh
-ssf1_jbj
-ssf1_jbk
-ssf1_jbl
-ssf1_jbm
-ssf1_jbp
-ssf1_jbq
-ssf1_jbt
-ssf1_jbv
-ssf1_jbx
-ssf1_jby
-ssf1_jbz
-ssf1_jca
-ssf1_jcd
-ssf1_jce
-ssf1_jcf
-ssf1_jcg
-ssf1_jch
-ssf1_jna
-ssf1_jpa
-ssf1_jpd
-ssf1_jpe
-ssf1_jpf
-ssf1_jpj
-ssf1_jpl
-ssf1_jpm
-ssf1_jpn
-ssf1_jpo
-ssf1_jpp
-ssf1_jpq
-ssf1_jpr
-ssf1_jpt
-ssf1_jpu
-ssf1_jpv
-ssf1_jpw
-ssf1_sbh
-ssf1_sstg_jat
-ssf20_sal
-ssf20_sno
-ssf20_sra
-ssf21_sam
-ssf21_snp
-ssf21_srb
-ssf22_san
-ssf22_snq
-ssf22_src
-ssf23_sao
-ssf23_snr
-ssf24_sap
-ssf24_sns
-ssf25_snt
-ssf25_spj
-ssf25_spp
-ssf25_spv
-ssf25_sqc
-ssf25_sqi
-ssf25_sqp
-ssf2_kaa
-ssf2_kab
-ssf2_kac
-ssf2_kad
-ssf2_kaj
-ssf2_kak
-ssf2_kal
-ssf2_kao
-ssf2_kaq
-ssf2_kar
-ssf2_kas
-ssf2_kaw
-ssf2_kax
-ssf2_kay
-ssf2_kaz
-ssf2_kbb
-ssf2_kbc
-ssf2_kbf
-ssf2_kbi
-ssf2_kbl
-ssf2_kbm
-ssf2_kbu
-ssf2_kbv
-ssf2_kbw
-ssf2_kbx
-ssf2_kna
-ssf2_kpa
-ssf2_kpc
-ssf2_kpd
-ssf2_kpg
-ssf2_kph
-ssf2_kpi
-ssf2_kpj
-ssf2_kpk
-ssf2_kpl
-ssf2_kpn
-ssf2_kpo
-ssf2_kpp
-ssf2_kpq
-ssf2_kpr
-ssf2_sbi
-ssf2_sbz
-ssf3_laa
-ssf3_lab
-ssf3_lac
-ssf3_lad
-ssf3_laf
-ssf3_lah
-ssf3_lai
-ssf3_lao
-ssf3_lap
-ssf3_laq
-ssf3_lat
-ssf3_law
-ssf3_lay
-ssf3_laz
-ssf3_lba
-ssf3_lbb
-ssf3_lbc
-ssf3_lna
-ssf3_lpa
-ssf3_lpc
-ssf3_lpd
-ssf3_lpe
-ssf3_lph
-ssf3_lpj
-ssf3_lpk
-ssf3_lpl
-ssf3_lpm
-ssf3_lpp
-ssf3_lpq
-ssf3_lpr
-ssf3_lps
-ssf3_lpt
-ssf3_lpu
-ssf3_sstg_lab
-ssf4_maa
-ssf4_mab
-ssf4_mac
-ssf4_maf
-ssf4_maj
-ssf4_mal
-ssf4_mam
-ssf4_mas
-ssf4_mat
-ssf4_mav
-ssf4_maz
-ssf4_mbd
-ssf4_mbg
-ssf4_mbh
-ssf4_mbi
-ssf4_mbj
-ssf4_mna
-ssf4_mpa
-ssf4_mpb
-ssf4_mpd
-ssf4_mpe
-ssf4_mpf
-ssf4_mpg
-ssf4_mpn
-ssf4_mpq
-ssf4_mpr
-ssf4_mps
-ssf5_naa
-ssf5_nab
-ssf5_nac
-ssf5_nae
-ssf5_nah
-ssf5_nai
-ssf5_nak
-ssf5_nap
-ssf5_naq
-ssf5_nar
-ssf5_nas
-ssf5_nav
-ssf5_naw
-ssf5_nba
-ssf5_nbb
-ssf5_nna
-ssf5_npa
-ssf5_npb
-ssf5_npe
-ssf5_npf
-ssf5_npg
-ssf5_nph
-ssf5_npk
-ssf5_npl
-ssf5_npm
-ssf6_oaa
-ssf6_oad
-ssf6_oae
-ssf6_oaf
-ssf6_oag
-ssf6_oak
-ssf6_oam
-ssf6_oao
-ssf6_oap
-ssf6_oaq
-ssf6_oas
-ssf6_oat
-ssf6_oaw
-ssf6_oax
-ssf6_oay
-ssf6_ona
-ssf6_opa
-ssf6_opb
-ssf6_opd
-ssf6_opf
-ssf6_opg
-ssf6_oph
-ssf6_opi
-ssf7_saa
-ssf7_saq
-ssf7_saw
-ssf7_sbv
-ssf7_sbx
-ssf7_scb
-ssf7_scq
-ssf7_sde
-ssf7_sdf
-ssf7_sdo
-ssf7_sdx
-ssf7_seb
-ssf7_seh
-ssf7_sfl
-ssf7_snb
-ssf7_spa
-ssf7_spf
-ssf7_spw
-ssf7_sqk
-ssf7_sqn
-ssf7_sre
-ssf8_sab
-ssf8_sar
-ssf8_sax
-ssf8_sby
-ssf8_scc
-ssf8_sdd
-ssf8_sdp
-ssf8_sdy
-ssf8_sec
-ssf8_sei
-ssf8_sfk
-ssf8_snc
-ssf8_spb
-ssf8_spg
-ssf8_spx
-ssf8_sql
-ssf8_sqo
-ssf8_srf
-ssf9_sac
-ssf9_sas
-ssf9_say
-ssf9_sdi
-ssf9_sdq
-ssf9_sdz
-ssf9_sed
-ssf9_sej
-ssf9_snd
-ssf9_spc
-ssf9_sph
-ssf9_sqm
-ssf9_srg
-summary_stage_raa
-summary_stage_rac
-summary_stage_rpa
-thickness_ulceration_ajcc6_xbn
-thickness_ulceration_ajcc7_xhu
-tumor_size_category_ajcc7_xpk
-tumor_size_pair_ajcc6_xpl
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ihcmol_xcc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ihcmol_xcc.json
deleted file mode 100644
index 17e7b1e1b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/ihcmol_xcc.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "ihcmol_xcc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "IHC MOL",
- "title" : "IHC MOL Table",
- "notes" : "**Note**: For CS Lymph Nodes code 000 ONLY, the N category is based on the value of CS Site-Specific Factor 4, IHC of Regional Lymph Nodes, and CS Site-Specific Factor 5, Molecular Studies of Regional Lymph Nodes, as shown in this table:",
- "last_modified" : "2015-05-27T16:19:21.740Z",
- "definition" : [ {
- "key" : "ssf4",
- "name" : "CS SSF 4 IHC",
- "type" : "INPUT"
- }, {
- "key" : "ssf5",
- "name" : "CS SSF 5 MOL",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "000", "VALUE:N0", "VALUE:N0" ], [ "001", "000", "VALUE:N0(i-)", "VALUE:N0(i-)" ], [ "002", "000", "VALUE:N0(i+)", "VALUE:N0(i+)" ], [ "009", "000", "VALUE:N0(i+)", "VALUE:N0(i+)" ], [ "888", "000", "ERROR:", "ERROR:" ], [ "987", "000", "ERROR:", "ERROR:" ], [ "988", "000", "ERROR:", "ERROR:" ], [ "000", "001", "VALUE:N0(mol-)", "VALUE:N0(mol-)" ], [ "001", "001", "VALUE:N0(i-)", "VALUE:N0(i-)" ], [ "002", "001", "VALUE:N0(i+)", "VALUE:N0(i+)" ], [ "009", "001", "VALUE:N0(i+)", "VALUE:N0(i+)" ], [ "888", "001", "ERROR:", "ERROR:" ], [ "987", "001", "ERROR:", "ERROR:" ], [ "988", "001", "ERROR:", "ERROR:" ], [ "000", "002", "VALUE:N0(mol+)", "VALUE:N0(mol+)" ], [ "001", "002", "VALUE:N0(mol+)", "VALUE:N0(mol+)" ], [ "002", "002", "VALUE:N0(i+)", "VALUE:N0(i+)" ], [ "009", "002", "VALUE:N0(i+)", "VALUE:N0(i+)" ], [ "888", "002", "ERROR:", "ERROR:" ], [ "987", "002", "ERROR:", "ERROR:" ], [ "988", "002", "ERROR:", "ERROR:" ], [ "000", "888", "ERROR:", "ERROR:" ], [ "001", "888", "ERROR:", "ERROR:" ], [ "002", "888", "ERROR:", "ERROR:" ], [ "009", "888", "ERROR:", "ERROR:" ], [ "888", "888", "ERROR:", "ERROR:" ], [ "987", "888", "ERROR:", "ERROR:" ], [ "988", "888", "ERROR:", "ERROR:" ], [ "000", "987", "ERROR:", "ERROR:" ], [ "001", "987", "ERROR:", "ERROR:" ], [ "002", "987", "ERROR:", "ERROR:" ], [ "009", "987", "ERROR:", "ERROR:" ], [ "888", "987", "ERROR:", "ERROR:" ], [ "987", "987", "ERROR:", "ERROR:" ], [ "988", "987", "ERROR:", "ERROR:" ], [ "000", "988", "ERROR:", "ERROR:" ], [ "001", "988", "ERROR:", "ERROR:" ], [ "002", "988", "ERROR:", "ERROR:" ], [ "009", "988", "ERROR:", "ERROR:" ], [ "888", "988", "ERROR:", "ERROR:" ], [ "987", "988", "ERROR:", "ERROR:" ], [ "988", "988", "ERROR:", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/invalid_lung_m_values_ns49.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/invalid_lung_m_values_ns49.json
deleted file mode 100644
index 2fc7aaa63..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/invalid_lung_m_values_ns49.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "invalid_lung_m_values_ns49",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Invalid Lung M Values - AJCC 6 may stage",
- "title" : "Invalid Lung M Values - AJCC 6 may stage",
- "last_modified" : "2015-05-27T16:19:21.785Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC 7 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m77",
- "name" : "Summary Stage 1977 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage 2000 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "01-09,11-14,19,22,27-29,31,34,44-49,54-69,71-74,76-98", "INVALID VALUES: For AJCC 6, Stage Group can be assigned in some cases because the T value drives the result.", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "ERROR:", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lvi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lvi.json
deleted file mode 100644
index cfe49b375..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lvi.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "id" : "lvi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "LVI",
- "title" : "Lymph-vascular Invasion",
- "last_modified" : "2015-05-27T16:19:21.837Z",
- "definition" : [ {
- "key" : "lvi",
- "name" : "LVI",
- "type" : "INPUT"
- }, {
- "key" : "desc",
- "name" : "Description",
- "type" : "DESCRIPTION"
- } ],
- "rows" : [ [ "0", "Lymph-vascular Invasion stated as Not Present" ], [ "1", "Lymph-vascular Invasion Present/Identified" ], [ "8", "Not Applicable" ], [ "9", "Unknown/Indeterminate/not mentioned in path report" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_node_extranodal_extension_xdn.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_node_extranodal_extension_xdn.json
deleted file mode 100644
index 8bb02ae60..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_node_extranodal_extension_xdn.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_node_extranodal_extension_xdn",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node Extranodal Extension",
- "title" : "Lymph Node Extranodal Extension Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 100-270, 310-380, 500 and 505 ONLY, the N category for AJCC 7 staging is assigned based on the value of CS Site-Specific Factor 17, Extranodal Extension of Regional Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.853Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf17",
- "name" : "SSF17",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "260", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "370", "000", "ERROR:" ], [ "380", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "505", "000", "ERROR:" ], [ "100", "010", "VALUE:N1" ], [ "200", "010", "VALUE:N2" ], [ "250", "010", "VALUE:N1" ], [ "260", "010", "VALUE:N1" ], [ "270", "010", "VALUE:N2" ], [ "310", "010", "VALUE:N1" ], [ "350", "010", "VALUE:N2" ], [ "370", "010", "VALUE:N1" ], [ "380", "010", "VALUE:N1" ], [ "500", "010", "VALUE:N1" ], [ "505", "010", "VALUE:N1" ], [ "100", "020", "VALUE:N3" ], [ "200", "020", "VALUE:N3" ], [ "250", "020", "VALUE:N3" ], [ "260", "020", "VALUE:N3" ], [ "270", "020", "VALUE:N3" ], [ "310", "020", "VALUE:N3" ], [ "350", "020", "VALUE:N3" ], [ "370", "020", "VALUE:N3" ], [ "380", "020", "VALUE:N3" ], [ "500", "020", "VALUE:N3" ], [ "505", "020", "VALUE:N3" ], [ "100", "030", "VALUE:N1" ], [ "200", "030", "VALUE:N2" ], [ "250", "030", "VALUE:N1" ], [ "260", "030", "VALUE:N1" ], [ "270", "030", "VALUE:N2" ], [ "310", "030", "VALUE:N1" ], [ "350", "030", "VALUE:N2" ], [ "370", "030", "VALUE:N1" ], [ "380", "030", "VALUE:N1" ], [ "500", "030", "VALUE:N1" ], [ "505", "030", "VALUE:N1" ], [ "100", "988,999", "VALUE:N1" ], [ "200", "988,999", "VALUE:N2" ], [ "250", "988,999", "VALUE:N1" ], [ "260", "988,999", "VALUE:N1" ], [ "270", "988,999", "VALUE:N2" ], [ "310", "988,999", "VALUE:N1" ], [ "350", "988,999", "VALUE:N2" ], [ "370", "988,999", "VALUE:N1" ], [ "380", "988,999", "VALUE:N1" ], [ "500", "988,999", "VALUE:N1" ], [ "505", "988,999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_clinical_eval_ajcc6_xlk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_clinical_eval_ajcc6_xlk.json
deleted file mode 100644
index 0f90684a3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_clinical_eval_ajcc6_xlk.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_clinical_eval_ajcc6_xlk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Clinical Eval AJCC6",
- "title" : "Lymph Node and Nodal Status Clinical Eval AJCC 6 Table",
- "notes" : "**Note**: When nodes are clinically evaluated (CS Lymph Nodes Eval = 0, 1, 5, 9) for CS Lymph Nodes codes 010-118, 121-128, 152, 153, 155 and 158 ONLY, the N category for AJCC 6 staging is assigned based on the value of CS Lymph Nodes and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:21.887Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100,110,115,118", "000-002,005", "ERROR:" ], [ "121", "000-002,005", "ERROR:" ], [ "122", "000-002,005", "ERROR:" ], [ "123", "000-002,005", "ERROR:" ], [ "124", "000-002,005", "ERROR:" ], [ "125", "000-002,005", "ERROR:" ], [ "128", "000-002,005", "ERROR:" ], [ "152", "000-002,005", "ERROR:" ], [ "153", "000-002,005", "ERROR:" ], [ "155", "000-002,005", "ERROR:" ], [ "158", "000-002,005", "ERROR:" ], [ "100,110,115,118", "010", "ERROR:" ], [ "121", "010", "ERROR:" ], [ "122", "010", "ERROR:" ], [ "123", "010", "ERROR:" ], [ "124", "010", "ERROR:" ], [ "125", "010", "ERROR:" ], [ "128", "010", "ERROR:" ], [ "152", "010", "ERROR:" ], [ "153", "010", "ERROR:" ], [ "155", "010", "ERROR:" ], [ "158", "010", "ERROR:" ], [ "100,110,115,118", "020", "VALUE:N1" ], [ "121", "020", "VALUE:N1" ], [ "122", "020", "VALUE:N1" ], [ "123", "020", "VALUE:N1" ], [ "124", "020", "ERROR:" ], [ "125", "020", "VALUE:N1" ], [ "128", "020", "VALUE:N2" ], [ "152", "020", "VALUE:N2" ], [ "153", "020", "VALUE:N2" ], [ "155", "020", "VALUE:N2" ], [ "158", "020", "ERROR:" ], [ "100,110,115,118", "043", "VALUE:N1" ], [ "121", "043", "VALUE:N1" ], [ "122", "043", "VALUE:N1" ], [ "123", "043", "VALUE:N1" ], [ "124", "043", "ERROR:" ], [ "125", "043", "VALUE:N1" ], [ "128", "043", "VALUE:N1" ], [ "152", "043", "VALUE:N1" ], [ "153", "043", "VALUE:N1" ], [ "155", "043", "VALUE:N1" ], [ "158", "043", "ERROR:" ], [ "100,110,115,118", "045", "VALUE:N2" ], [ "121", "045", "VALUE:N2" ], [ "122", "045", "VALUE:N2" ], [ "123", "045", "VALUE:N2" ], [ "124", "045", "ERROR:" ], [ "125", "045", "VALUE:N2" ], [ "128", "045", "VALUE:N2" ], [ "152", "045", "VALUE:N2" ], [ "153", "045", "VALUE:N2" ], [ "155", "045", "VALUE:N2" ], [ "158", "045", "ERROR:" ], [ "100,110,115,118", "048", "VALUE:N3" ], [ "121", "048", "VALUE:N3" ], [ "122", "048", "VALUE:N3" ], [ "123", "048", "VALUE:N3" ], [ "124", "048", "ERROR:" ], [ "125", "048", "VALUE:N3" ], [ "128", "048", "VALUE:N3" ], [ "152", "048", "VALUE:N3" ], [ "153", "048", "VALUE:N3" ], [ "155", "048", "VALUE:N3" ], [ "158", "048", "ERROR:" ], [ "100,110,115,118", "050", "VALUE:N1" ], [ "121", "050", "VALUE:N1" ], [ "122", "050", "VALUE:N1" ], [ "123", "050", "VALUE:N1" ], [ "124", "050", "ERROR:" ], [ "125", "050", "VALUE:N1" ], [ "128", "050", "VALUE:N2" ], [ "152", "050", "VALUE:N2" ], [ "153", "050", "VALUE:N2" ], [ "155", "050", "VALUE:N2" ], [ "158", "050", "ERROR:" ], [ "100,110,115,118", "100", "ERROR:" ], [ "121", "100", "ERROR:" ], [ "122", "100", "ERROR:" ], [ "123", "100", "ERROR:" ], [ "124", "100", "ERROR:" ], [ "125", "100", "ERROR:" ], [ "128", "100", "ERROR:" ], [ "152", "100", "ERROR:" ], [ "153", "100", "ERROR:" ], [ "155", "100", "VALUE:N2c" ], [ "158", "100", "ERROR:" ], [ "100,110,115,118", "150", "VALUE:N3" ], [ "121", "150", "VALUE:N3" ], [ "122", "150", "VALUE:N3" ], [ "123", "150", "VALUE:N3" ], [ "124", "150", "VALUE:N3" ], [ "125", "150", "VALUE:N3" ], [ "128", "150", "VALUE:N3" ], [ "152", "150", "VALUE:N3" ], [ "153", "150", "VALUE:N3" ], [ "155", "150", "VALUE:N3" ], [ "158", "150", "VALUE:N3" ], [ "100,110,115,118", "988", "ERROR:" ], [ "121", "988", "ERROR:" ], [ "122", "988", "ERROR:" ], [ "123", "988", "ERROR:" ], [ "124", "988", "ERROR:" ], [ "125", "988", "ERROR:" ], [ "128", "988", "ERROR:" ], [ "152", "988", "ERROR:" ], [ "153", "988", "ERROR:" ], [ "155", "988", "ERROR:" ], [ "158", "988", "ERROR:" ], [ "100,110,115,118", "999", "VALUE:N1" ], [ "121", "999", "VALUE:N1" ], [ "122", "999", "VALUE:N1" ], [ "123", "999", "VALUE:N1" ], [ "124", "999", "ERROR:" ], [ "125", "999", "VALUE:N1" ], [ "128", "999", "VALUE:N2" ], [ "152", "999", "VALUE:N2" ], [ "153", "999", "VALUE:N2" ], [ "155", "999", "VALUE:N2" ], [ "158", "999", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_clinical_eval_ajcc7_xlh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_clinical_eval_ajcc7_xlh.json
deleted file mode 100644
index a366be7d0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_clinical_eval_ajcc7_xlh.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_clinical_eval_ajcc7_xlh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Clinical Eval AJCC7",
- "title" : "Lymph Node and Nodal Status Clinical Eval AJCC 7 Table",
- "notes" : "**Note**: When nodes are clinically evaluated (CS Lymph Nodes Eval = 0, 1, 5, 9) for CS Lymph Nodes codes 010-118, 121-128, 152, 153, 155 and 158 ONLY, the N category for AJCC 7 staging is assigned based on the value of CS Lymph Nodes and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:21.942Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "010", "000-002,005", "ERROR:" ], [ "100,110,115,118", "000-002,005", "ERROR:" ], [ "121", "000-002,005", "ERROR:" ], [ "122", "000-002,005", "ERROR:" ], [ "123", "000-002,005", "ERROR:" ], [ "124", "000-002,005", "ERROR:" ], [ "125", "000-002,005", "ERROR:" ], [ "128", "000-002,005", "ERROR:" ], [ "152", "000-002,005", "ERROR:" ], [ "153", "000-002,005", "ERROR:" ], [ "155", "000-002,005", "ERROR:" ], [ "158", "000-002,005", "ERROR:" ], [ "010", "010", "ERROR:" ], [ "100,110,115,118", "010", "ERROR:" ], [ "121", "010", "ERROR:" ], [ "122", "010", "ERROR:" ], [ "123", "010", "ERROR:" ], [ "124", "010", "ERROR:" ], [ "125", "010", "ERROR:" ], [ "128", "010", "ERROR:" ], [ "152", "010", "ERROR:" ], [ "153", "010", "ERROR:" ], [ "155", "010", "ERROR:" ], [ "158", "010", "ERROR:" ], [ "010", "020", "ERROR:" ], [ "100,110,115,118", "020", "VALUE:N1" ], [ "121", "020", "VALUE:N1" ], [ "122", "020", "VALUE:N1" ], [ "123", "020", "VALUE:N1" ], [ "124", "020", "ERROR:" ], [ "125", "020", "VALUE:N1" ], [ "128", "020", "VALUE:N2" ], [ "152", "020", "VALUE:N2" ], [ "153", "020", "VALUE:N2" ], [ "155", "020", "VALUE:N2" ], [ "158", "020", "ERROR:" ], [ "010", "043", "ERROR:" ], [ "100,110,115,118", "043", "VALUE:N1" ], [ "121", "043", "VALUE:N1" ], [ "122", "043", "VALUE:N1" ], [ "123", "043", "VALUE:N1" ], [ "124", "043", "ERROR:" ], [ "125", "043", "VALUE:N1" ], [ "128", "043", "VALUE:N1" ], [ "152", "043", "VALUE:N1" ], [ "153", "043", "VALUE:N1" ], [ "155", "043", "VALUE:N1" ], [ "158", "043", "ERROR:" ], [ "010", "045", "ERROR:" ], [ "100,110,115,118", "045", "VALUE:N2" ], [ "121", "045", "VALUE:N2" ], [ "122", "045", "VALUE:N2" ], [ "123", "045", "VALUE:N2" ], [ "124", "045", "ERROR:" ], [ "125", "045", "VALUE:N2" ], [ "128", "045", "VALUE:N2" ], [ "152", "045", "VALUE:N2" ], [ "153", "045", "VALUE:N2" ], [ "155", "045", "VALUE:N2" ], [ "158", "045", "ERROR:" ], [ "010", "048", "ERROR:" ], [ "100,110,115,118", "048", "VALUE:N3" ], [ "121", "048", "VALUE:N3" ], [ "122", "048", "VALUE:N3" ], [ "123", "048", "VALUE:N3" ], [ "124", "048", "ERROR:" ], [ "125", "048", "VALUE:N3" ], [ "128", "048", "VALUE:N3" ], [ "152", "048", "VALUE:N3" ], [ "153", "048", "VALUE:N3" ], [ "155", "048", "VALUE:N3" ], [ "158", "048", "ERROR:" ], [ "010", "050", "ERROR:" ], [ "100,110,115,118", "050", "VALUE:N1" ], [ "121", "050", "VALUE:N1" ], [ "122", "050", "VALUE:N1" ], [ "123", "050", "VALUE:N1" ], [ "124", "050", "ERROR:" ], [ "125", "050", "VALUE:N1" ], [ "128", "050", "VALUE:N2" ], [ "152", "050", "VALUE:N2" ], [ "153", "050", "VALUE:N2" ], [ "155", "050", "VALUE:N2" ], [ "158", "050", "ERROR:" ], [ "010", "100", "ERROR:" ], [ "100,110,115,118", "100", "ERROR:" ], [ "121", "100", "ERROR:" ], [ "122", "100", "ERROR:" ], [ "123", "100", "ERROR:" ], [ "124", "100", "ERROR:" ], [ "125", "100", "ERROR:" ], [ "128", "100", "ERROR:" ], [ "152", "100", "ERROR:" ], [ "153", "100", "ERROR:" ], [ "155", "100", "VALUE:N2c" ], [ "158", "100", "ERROR:" ], [ "010", "150", "ERROR:" ], [ "100,110,115,118", "150", "VALUE:N3" ], [ "121", "150", "VALUE:N3" ], [ "122", "150", "VALUE:N3" ], [ "123", "150", "VALUE:N3" ], [ "124", "150", "VALUE:N3" ], [ "125", "150", "VALUE:N3" ], [ "128", "150", "VALUE:N3" ], [ "152", "150", "VALUE:N3" ], [ "153", "150", "VALUE:N3" ], [ "155", "150", "VALUE:N3" ], [ "158", "150", "VALUE:N3" ], [ "010", "988", "ERROR:" ], [ "100,110,115,118", "988", "ERROR:" ], [ "121", "988", "ERROR:" ], [ "122", "988", "ERROR:" ], [ "123", "988", "ERROR:" ], [ "124", "988", "ERROR:" ], [ "125", "988", "ERROR:" ], [ "128", "988", "ERROR:" ], [ "152", "988", "ERROR:" ], [ "153", "988", "ERROR:" ], [ "155", "988", "ERROR:" ], [ "158", "988", "ERROR:" ], [ "010", "999", "ERROR:" ], [ "100,110,115,118", "999", "VALUE:N1" ], [ "121", "999", "VALUE:N1" ], [ "122", "999", "VALUE:N1" ], [ "123", "999", "VALUE:N1" ], [ "124", "999", "ERROR:" ], [ "125", "999", "VALUE:N1" ], [ "128", "999", "VALUE:N2" ], [ "152", "999", "VALUE:N2" ], [ "153", "999", "VALUE:N2" ], [ "155", "999", "VALUE:N2" ], [ "158", "999", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xlb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xlb.json
deleted file mode 100644
index e8a55cd95..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xlb.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_ajcc7_xlb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval AJCC7",
- "title" : "Lymph Node and Nodal Status Eval AJCC 7 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 010-360 ONLY, the N category is assigned based on the value of CS Lymph Nodes Eval and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:21.998Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "010", "000, 005", "ERROR:" ], [ "0,1,5,9", "100-360", "000, 005", "ERROR:" ], [ "2,3,6,8", "010", "000, 005", "ERROR:" ], [ "2,3,6,8", "100,310", "000, 005", "ERROR:" ], [ "2,3,6,8", "320", "000, 005", "ERROR:" ], [ "2,3,6,8", "340", "000, 005", "ERROR:" ], [ "2,3,6,8", "350,360", "000, 005", "ERROR:" ], [ "0,1,5,9", "010", "010", "VALUE:N1a" ], [ "0,1,5,9", "100-360", "010", "ERROR:" ], [ "2,3,6,8", "010", "010", "VALUE:N1a" ], [ "2,3,6,8", "100,310", "010", "VALUE:N1a" ], [ "2,3,6,8", "320", "010", "VALUE:N1a" ], [ "2,3,6,8", "340", "010", "VALUE:N1a" ], [ "2,3,6,8", "350,360", "010", "VALUE:N1a" ], [ "0,1,5,9", "010", "020", "VALUE:N1b" ], [ "0,1,5,9", "100-360", "020", "VALUE:N1" ], [ "2,3,6,8", "010", "020", "VALUE:N1b" ], [ "2,3,6,8", "100,310", "020", "VALUE:N1b" ], [ "2,3,6,8", "320", "020", "VALUE:N1b" ], [ "2,3,6,8", "340", "020", "VALUE:N1b" ], [ "2,3,6,8", "350,360", "020", "VALUE:N1b" ], [ "0,1,5,9", "010", "100", "ERROR:" ], [ "0,1,5,9", "100-360", "100", "ERROR:" ], [ "2,3,6,8", "010", "100", "ERROR:" ], [ "2,3,6,8", "100,310", "100", "ERROR:" ], [ "2,3,6,8", "320", "100", "ERROR:" ], [ "2,3,6,8", "340", "100", "ERROR:" ], [ "2,3,6,8", "350,360", "100", "ERROR:" ], [ "0,1,5,9", "010", "150", "VALUE:N2" ], [ "0,1,5,9", "100-360", "150", "VALUE:N2" ], [ "2,3,6,8", "010", "150", "ERROR:" ], [ "2,3,6,8", "100,310", "150", "VALUE:N2" ], [ "2,3,6,8", "320", "150", "VALUE:N2" ], [ "2,3,6,8", "340", "150", "VALUE:N2" ], [ "2,3,6,8", "350,360", "150", "VALUE:N2" ], [ "0,1,5,9", "010", "888, 988", "ERROR:" ], [ "0,1,5,9", "100-360", "888, 988", "ERROR:" ], [ "2,3,6,8", "010", "888, 988", "ERROR:" ], [ "2,3,6,8", "100,310", "888, 988", "ERROR:" ], [ "2,3,6,8", "320", "888, 988", "ERROR:" ], [ "2,3,6,8", "340", "888, 988", "ERROR:" ], [ "2,3,6,8", "350,360", "888, 988", "ERROR:" ], [ "0,1,5,9", "010", "999", "VALUE:N1a" ], [ "0,1,5,9", "100-360", "999", "VALUE:N1" ], [ "2,3,6,8", "010", "999", "VALUE:N1a" ], [ "2,3,6,8", "100,310", "999", "VALUE:N1NOS" ], [ "2,3,6,8", "320", "999", "VALUE:N1a" ], [ "2,3,6,8", "340", "999", "VALUE:N1b" ], [ "2,3,6,8", "350,360", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xld.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xld.json
deleted file mode 100644
index b42848fe4..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xld.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_ajcc7_xld",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval AJCC7",
- "title" : "Lymph Node and Nodal Status Eval AJCC 7 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 010, 105-109, 114-130, and 600 ONLY, the N category is assigned based on the value of CS Lymph Nodes Eval and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.050Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "010", "000, 005", "ERROR:" ], [ "0,1,5,9", "105-109,114-130,600", "000, 005", "ERROR:" ], [ "2,3,6,8", "010", "000, 005", "ERROR:" ], [ "2,3,6,8", "105-109,114", "000, 005", "ERROR:" ], [ "2,3,6,8", "115", "000, 005", "ERROR:" ], [ "2,3,6,8", "120", "000, 005", "ERROR:" ], [ "2,3,6,8", "125-130,600", "000, 005", "ERROR:" ], [ "0,1,5,9", "010", "010", "VALUE:N1a" ], [ "0,1,5,9", "105-109,114-130,600", "010", "ERROR:" ], [ "2,3,6,8", "010", "010", "VALUE:N1a" ], [ "2,3,6,8", "105-109,114", "010", "VALUE:N1a" ], [ "2,3,6,8", "115", "010", "VALUE:N1a" ], [ "2,3,6,8", "120", "010", "VALUE:N1a" ], [ "2,3,6,8", "125-130,600", "010", "VALUE:N1a" ], [ "0,1,5,9", "010", "020", "VALUE:N1b" ], [ "0,1,5,9", "105-109,114-130,600", "020", "VALUE:N1" ], [ "2,3,6,8", "010", "020", "VALUE:N1b" ], [ "2,3,6,8", "105-109,114", "020", "VALUE:N1b" ], [ "2,3,6,8", "115", "020", "VALUE:N1b" ], [ "2,3,6,8", "120", "020", "VALUE:N1b" ], [ "2,3,6,8", "125-130,600", "020", "VALUE:N1b" ], [ "0,1,5,9", "010", "100", "ERROR:" ], [ "0,1,5,9", "105-109,114-130,600", "100", "ERROR:" ], [ "2,3,6,8", "010", "100", "ERROR:" ], [ "2,3,6,8", "105-109,114", "100", "ERROR:" ], [ "2,3,6,8", "115", "100", "ERROR:" ], [ "2,3,6,8", "120", "100", "ERROR:" ], [ "2,3,6,8", "125-130,600", "100", "ERROR:" ], [ "0,1,5,9", "010", "150", "VALUE:N2" ], [ "0,1,5,9", "105-109,114-130,600", "150", "VALUE:N2" ], [ "2,3,6,8", "010", "150", "ERROR:" ], [ "2,3,6,8", "105-109,114", "150", "VALUE:N2" ], [ "2,3,6,8", "115", "150", "VALUE:N2" ], [ "2,3,6,8", "120", "150", "VALUE:N2" ], [ "2,3,6,8", "125-130,600", "150", "VALUE:N2" ], [ "0,1,5,9", "010", "888, 988", "ERROR:" ], [ "0,1,5,9", "105-109,114-130,600", "888, 988", "ERROR:" ], [ "2,3,6,8", "010", "888, 988", "ERROR:" ], [ "2,3,6,8", "105-109,114", "888, 988", "ERROR:" ], [ "2,3,6,8", "115", "888, 988", "ERROR:" ], [ "2,3,6,8", "120", "888, 988", "ERROR:" ], [ "2,3,6,8", "125-130,600", "888, 988", "ERROR:" ], [ "0,1,5,9", "010", "999", "VALUE:N1a" ], [ "0,1,5,9", "105-109,114-130,600", "999", "VALUE:N1" ], [ "2,3,6,8", "010", "999", "VALUE:N1a" ], [ "2,3,6,8", "105-109,114", "999", "VALUE:N1NOS" ], [ "2,3,6,8", "115", "999", "VALUE:N1a" ], [ "2,3,6,8", "120", "999", "VALUE:N1b" ], [ "2,3,6,8", "125-130,600", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xle.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xle.json
deleted file mode 100644
index cc6b4c563..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xle.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_ajcc7_xle",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval AJCC7",
- "title" : "Lymph Node and Nodal Status Eval AJCC 7 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 010-360 ONLY, the N category is assigned based on the value of CS Lymph Nodes Eval and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.099Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "010", "000, 005", "ERROR:" ], [ "0,1,5,9", "100-360", "000, 005", "ERROR:" ], [ "2,3,6,8", "010", "000, 005", "ERROR:" ], [ "2,3,6,8", "100-310", "000, 005", "ERROR:" ], [ "2,3,6,8", "320", "000, 005", "ERROR:" ], [ "2,3,6,8", "340", "000, 005", "ERROR:" ], [ "2,3,6,8", "350,360", "000, 005", "ERROR:" ], [ "0,1,5,9", "010", "010", "VALUE:N1a" ], [ "0,1,5,9", "100-360", "010", "ERROR:" ], [ "2,3,6,8", "010", "010", "VALUE:N1a" ], [ "2,3,6,8", "100-310", "010", "VALUE:N1a" ], [ "2,3,6,8", "320", "010", "VALUE:N1a" ], [ "2,3,6,8", "340", "010", "VALUE:N1a" ], [ "2,3,6,8", "350,360", "010", "VALUE:N1a" ], [ "0,1,5,9", "010", "020", "VALUE:N1b" ], [ "0,1,5,9", "100-360", "020", "VALUE:N1" ], [ "2,3,6,8", "010", "020", "VALUE:N1b" ], [ "2,3,6,8", "100-310", "020", "VALUE:N1b" ], [ "2,3,6,8", "320", "020", "VALUE:N1b" ], [ "2,3,6,8", "340", "020", "VALUE:N1b" ], [ "2,3,6,8", "350,360", "020", "VALUE:N1b" ], [ "0,1,5,9", "010", "100", "ERROR:" ], [ "0,1,5,9", "100-360", "100", "ERROR:" ], [ "2,3,6,8", "010", "100", "ERROR:" ], [ "2,3,6,8", "100-310", "100", "ERROR:" ], [ "2,3,6,8", "320", "100", "ERROR:" ], [ "2,3,6,8", "340", "100", "ERROR:" ], [ "2,3,6,8", "350,360", "100", "ERROR:" ], [ "0,1,5,9", "010", "150", "VALUE:N2" ], [ "0,1,5,9", "100-360", "150", "VALUE:N2" ], [ "2,3,6,8", "010", "150", "ERROR:" ], [ "2,3,6,8", "100-310", "150", "VALUE:N2" ], [ "2,3,6,8", "320", "150", "VALUE:N2" ], [ "2,3,6,8", "340", "150", "VALUE:N2" ], [ "2,3,6,8", "350,360", "150", "VALUE:N2" ], [ "0,1,5,9", "010", "888, 988", "ERROR:" ], [ "0,1,5,9", "100-360", "888, 988", "ERROR:" ], [ "2,3,6,8", "010", "888, 988", "ERROR:" ], [ "2,3,6,8", "100-310", "888, 988", "ERROR:" ], [ "2,3,6,8", "320", "888, 988", "ERROR:" ], [ "2,3,6,8", "340", "888, 988", "ERROR:" ], [ "2,3,6,8", "350,360", "888, 988", "ERROR:" ], [ "0,1,5,9", "010", "999", "VALUE:N1a" ], [ "0,1,5,9", "100-360", "999", "VALUE:N1" ], [ "2,3,6,8", "010", "999", "VALUE:N1a" ], [ "2,3,6,8", "100-310", "999", "VALUE:N1NOS" ], [ "2,3,6,8", "320", "999", "VALUE:N1a" ], [ "2,3,6,8", "340", "999", "VALUE:N1b" ], [ "2,3,6,8", "350,360", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xlg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xlg.json
deleted file mode 100644
index 4734f162f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_ajcc7_xlg.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_ajcc7_xlg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval AJCC7",
- "title" : "Lymph Node and Nodal Status Eval AJCC 7 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 010-400 and 500 ONLY, the N category is assigned based on the value of CS Lymph Nodes Eval and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.152Z",
- "definition" : [ {
- "key" : "nodes_eval",
- "name" : "CS Lymph Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0,1,5,9", "010", "000, 005", "ERROR:" ], [ "0,1,5,9", "100-400,500", "000, 005", "ERROR:" ], [ "2,3,6,8", "010", "000, 005", "ERROR:" ], [ "2,3,6,8", "100,110", "000, 005", "ERROR:" ], [ "2,3,6,8", "120", "000, 005", "ERROR:" ], [ "2,3,6,8", "140", "000, 005", "ERROR:" ], [ "2,3,6,8", "150-400,500", "000, 005", "ERROR:" ], [ "0,1,5,9", "010", "010", "VALUE:N1a" ], [ "0,1,5,9", "100-400,500", "010", "ERROR:" ], [ "2,3,6,8", "010", "010", "VALUE:N1a" ], [ "2,3,6,8", "100,110", "010", "VALUE:N1a" ], [ "2,3,6,8", "120", "010", "VALUE:N1a" ], [ "2,3,6,8", "140", "010", "VALUE:N1a" ], [ "2,3,6,8", "150-400,500", "010", "VALUE:N1a" ], [ "0,1,5,9", "010", "020", "VALUE:N1b" ], [ "0,1,5,9", "100-400,500", "020", "VALUE:N1" ], [ "2,3,6,8", "010", "020", "VALUE:N1b" ], [ "2,3,6,8", "100,110", "020", "VALUE:N1b" ], [ "2,3,6,8", "120", "020", "VALUE:N1b" ], [ "2,3,6,8", "140", "020", "VALUE:N1b" ], [ "2,3,6,8", "150-400,500", "020", "VALUE:N1b" ], [ "0,1,5,9", "010", "100", "ERROR:" ], [ "0,1,5,9", "100-400,500", "100", "ERROR:" ], [ "2,3,6,8", "010", "100", "ERROR:" ], [ "2,3,6,8", "100,110", "100", "ERROR:" ], [ "2,3,6,8", "120", "100", "ERROR:" ], [ "2,3,6,8", "140", "100", "ERROR:" ], [ "2,3,6,8", "150-400,500", "100", "ERROR:" ], [ "0,1,5,9", "010", "150", "VALUE:N2" ], [ "0,1,5,9", "100-400,500", "150", "VALUE:N2" ], [ "2,3,6,8", "010", "150", "ERROR:" ], [ "2,3,6,8", "100,110", "150", "VALUE:N2" ], [ "2,3,6,8", "120", "150", "VALUE:N2" ], [ "2,3,6,8", "140", "150", "VALUE:N2" ], [ "2,3,6,8", "150-400,500", "150", "VALUE:N2" ], [ "0,1,5,9", "010", "888, 988", "ERROR:" ], [ "0,1,5,9", "100-400,500", "888, 988", "ERROR:" ], [ "2,3,6,8", "010", "888, 988", "ERROR:" ], [ "2,3,6,8", "100,110", "888, 988", "ERROR:" ], [ "2,3,6,8", "120", "888, 988", "ERROR:" ], [ "2,3,6,8", "140", "888, 988", "ERROR:" ], [ "2,3,6,8", "150-400, 500", "888, 988", "ERROR:" ], [ "0,1,5,9", "010", "999", "VALUE:N1a" ], [ "0,1,5,9", "100-400, 500", "999", "VALUE:N1" ], [ "2,3,6,8", "010", "999", "VALUE:N1a" ], [ "2,3,6,8", "100,110", "999", "VALUE:N1NOS" ], [ "2,3,6,8", "120", "999", "VALUE:N1a" ], [ "2,3,6,8", "140", "999", "VALUE:N1b" ], [ "2,3,6,8", "150-400, 500", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc6_xlm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc6_xlm.json
deleted file mode 100644
index fbdc54707..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc6_xlm.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_blank_ajcc6_xlm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval Blank AJCC6",
- "title" : "Lymph Node and Nodal Status Eval Blank AJCC 6 Table",
- "notes" : "**Note**: When no CS Lymph Nodes Eval code is recorded, for CS Lymph Nodes codes 100-118, 121-128, 152, 153, 155, and 158 ONLY, the N category for AJCC 6 staging is assigned based on the value of Regional Nodes Positive, CS Lymph Nodes, and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.206Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "100,110,115,118", "000-002,005", "ERROR:" ], [ "00", "121", "000-002,005", "ERROR:" ], [ "00", "122", "000-002,005", "ERROR:" ], [ "00", "123", "000-002,005", "ERROR:" ], [ "00", "124", "000-002,005", "ERROR:" ], [ "00", "125", "000-002,005", "ERROR:" ], [ "00", "128", "000-002,005", "ERROR:" ], [ "00", "152", "000-002,005", "ERROR:" ], [ "00", "153", "000-002,005", "ERROR:" ], [ "00", "155", "000-002,005", "ERROR:" ], [ "00", "158", "000-002,005", "ERROR:" ], [ "01", "100,110,115,118", "000-002,005", "ERROR:" ], [ "01", "121", "000-002,005", "ERROR:" ], [ "01", "122", "000-002,005", "ERROR:" ], [ "01", "123", "000-002,005", "ERROR:" ], [ "01", "124", "000-002,005", "ERROR:" ], [ "01", "125", "000-002,005", "ERROR:" ], [ "01", "128", "000-002,005", "ERROR:" ], [ "01", "152", "000-002,005", "ERROR:" ], [ "01", "153", "000-002,005", "ERROR:" ], [ "01", "155", "000-002,005", "ERROR:" ], [ "01", "158", "000-002,005", "ERROR:" ], [ "02-03", "100,110,115,118", "000-002,005", "ERROR:" ], [ "02-03", "121", "000-002,005", "ERROR:" ], [ "02-03", "122", "000-002,005", "ERROR:" ], [ "02-03", "123", "000-002,005", "ERROR:" ], [ "02-03", "124", "000-002,005", "ERROR:" ], [ "02-03", "125", "000-002,005", "ERROR:" ], [ "02-03", "128", "000-002,005", "ERROR:" ], [ "02-03", "152", "000-002,005", "ERROR:" ], [ "02-03", "153", "000-002,005", "ERROR:" ], [ "02-03", "155", "000-002,005", "ERROR:" ], [ "02-03", "158", "000-002,005", "ERROR:" ], [ "04-90", "100,110,115,118", "000-002,005", "ERROR:" ], [ "04-90", "121", "000-002,005", "ERROR:" ], [ "04-90", "122", "000-002,005", "ERROR:" ], [ "04-90", "123", "000-002,005", "ERROR:" ], [ "04-90", "124", "000-002,005", "ERROR:" ], [ "04-90", "125", "000-002,005", "ERROR:" ], [ "04-90", "128", "000-002,005", "ERROR:" ], [ "04-90", "152", "000-002,005", "ERROR:" ], [ "04-90", "153", "000-002,005", "ERROR:" ], [ "04-90", "155", "000-002,005", "ERROR:" ], [ "04-90", "158", "000-002,005", "ERROR:" ], [ "95", "100,110,115,118", "000-002,005", "ERROR:" ], [ "95", "121", "000-002,005", "ERROR:" ], [ "95", "122", "000-002,005", "ERROR:" ], [ "95", "123", "000-002,005", "ERROR:" ], [ "95", "124", "000-002,005", "ERROR:" ], [ "95", "125", "000-002,005", "ERROR:" ], [ "95", "128", "000-002,005", "ERROR:" ], [ "95", "152", "000-002,005", "ERROR:" ], [ "95", "153", "000-002,005", "ERROR:" ], [ "95", "155", "000-002,005", "ERROR:" ], [ "95", "158", "000-002,005", "ERROR:" ], [ "97", "100,110,115,118", "000-002,005", "ERROR:" ], [ "97", "121", "000-002,005", "ERROR:" ], [ "97", "122", "000-002,005", "ERROR:" ], [ "97", "123", "000-002,005", "ERROR:" ], [ "97", "124", "000-002,005", "ERROR:" ], [ "97", "125", "000-002,005", "ERROR:" ], [ "97", "128", "000-002,005", "ERROR:" ], [ "97", "152", "000-002,005", "ERROR:" ], [ "97", "153", "000-002,005", "ERROR:" ], [ "97", "155", "000-002,005", "ERROR:" ], [ "97", "158", "000-002,005", "ERROR:" ], [ "98", "100,110,115,118", "000-002,005", "ERROR:" ], [ "98", "121", "000-002,005", "ERROR:" ], [ "98", "122", "000-002,005", "ERROR:" ], [ "98", "123", "000-002,005", "ERROR:" ], [ "98", "124", "000-002,005", "ERROR:" ], [ "98", "125", "000-002,005", "ERROR:" ], [ "98", "128", "000-002,005", "ERROR:" ], [ "98", "152", "000-002,005", "ERROR:" ], [ "98", "153", "000-002,005", "ERROR:" ], [ "98", "155", "000-002,005", "ERROR:" ], [ "98", "158", "000-002,005", "ERROR:" ], [ "99", "100,110,115,118", "000-002,005", "ERROR:" ], [ "99", "121", "000-002,005", "ERROR:" ], [ "99", "122", "000-002,005", "ERROR:" ], [ "99", "123", "000-002,005", "ERROR:" ], [ "99", "124", "000-002,005", "ERROR:" ], [ "99", "125", "000-002,005", "ERROR:" ], [ "99", "128", "000-002,005", "ERROR:" ], [ "99", "152", "000-002,005", "ERROR:" ], [ "99", "153", "000-002,005", "ERROR:" ], [ "99", "155", "000-002,005", "ERROR:" ], [ "99", "158", "000-002,005", "ERROR:" ], [ "00", "100,110,115,118", "010", "ERROR:" ], [ "00", "121", "010", "ERROR:" ], [ "00", "122", "010", "ERROR:" ], [ "00", "123", "010", "ERROR:" ], [ "00", "124", "010", "ERROR:" ], [ "00", "125", "010", "ERROR:" ], [ "00", "128", "010", "ERROR:" ], [ "00", "152", "010", "ERROR:" ], [ "00", "153", "010", "ERROR:" ], [ "00", "155", "010", "ERROR:" ], [ "00", "158", "010", "ERROR:" ], [ "01", "100,110,115,118", "010", "VALUE:N1a" ], [ "01", "121", "010", "VALUE:N1" ], [ "01", "122", "010", "VALUE:N1a" ], [ "01", "123", "010", "VALUE:N1a" ], [ "01", "124", "010", "VALUE:N1a" ], [ "01", "125", "010", "VALUE:N1a" ], [ "01", "128", "010", "VALUE:N1" ], [ "01", "152", "010", "VALUE:N1a" ], [ "01", "153", "010", "VALUE:N1a" ], [ "01", "155", "010", "VALUE:N1a" ], [ "01", "158", "010", "VALUE:N1a" ], [ "02-03", "100,110,115,118", "010", "VALUE:N2a" ], [ "02-03", "121", "010", "VALUE:N2" ], [ "02-03", "122", "010", "VALUE:N2a" ], [ "02-03", "123", "010", "VALUE:N2a" ], [ "02-03", "124", "010", "VALUE:N2a" ], [ "02-03", "125", "010", "VALUE:N2a" ], [ "02-03", "128", "010", "VALUE:N2" ], [ "02-03", "152", "010", "VALUE:N2a" ], [ "02-03", "153", "010", "VALUE:N2a" ], [ "02-03", "155", "010", "VALUE:N2a" ], [ "02-03", "158", "010", "VALUE:N2a" ], [ "04-90", "100,110,115,118", "010", "VALUE:N3" ], [ "04-90", "121", "010", "VALUE:N1" ], [ "04-90", "122", "010", "VALUE:N3" ], [ "04-90", "123", "010", "VALUE:N3" ], [ "04-90", "124", "010", "VALUE:N3" ], [ "04-90", "125", "010", "VALUE:N3" ], [ "04-90", "128", "010", "VALUE:N2" ], [ "04-90", "152", "010", "VALUE:N3" ], [ "04-90", "153", "010", "VALUE:N3" ], [ "04-90", "155", "010", "VALUE:N3" ], [ "04-90", "158", "010", "VALUE:N3" ], [ "95", "100,110,115,118", "010", "VALUE:N1a" ], [ "95", "121", "010", "VALUE:N1" ], [ "95", "122", "010", "VALUE:N1a" ], [ "95", "123", "010", "VALUE:N1b" ], [ "95", "124", "010", "VALUE:N1NOS" ], [ "95", "125", "010", "VALUE:N1" ], [ "95", "128", "010", "VALUE:N2" ], [ "95", "152", "010", "VALUE:N2a" ], [ "95", "153", "010", "VALUE:N2b" ], [ "95", "155", "010", "VALUE:N2" ], [ "95", "158", "010", "VALUE:N2a" ], [ "97", "100,110,115,118", "010", "VALUE:N1a" ], [ "97", "121", "010", "VALUE:N1" ], [ "97", "122", "010", "VALUE:N1a" ], [ "97", "123", "010", "VALUE:N1a" ], [ "97", "124", "010", "VALUE:N1a" ], [ "97", "125", "010", "VALUE:N1a" ], [ "97", "128", "010", "VALUE:N2" ], [ "97", "152", "010", "VALUE:N2a" ], [ "97", "153", "010", "VALUE:N2a" ], [ "97", "155", "010", "VALUE:N2a" ], [ "97", "158", "010", "VALUE:N2a" ], [ "98", "100,110,115,118", "010", "ERROR:" ], [ "98", "121", "010", "ERROR:" ], [ "98", "122", "010", "ERROR:" ], [ "98", "123", "010", "ERROR:" ], [ "98", "124", "010", "ERROR:" ], [ "98", "125", "010", "ERROR:" ], [ "98", "128", "010", "ERROR:" ], [ "98", "152", "010", "ERROR:" ], [ "98", "153", "010", "ERROR:" ], [ "98", "155", "010", "ERROR:" ], [ "98", "158", "010", "ERROR:" ], [ "99", "100,110,115,118", "010", "VALUE:N1" ], [ "99", "121", "010", "VALUE:N1" ], [ "99", "122", "010", "VALUE:N1" ], [ "99", "123", "010", "VALUE:N1" ], [ "99", "124", "010", "VALUE:N1" ], [ "99", "125", "010", "VALUE:N1" ], [ "99", "128", "010", "VALUE:N2" ], [ "99", "152", "010", "VALUE:N2" ], [ "99", "153", "010", "VALUE:N2" ], [ "99", "155", "010", "VALUE:N2" ], [ "99", "158", "010", "VALUE:N2" ], [ "00", "100,110,115,118", "020", "VALUE:N1" ], [ "00", "121", "020", "VALUE:N1" ], [ "00", "122", "020", "VALUE:N1" ], [ "00", "123", "020", "VALUE:N1" ], [ "00", "124", "020", "VALUE:N1" ], [ "00", "125", "020", "VALUE:N1" ], [ "00", "128", "020", "VALUE:N2" ], [ "00", "152", "020", "VALUE:N2" ], [ "00", "153", "020", "VALUE:N2" ], [ "00", "155", "020", "VALUE:N2" ], [ "00", "158", "020", "VALUE:N2" ], [ "01", "100,110,115,118", "020", "VALUE:N1b" ], [ "01", "121", "020", "VALUE:N1" ], [ "01", "122", "020", "VALUE:N1b" ], [ "01", "123", "020", "VALUE:N1b" ], [ "01", "124", "020", "VALUE:N1b" ], [ "01", "125", "020", "VALUE:N1b" ], [ "01", "128", "020", "VALUE:N1" ], [ "01", "152", "020", "VALUE:N1b" ], [ "01", "153", "020", "VALUE:N1b" ], [ "01", "155", "020", "VALUE:N1b" ], [ "01", "158", "020", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "020", "VALUE:N2b" ], [ "02-03", "121", "020", "VALUE:N2" ], [ "02-03", "122", "020", "VALUE:N2b" ], [ "02-03", "123", "020", "VALUE:N2b" ], [ "02-03", "124", "020", "VALUE:N2b" ], [ "02-03", "125", "020", "VALUE:N2b" ], [ "02-03", "128", "020", "VALUE:N2" ], [ "02-03", "152", "020", "VALUE:N2b" ], [ "02-03", "153", "020", "VALUE:N2b" ], [ "02-03", "155", "020", "VALUE:N2b" ], [ "02-03", "158", "020", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "020", "VALUE:N3" ], [ "04-90", "121", "020", "VALUE:N1" ], [ "04-90", "122", "020", "VALUE:N3" ], [ "04-90", "123", "020", "VALUE:N3" ], [ "04-90", "124", "020", "VALUE:N3" ], [ "04-90", "125", "020", "VALUE:N3" ], [ "04-90", "128", "020", "VALUE:N2" ], [ "04-90", "152", "020", "VALUE:N3" ], [ "04-90", "153", "020", "VALUE:N3" ], [ "04-90", "155", "020", "VALUE:N3" ], [ "04-90", "158", "020", "VALUE:N3" ], [ "95", "100,110,115,118", "020", "VALUE:N1b" ], [ "95", "121", "020", "VALUE:N1" ], [ "95", "122", "020", "VALUE:N1b" ], [ "95", "123", "020", "VALUE:N1b" ], [ "95", "124", "020", "VALUE:N1b" ], [ "95", "125", "020", "VALUE:N1" ], [ "95", "128", "020", "VALUE:N2" ], [ "95", "152", "020", "VALUE:N2b" ], [ "95", "153", "020", "VALUE:N2b" ], [ "95", "155", "020", "VALUE:N2" ], [ "95", "158", "020", "VALUE:N2b" ], [ "97", "100,110,115,118", "020", "VALUE:N1b" ], [ "97", "121", "020", "VALUE:N1" ], [ "97", "122", "020", "VALUE:N1b" ], [ "97", "123", "020", "VALUE:N1b" ], [ "97", "124", "020", "VALUE:N1b" ], [ "97", "125", "020", "VALUE:N1b" ], [ "97", "128", "020", "VALUE:N2" ], [ "97", "152", "020", "VALUE:N2b" ], [ "97", "153", "020", "VALUE:N2b" ], [ "97", "155", "020", "VALUE:N2b" ], [ "97", "158", "020", "VALUE:N2b" ], [ "98", "100,110,115,118", "020", "VALUE:N1" ], [ "98", "121", "020", "VALUE:N1" ], [ "98", "122", "020", "VALUE:N1" ], [ "98", "123", "020", "VALUE:N1" ], [ "98", "124", "020", "VALUE:N1" ], [ "98", "125", "020", "VALUE:N1" ], [ "98", "128", "020", "VALUE:N2" ], [ "98", "152", "020", "VALUE:N2" ], [ "98", "153", "020", "VALUE:N2" ], [ "98", "155", "020", "VALUE:N2" ], [ "98", "158", "020", "VALUE:N2" ], [ "99", "100,110,115,118", "020", "VALUE:N1" ], [ "99", "121", "020", "VALUE:N1" ], [ "99", "122", "020", "VALUE:N1" ], [ "99", "123", "020", "VALUE:N1" ], [ "99", "124", "020", "VALUE:N1" ], [ "99", "125", "020", "VALUE:N1" ], [ "99", "128", "020", "VALUE:N2" ], [ "99", "152", "020", "VALUE:N2" ], [ "99", "153", "020", "VALUE:N2" ], [ "99", "155", "020", "VALUE:N2" ], [ "99", "158", "020", "VALUE:N2" ], [ "00", "100,110,115,118", "043", "VALUE:N1" ], [ "00", "121", "043", "VALUE:N1" ], [ "00", "122", "043", "VALUE:N1" ], [ "00", "123", "043", "VALUE:N1" ], [ "00", "124", "043", "VALUE:N1" ], [ "00", "125", "043", "VALUE:N1" ], [ "00", "128", "043", "VALUE:N1" ], [ "00", "152", "043", "VALUE:N1" ], [ "00", "153", "043", "VALUE:N1" ], [ "00", "155", "043", "VALUE:N1" ], [ "00", "158", "043", "VALUE:N2" ], [ "01", "100,110,115,118", "043", "VALUE:N1" ], [ "01", "121", "043", "VALUE:N1" ], [ "01", "122", "043", "VALUE:N1b" ], [ "01", "123", "043", "VALUE:N1b" ], [ "01", "124", "043", "VALUE:N1b" ], [ "01", "125", "043", "VALUE:N1b" ], [ "01", "128", "043", "VALUE:N1" ], [ "01", "152", "043", "VALUE:N1b" ], [ "01", "153", "043", "VALUE:N1b" ], [ "01", "155", "043", "VALUE:N1b" ], [ "01", "158", "043", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "043", "VALUE:N2" ], [ "02-03", "121", "043", "VALUE:N2" ], [ "02-03", "122", "043", "VALUE:N2b" ], [ "02-03", "123", "043", "VALUE:N2b" ], [ "02-03", "124", "043", "VALUE:N1b" ], [ "02-03", "125", "043", "VALUE:N2b" ], [ "02-03", "128", "043", "VALUE:N1" ], [ "02-03", "152", "043", "VALUE:N2b" ], [ "02-03", "153", "043", "VALUE:N2b" ], [ "02-03", "155", "043", "VALUE:N2b" ], [ "02-03", "158", "043", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "043", "VALUE:N3" ], [ "04-90", "121", "043", "VALUE:N1" ], [ "04-90", "122", "043", "VALUE:N3" ], [ "04-90", "123", "043", "VALUE:N3" ], [ "04-90", "124", "043", "VALUE:N3" ], [ "04-90", "125", "043", "VALUE:N3" ], [ "04-90", "128", "043", "VALUE:N1" ], [ "04-90", "152", "043", "VALUE:N3" ], [ "04-90", "153", "043", "VALUE:N3" ], [ "04-90", "155", "043", "VALUE:N3" ], [ "04-90", "158", "043", "VALUE:N3" ], [ "95", "100,110,115,118", "043", "VALUE:N1" ], [ "95", "121", "043", "VALUE:N1" ], [ "95", "122", "043", "VALUE:N1b" ], [ "95", "123", "043", "VALUE:N1b" ], [ "95", "124", "043", "VALUE:N1b" ], [ "95", "125", "043", "VALUE:N1" ], [ "95", "128", "043", "VALUE:N1" ], [ "95", "152", "043", "VALUE:N2b" ], [ "95", "153", "043", "VALUE:N2b" ], [ "95", "155", "043", "VALUE:N1" ], [ "95", "158", "043", "VALUE:N2b" ], [ "97", "100,110,115,118", "043", "VALUE:N1b" ], [ "97", "121", "043", "VALUE:N1" ], [ "97", "122", "043", "VALUE:N1b" ], [ "97", "123", "043", "VALUE:N1b" ], [ "97", "124", "043", "VALUE:N1b" ], [ "97", "125", "043", "VALUE:N1b" ], [ "97", "128", "043", "VALUE:N1" ], [ "97", "152", "043", "VALUE:N2b" ], [ "97", "153", "043", "VALUE:N2b" ], [ "97", "155", "043", "VALUE:N2b" ], [ "97", "158", "043", "VALUE:N2b" ], [ "98", "100,110,115,118", "043", "VALUE:N1" ], [ "98", "121", "043", "VALUE:N1" ], [ "98", "122", "043", "VALUE:N1" ], [ "98", "123", "043", "VALUE:N1" ], [ "98", "124", "043", "VALUE:N1" ], [ "98", "125", "043", "VALUE:N1" ], [ "98", "128", "043", "VALUE:N1" ], [ "98", "152", "043", "VALUE:N1" ], [ "98", "153", "043", "VALUE:N1" ], [ "98", "155", "043", "VALUE:N1" ], [ "98", "158", "043", "VALUE:N2" ], [ "99", "100,110,115,118", "043", "VALUE:N1" ], [ "99", "121", "043", "VALUE:N1" ], [ "99", "122", "043", "VALUE:N1" ], [ "99", "123", "043", "VALUE:N1" ], [ "99", "124", "043", "VALUE:N1" ], [ "99", "125", "043", "VALUE:N1" ], [ "99", "128", "043", "VALUE:N1" ], [ "99", "152", "043", "VALUE:N1" ], [ "99", "153", "043", "VALUE:N1" ], [ "99", "155", "043", "VALUE:N1" ], [ "99", "158", "043", "VALUE:N2" ], [ "00", "100,110,115,118", "045", "VALUE:N2" ], [ "00", "121", "045", "VALUE:N2" ], [ "00", "122", "045", "VALUE:N2" ], [ "00", "123", "045", "VALUE:N2" ], [ "00", "124", "045", "VALUE:N2" ], [ "00", "125", "045", "VALUE:N2" ], [ "00", "128", "045", "VALUE:N2" ], [ "00", "152", "045", "VALUE:N2" ], [ "00", "153", "045", "VALUE:N2" ], [ "00", "155", "045", "VALUE:N2" ], [ "00", "158", "045", "VALUE:N2" ], [ "01", "100,110,115,118", "045", "VALUE:N2" ], [ "01", "121", "045", "VALUE:N2" ], [ "01", "122", "045", "VALUE:N1b" ], [ "01", "123", "045", "VALUE:N1b" ], [ "01", "124", "045", "VALUE:N1b" ], [ "01", "125", "045", "VALUE:N1b" ], [ "01", "128", "045", "VALUE:N2" ], [ "01", "152", "045", "VALUE:N1b" ], [ "01", "153", "045", "VALUE:N1b" ], [ "01", "155", "045", "VALUE:N1b" ], [ "01", "158", "045", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "045", "VALUE:N2" ], [ "02-03", "121", "045", "VALUE:N2" ], [ "02-03", "122", "045", "VALUE:N2b" ], [ "02-03", "123", "045", "VALUE:N2b" ], [ "02-03", "124", "045", "VALUE:N1b" ], [ "02-03", "125", "045", "VALUE:N2b" ], [ "02-03", "128", "045", "VALUE:N2" ], [ "02-03", "152", "045", "VALUE:N2b" ], [ "02-03", "153", "045", "VALUE:N2b" ], [ "02-03", "155", "045", "VALUE:N2b" ], [ "02-03", "158", "045", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "045", "VALUE:N3" ], [ "04-90", "121", "045", "VALUE:N2" ], [ "04-90", "122", "045", "VALUE:N3" ], [ "04-90", "123", "045", "VALUE:N3" ], [ "04-90", "124", "045", "VALUE:N3" ], [ "04-90", "125", "045", "VALUE:N3" ], [ "04-90", "128", "045", "VALUE:N2" ], [ "04-90", "152", "045", "VALUE:N3" ], [ "04-90", "153", "045", "VALUE:N3" ], [ "04-90", "155", "045", "VALUE:N3" ], [ "04-90", "158", "045", "VALUE:N3" ], [ "95", "100,110,115,118", "045", "VALUE:N2" ], [ "95", "121", "045", "VALUE:N2" ], [ "95", "122", "045", "VALUE:N1b" ], [ "95", "123", "045", "VALUE:N1b" ], [ "95", "124", "045", "VALUE:N1b" ], [ "95", "125", "045", "VALUE:N2" ], [ "95", "128", "045", "VALUE:N2" ], [ "95", "152", "045", "VALUE:N2b" ], [ "95", "153", "045", "VALUE:N2b" ], [ "95", "155", "045", "VALUE:N2" ], [ "95", "158", "045", "VALUE:N2b" ], [ "97", "100,110,115,118", "045", "VALUE:N2" ], [ "97", "121", "045", "VALUE:N2" ], [ "97", "122", "045", "VALUE:N1b" ], [ "97", "123", "045", "VALUE:N1b" ], [ "97", "124", "045", "VALUE:N1b" ], [ "97", "125", "045", "VALUE:N1b" ], [ "97", "128", "045", "VALUE:N2" ], [ "97", "152", "045", "VALUE:N2b" ], [ "97", "153", "045", "VALUE:N2b" ], [ "97", "155", "045", "VALUE:N2b" ], [ "97", "158", "045", "VALUE:N2b" ], [ "98", "100,110,115,118", "045", "VALUE:N2" ], [ "98", "121", "045", "VALUE:N2" ], [ "98", "122", "045", "VALUE:N2" ], [ "98", "123", "045", "VALUE:N2" ], [ "98", "124", "045", "VALUE:N2" ], [ "98", "125", "045", "VALUE:N2" ], [ "98", "128", "045", "VALUE:N2" ], [ "98", "152", "045", "VALUE:N2" ], [ "98", "153", "045", "VALUE:N2" ], [ "98", "155", "045", "VALUE:N2" ], [ "98", "158", "045", "VALUE:N2" ], [ "99", "100,110,115,118", "045", "VALUE:N2" ], [ "99", "121", "045", "VALUE:N2" ], [ "99", "122", "045", "VALUE:N2" ], [ "99", "123", "045", "VALUE:N2" ], [ "99", "124", "045", "VALUE:N2" ], [ "99", "125", "045", "VALUE:N2" ], [ "99", "128", "045", "VALUE:N2" ], [ "99", "152", "045", "VALUE:N2" ], [ "99", "153", "045", "VALUE:N2" ], [ "99", "155", "045", "VALUE:N2" ], [ "99", "158", "045", "VALUE:N2" ], [ "00", "100,110,115,118", "048", "VALUE:N3" ], [ "00", "121", "048", "VALUE:N3" ], [ "00", "122", "048", "VALUE:N3" ], [ "00", "123", "048", "VALUE:N3" ], [ "00", "124", "048", "VALUE:N3" ], [ "00", "125", "048", "VALUE:N3" ], [ "00", "128", "048", "VALUE:N3" ], [ "00", "152", "048", "VALUE:N3" ], [ "00", "153", "048", "VALUE:N3" ], [ "00", "155", "048", "VALUE:N3" ], [ "00", "158", "048", "VALUE:N2" ], [ "01", "100,110,115,118", "048", "VALUE:N3" ], [ "01", "121", "048", "VALUE:N3" ], [ "01", "122", "048", "VALUE:N1b" ], [ "01", "123", "048", "VALUE:N1b" ], [ "01", "124", "048", "VALUE:N1b" ], [ "01", "125", "048", "VALUE:N1b" ], [ "01", "128", "048", "VALUE:N3" ], [ "01", "152", "048", "VALUE:N1b" ], [ "01", "153", "048", "VALUE:N1b" ], [ "01", "155", "048", "VALUE:N1b" ], [ "01", "158", "048", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "048", "VALUE:N3" ], [ "02-03", "121", "048", "VALUE:N3" ], [ "02-03", "122", "048", "VALUE:N2b" ], [ "02-03", "123", "048", "VALUE:N2b" ], [ "02-03", "124", "048", "VALUE:N1b" ], [ "02-03", "125", "048", "VALUE:N2b" ], [ "02-03", "128", "048", "VALUE:N3" ], [ "02-03", "152", "048", "VALUE:N2b" ], [ "02-03", "153", "048", "VALUE:N2b" ], [ "02-03", "155", "048", "VALUE:N2b" ], [ "02-03", "158", "048", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "048", "VALUE:N3" ], [ "04-90", "121", "048", "VALUE:N3" ], [ "04-90", "122", "048", "VALUE:N3" ], [ "04-90", "123", "048", "VALUE:N3" ], [ "04-90", "124", "048", "VALUE:N3" ], [ "04-90", "125", "048", "VALUE:N3" ], [ "04-90", "128", "048", "VALUE:N3" ], [ "04-90", "152", "048", "VALUE:N3" ], [ "04-90", "153", "048", "VALUE:N3" ], [ "04-90", "155", "048", "VALUE:N3" ], [ "04-90", "158", "048", "VALUE:N3" ], [ "95", "100,110,115,118", "048", "VALUE:N3" ], [ "95", "121", "048", "VALUE:N3" ], [ "95", "122", "048", "VALUE:N1b" ], [ "95", "123", "048", "VALUE:N1b" ], [ "95", "124", "048", "VALUE:N1b" ], [ "95", "125", "048", "VALUE:N3" ], [ "95", "128", "048", "VALUE:N3" ], [ "95", "152", "048", "VALUE:N2b" ], [ "95", "153", "048", "VALUE:N2b" ], [ "95", "155", "048", "VALUE:N3" ], [ "95", "158", "048", "VALUE:N2b" ], [ "97", "100,110,115,118", "048", "VALUE:N3" ], [ "97", "121", "048", "VALUE:N3" ], [ "97", "122", "048", "VALUE:N1b" ], [ "97", "123", "048", "VALUE:N1b" ], [ "97", "124", "048", "VALUE:N1b" ], [ "97", "125", "048", "VALUE:N1b" ], [ "97", "128", "048", "VALUE:N3" ], [ "97", "152", "048", "VALUE:N2b" ], [ "97", "153", "048", "VALUE:N2b" ], [ "97", "155", "048", "VALUE:N2b" ], [ "97", "158", "048", "VALUE:N2b" ], [ "98", "100,110,115,118", "048", "VALUE:N3" ], [ "98", "121", "048", "VALUE:N3" ], [ "98", "122", "048", "VALUE:N3" ], [ "98", "123", "048", "VALUE:N3" ], [ "98", "124", "048", "VALUE:N3" ], [ "98", "125", "048", "VALUE:N3" ], [ "98", "128", "048", "VALUE:N3" ], [ "98", "152", "048", "VALUE:N3" ], [ "98", "153", "048", "VALUE:N3" ], [ "98", "155", "048", "VALUE:N3" ], [ "98", "158", "048", "VALUE:N2" ], [ "99", "100,110,115,118", "048", "VALUE:N3" ], [ "99", "121", "048", "VALUE:N3" ], [ "99", "122", "048", "VALUE:N3" ], [ "99", "123", "048", "VALUE:N3" ], [ "99", "124", "048", "VALUE:N3" ], [ "99", "125", "048", "VALUE:N3" ], [ "99", "128", "048", "VALUE:N3" ], [ "99", "152", "048", "VALUE:N3" ], [ "99", "153", "048", "VALUE:N3" ], [ "99", "155", "048", "VALUE:N3" ], [ "99", "158", "048", "VALUE:N2" ], [ "00", "100,110,115,118", "050", "VALUE:N1" ], [ "00", "121", "050", "VALUE:N1" ], [ "00", "122", "050", "VALUE:N1" ], [ "00", "123", "050", "VALUE:N1" ], [ "00", "124", "050", "VALUE:N1" ], [ "00", "125", "050", "VALUE:N1" ], [ "00", "128", "050", "VALUE:N2" ], [ "00", "152", "050", "VALUE:N2" ], [ "00", "153", "050", "VALUE:N2" ], [ "00", "155", "050", "VALUE:N2" ], [ "00", "158", "050", "VALUE:N2" ], [ "01", "100,110,115,118", "050", "VALUE:N1" ], [ "01", "121", "050", "VALUE:N1" ], [ "01", "122", "050", "VALUE:N1b" ], [ "01", "123", "050", "VALUE:N1b" ], [ "01", "124", "050", "VALUE:N1b" ], [ "01", "125", "050", "VALUE:N1NOS" ], [ "01", "128", "050", "VALUE:N2" ], [ "01", "152", "050", "VALUE:N2b" ], [ "01", "153", "050", "VALUE:N2b" ], [ "01", "155", "050", "VALUE:N2b" ], [ "01", "158", "050", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "050", "VALUE:N1" ], [ "02-03", "121", "050", "VALUE:N1" ], [ "02-03", "122", "050", "VALUE:N2b" ], [ "02-03", "123", "050", "VALUE:N2b" ], [ "02-03", "124", "050", "VALUE:N2b" ], [ "02-03", "125", "050", "VALUE:N2b" ], [ "02-03", "128", "050", "VALUE:N2" ], [ "02-03", "152", "050", "VALUE:N2b" ], [ "02-03", "153", "050", "VALUE:N2b" ], [ "02-03", "155", "050", "VALUE:N2b" ], [ "02-03", "158", "050", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "050", "VALUE:N3" ], [ "04-90", "121", "050", "VALUE:N1" ], [ "04-90", "122", "050", "VALUE:N3" ], [ "04-90", "123", "050", "VALUE:N3" ], [ "04-90", "124", "050", "VALUE:N3" ], [ "04-90", "125", "050", "VALUE:N3" ], [ "04-90", "128", "050", "VALUE:N2" ], [ "04-90", "152", "050", "VALUE:N3" ], [ "04-90", "153", "050", "VALUE:N3" ], [ "04-90", "155", "050", "VALUE:N3" ], [ "04-90", "158", "050", "VALUE:N3" ], [ "95", "100,110,115,118", "050", "VALUE:N1" ], [ "95", "121", "050", "VALUE:N1" ], [ "95", "122", "050", "VALUE:N1b" ], [ "95", "123", "050", "VALUE:N1b" ], [ "95", "124", "050", "VALUE:N1b" ], [ "95", "125", "050", "VALUE:N1" ], [ "95", "128", "050", "VALUE:N2" ], [ "95", "152", "050", "VALUE:N2b" ], [ "95", "153", "050", "VALUE:N2b" ], [ "95", "155", "050", "VALUE:N2" ], [ "95", "158", "050", "VALUE:N2b" ], [ "97", "100,110,115,118", "050", "VALUE:N1b" ], [ "97", "121", "050", "VALUE:N1" ], [ "97", "122", "050", "VALUE:N1b" ], [ "97", "123", "050", "VALUE:N1b" ], [ "97", "124", "050", "VALUE:N1b" ], [ "97", "125", "050", "VALUE:N1NOS" ], [ "97", "128", "050", "VALUE:N2" ], [ "97", "152", "050", "VALUE:N2b" ], [ "97", "153", "050", "VALUE:N2b" ], [ "97", "155", "050", "VALUE:N2b" ], [ "97", "158", "050", "VALUE:N2b" ], [ "98", "100,110,115,118", "050", "VALUE:N1" ], [ "98", "121", "050", "VALUE:N1" ], [ "98", "122", "050", "VALUE:N1" ], [ "98", "123", "050", "VALUE:N1" ], [ "98", "124", "050", "VALUE:N1" ], [ "98", "125", "050", "VALUE:N1" ], [ "98", "128", "050", "VALUE:N2" ], [ "98", "152", "050", "VALUE:N2" ], [ "98", "153", "050", "VALUE:N2" ], [ "98", "155", "050", "VALUE:N2" ], [ "98", "158", "050", "VALUE:N2" ], [ "99", "100,110,115,118", "050", "VALUE:N1" ], [ "99", "121", "050", "VALUE:N1" ], [ "99", "122", "050", "VALUE:N1" ], [ "99", "123", "050", "VALUE:N1" ], [ "99", "124", "050", "VALUE:N1" ], [ "99", "125", "050", "VALUE:N1" ], [ "99", "128", "050", "VALUE:N2" ], [ "99", "152", "050", "VALUE:N2" ], [ "99", "153", "050", "VALUE:N2" ], [ "99", "155", "050", "VALUE:N2" ], [ "99", "158", "050", "VALUE:N2" ], [ "00", "100,110,115,118", "100", "ERROR:" ], [ "00", "121", "100", "ERROR:" ], [ "00", "122", "100", "ERROR:" ], [ "00", "123", "100", "ERROR:" ], [ "00", "124", "100", "ERROR:" ], [ "00", "125", "100", "ERROR:" ], [ "00", "128", "100", "ERROR:" ], [ "00", "152", "100", "ERROR:" ], [ "00", "153", "100", "ERROR:" ], [ "00", "155", "100", "VALUE:N2c" ], [ "00", "158", "100", "VALUE:N2c" ], [ "01", "100,110,115,118", "100", "ERROR:" ], [ "01", "121", "100", "ERROR:" ], [ "01", "122", "100", "ERROR:" ], [ "01", "123", "100", "ERROR:" ], [ "01", "124", "100", "ERROR:" ], [ "01", "125", "100", "ERROR:" ], [ "01", "128", "100", "ERROR:" ], [ "01", "152", "100", "ERROR:" ], [ "01", "153", "100", "ERROR:" ], [ "01", "155", "100", "ERROR:" ], [ "01", "158", "100", "ERROR:" ], [ "02-03", "100,110,115,118", "100", "ERROR:" ], [ "02-03", "121", "100", "ERROR:" ], [ "02-03", "122", "100", "ERROR:" ], [ "02-03", "123", "100", "ERROR:" ], [ "02-03", "124", "100", "ERROR:" ], [ "02-03", "125", "100", "ERROR:" ], [ "02-03", "128", "100", "ERROR:" ], [ "02-03", "152", "100", "ERROR:" ], [ "02-03", "153", "100", "ERROR:" ], [ "02-03", "155", "100", "ERROR:" ], [ "02-03", "158", "100", "ERROR:" ], [ "04-90", "100,110,115,118", "100", "ERROR:" ], [ "04-90", "121", "100", "ERROR:" ], [ "04-90", "122", "100", "ERROR:" ], [ "04-90", "123", "100", "ERROR:" ], [ "04-90", "124", "100", "ERROR:" ], [ "04-90", "125", "100", "ERROR:" ], [ "04-90", "128", "100", "ERROR:" ], [ "04-90", "152", "100", "ERROR:" ], [ "04-90", "153", "100", "ERROR:" ], [ "04-90", "155", "100", "ERROR:" ], [ "04-90", "158", "100", "ERROR:" ], [ "95", "100,110,115,118", "100", "ERROR:" ], [ "95", "121", "100", "ERROR:" ], [ "95", "122", "100", "ERROR:" ], [ "95", "123", "100", "ERROR:" ], [ "95", "124", "100", "ERROR:" ], [ "95", "125", "100", "ERROR:" ], [ "95", "128", "100", "ERROR:" ], [ "95", "152", "100", "ERROR:" ], [ "95", "153", "100", "ERROR:" ], [ "95", "155", "100", "ERROR:" ], [ "95", "158", "100", "ERROR:" ], [ "97", "100,110,115,118", "100", "ERROR:" ], [ "97", "121", "100", "ERROR:" ], [ "97", "122", "100", "ERROR:" ], [ "97", "123", "100", "ERROR:" ], [ "97", "124", "100", "ERROR:" ], [ "97", "125", "100", "ERROR:" ], [ "97", "128", "100", "ERROR:" ], [ "97", "152", "100", "ERROR:" ], [ "97", "153", "100", "ERROR:" ], [ "97", "155", "100", "ERROR:" ], [ "97", "158", "100", "ERROR:" ], [ "98", "100,110,115,118", "100", "ERROR:" ], [ "98", "121", "100", "ERROR:" ], [ "98", "122", "100", "ERROR:" ], [ "98", "123", "100", "ERROR:" ], [ "98", "124", "100", "ERROR:" ], [ "98", "125", "100", "ERROR:" ], [ "98", "128", "100", "ERROR:" ], [ "98", "152", "100", "ERROR:" ], [ "98", "153", "100", "ERROR:" ], [ "98", "155", "100", "VALUE:N2c" ], [ "98", "158", "100", "VALUE:N2c" ], [ "99", "100,110,115,118", "100", "ERROR:" ], [ "99", "121", "100", "ERROR:" ], [ "99", "122", "100", "ERROR:" ], [ "99", "123", "100", "ERROR:" ], [ "99", "124", "100", "ERROR:" ], [ "99", "125", "100", "ERROR:" ], [ "99", "128", "100", "ERROR:" ], [ "99", "152", "100", "ERROR:" ], [ "99", "153", "100", "ERROR:" ], [ "99", "155", "100", "VALUE:N2c" ], [ "99", "158", "100", "VALUE:N2c" ], [ "00", "100,110,115,118", "150", "VALUE:N3" ], [ "00", "121", "150", "VALUE:N3" ], [ "00", "122", "150", "VALUE:N3" ], [ "00", "123", "150", "VALUE:N3" ], [ "00", "124", "150", "VALUE:N3" ], [ "00", "125", "150", "VALUE:N3" ], [ "00", "128", "150", "VALUE:N3" ], [ "00", "152", "150", "VALUE:N3" ], [ "00", "153", "150", "VALUE:N3" ], [ "00", "155", "150", "VALUE:N3" ], [ "00", "158", "150", "VALUE:N3" ], [ "01", "100,110,115,118", "150", "VALUE:N3" ], [ "01", "121", "150", "VALUE:N3" ], [ "01", "122", "150", "VALUE:N3" ], [ "01", "123", "150", "VALUE:N3" ], [ "01", "124", "150", "VALUE:N3" ], [ "01", "125", "150", "VALUE:N3" ], [ "01", "128", "150", "VALUE:N3" ], [ "01", "152", "150", "VALUE:N3" ], [ "01", "153", "150", "VALUE:N3" ], [ "01", "155", "150", "VALUE:N3" ], [ "01", "158", "150", "VALUE:N3" ], [ "02-03", "100,110,115,118", "150", "VALUE:N3" ], [ "02-03", "121", "150", "VALUE:N3" ], [ "02-03", "122", "150", "VALUE:N3" ], [ "02-03", "123", "150", "VALUE:N3" ], [ "02-03", "124", "150", "VALUE:N3" ], [ "02-03", "125", "150", "VALUE:N3" ], [ "02-03", "128", "150", "VALUE:N3" ], [ "02-03", "152", "150", "VALUE:N3" ], [ "02-03", "153", "150", "VALUE:N3" ], [ "02-03", "155", "150", "VALUE:N3" ], [ "02-03", "158", "150", "VALUE:N3" ], [ "04-90", "100,110,115,118", "150", "VALUE:N3" ], [ "04-90", "121", "150", "VALUE:N3" ], [ "04-90", "122", "150", "VALUE:N3" ], [ "04-90", "123", "150", "VALUE:N3" ], [ "04-90", "124", "150", "VALUE:N3" ], [ "04-90", "125", "150", "VALUE:N3" ], [ "04-90", "128", "150", "VALUE:N3" ], [ "04-90", "152", "150", "VALUE:N3" ], [ "04-90", "153", "150", "VALUE:N3" ], [ "04-90", "155", "150", "VALUE:N3" ], [ "04-90", "158", "150", "VALUE:N3" ], [ "95", "100,110,115,118", "150", "VALUE:N3" ], [ "95", "121", "150", "VALUE:N3" ], [ "95", "122", "150", "VALUE:N3" ], [ "95", "123", "150", "VALUE:N3" ], [ "95", "124", "150", "VALUE:N3" ], [ "95", "125", "150", "VALUE:N3" ], [ "95", "128", "150", "VALUE:N3" ], [ "95", "152", "150", "VALUE:N3" ], [ "95", "153", "150", "VALUE:N3" ], [ "95", "155", "150", "VALUE:N3" ], [ "95", "158", "150", "VALUE:N3" ], [ "97", "100,110,115,118", "150", "VALUE:N3" ], [ "97", "121", "150", "VALUE:N3" ], [ "97", "122", "150", "VALUE:N3" ], [ "97", "123", "150", "VALUE:N3" ], [ "97", "124", "150", "VALUE:N3" ], [ "97", "125", "150", "VALUE:N3" ], [ "97", "128", "150", "VALUE:N3" ], [ "97", "152", "150", "VALUE:N3" ], [ "97", "153", "150", "VALUE:N3" ], [ "97", "155", "150", "VALUE:N3" ], [ "97", "158", "150", "VALUE:N3" ], [ "98", "100,110,115,118", "150", "VALUE:N3" ], [ "98", "121", "150", "VALUE:N3" ], [ "98", "122", "150", "VALUE:N3" ], [ "98", "123", "150", "VALUE:N3" ], [ "98", "124", "150", "VALUE:N3" ], [ "98", "125", "150", "VALUE:N3" ], [ "98", "128", "150", "VALUE:N3" ], [ "98", "152", "150", "VALUE:N3" ], [ "98", "153", "150", "VALUE:N3" ], [ "98", "155", "150", "VALUE:N3" ], [ "98", "158", "150", "VALUE:N3" ], [ "99", "100,110,115,118", "150", "VALUE:N3" ], [ "99", "121", "150", "VALUE:N3" ], [ "99", "122", "150", "VALUE:N3" ], [ "99", "123", "150", "VALUE:N3" ], [ "99", "124", "150", "VALUE:N3" ], [ "99", "125", "150", "VALUE:N3" ], [ "99", "128", "150", "VALUE:N3" ], [ "99", "152", "150", "VALUE:N3" ], [ "99", "153", "150", "VALUE:N3" ], [ "99", "155", "150", "VALUE:N3" ], [ "99", "158", "150", "VALUE:N3" ], [ "00", "100,110,115,118", "988", "ERROR:" ], [ "00", "121", "988", "ERROR:" ], [ "00", "122", "988", "ERROR:" ], [ "00", "123", "988", "ERROR:" ], [ "00", "124", "988", "ERROR:" ], [ "00", "125", "988", "ERROR:" ], [ "00", "128", "988", "ERROR:" ], [ "00", "152", "988", "ERROR:" ], [ "00", "153", "988", "ERROR:" ], [ "00", "155", "988", "ERROR:" ], [ "00", "158", "988", "ERROR:" ], [ "01", "100,110,115,118", "988", "ERROR:" ], [ "01", "121", "988", "ERROR:" ], [ "01", "122", "988", "ERROR:" ], [ "01", "123", "988", "ERROR:" ], [ "01", "124", "988", "ERROR:" ], [ "01", "125", "988", "ERROR:" ], [ "01", "128", "988", "ERROR:" ], [ "01", "152", "988", "ERROR:" ], [ "01", "153", "988", "ERROR:" ], [ "01", "155", "988", "ERROR:" ], [ "01", "158", "988", "ERROR:" ], [ "02-03", "100,110,115,118", "988", "ERROR:" ], [ "02-03", "121", "988", "ERROR:" ], [ "02-03", "122", "988", "ERROR:" ], [ "02-03", "123", "988", "ERROR:" ], [ "02-03", "124", "988", "ERROR:" ], [ "02-03", "125", "988", "ERROR:" ], [ "02-03", "128", "988", "ERROR:" ], [ "02-03", "152", "988", "ERROR:" ], [ "02-03", "153", "988", "ERROR:" ], [ "02-03", "155", "988", "ERROR:" ], [ "02-03", "158", "988", "ERROR:" ], [ "04-90", "100,110,115,118", "988", "ERROR:" ], [ "04-90", "121", "988", "ERROR:" ], [ "04-90", "122", "988", "ERROR:" ], [ "04-90", "123", "988", "ERROR:" ], [ "04-90", "124", "988", "ERROR:" ], [ "04-90", "125", "988", "ERROR:" ], [ "04-90", "128", "988", "ERROR:" ], [ "04-90", "152", "988", "ERROR:" ], [ "04-90", "153", "988", "ERROR:" ], [ "04-90", "155", "988", "ERROR:" ], [ "04-90", "158", "988", "ERROR:" ], [ "95", "100,110,115,118", "988", "ERROR:" ], [ "95", "121", "988", "ERROR:" ], [ "95", "122", "988", "ERROR:" ], [ "95", "123", "988", "ERROR:" ], [ "95", "124", "988", "ERROR:" ], [ "95", "125", "988", "ERROR:" ], [ "95", "128", "988", "ERROR:" ], [ "95", "152", "988", "ERROR:" ], [ "95", "153", "988", "ERROR:" ], [ "95", "155", "988", "ERROR:" ], [ "95", "158", "988", "ERROR:" ], [ "97", "100,110,115,118", "988", "ERROR:" ], [ "97", "121", "988", "ERROR:" ], [ "97", "122", "988", "ERROR:" ], [ "97", "123", "988", "ERROR:" ], [ "97", "124", "988", "ERROR:" ], [ "97", "125", "988", "ERROR:" ], [ "97", "128", "988", "ERROR:" ], [ "97", "152", "988", "ERROR:" ], [ "97", "153", "988", "ERROR:" ], [ "97", "155", "988", "ERROR:" ], [ "97", "158", "988", "ERROR:" ], [ "98", "100,110,115,118", "988", "ERROR:" ], [ "98", "121", "988", "ERROR:" ], [ "98", "122", "988", "ERROR:" ], [ "98", "123", "988", "ERROR:" ], [ "98", "124", "988", "ERROR:" ], [ "98", "125", "988", "ERROR:" ], [ "98", "128", "988", "ERROR:" ], [ "98", "152", "988", "ERROR:" ], [ "98", "153", "988", "ERROR:" ], [ "98", "155", "988", "ERROR:" ], [ "98", "158", "988", "ERROR:" ], [ "99", "100,110,115,118", "988", "ERROR:" ], [ "99", "121", "988", "ERROR:" ], [ "99", "122", "988", "ERROR:" ], [ "99", "123", "988", "ERROR:" ], [ "99", "124", "988", "ERROR:" ], [ "99", "125", "988", "ERROR:" ], [ "99", "128", "988", "ERROR:" ], [ "99", "152", "988", "ERROR:" ], [ "99", "153", "988", "ERROR:" ], [ "99", "155", "988", "ERROR:" ], [ "99", "158", "988", "ERROR:" ], [ "00", "100,110,115,118", "999", "VALUE:N1" ], [ "00", "121", "999", "VALUE:N1" ], [ "00", "122", "999", "VALUE:N1" ], [ "00", "123", "999", "VALUE:N1" ], [ "00", "124", "999", "VALUE:N1" ], [ "00", "125", "999", "VALUE:N1" ], [ "00", "128", "999", "VALUE:N2" ], [ "00", "152", "999", "VALUE:N2" ], [ "00", "153", "999", "VALUE:N2" ], [ "00", "155", "999", "VALUE:N2" ], [ "00", "158", "999", "VALUE:N2" ], [ "01", "100,110,115,118", "999", "VALUE:N1" ], [ "01", "121", "999", "VALUE:N1" ], [ "01", "122", "999", "VALUE:N1a" ], [ "01", "123", "999", "VALUE:N1b" ], [ "01", "124", "999", "VALUE:N1NOS" ], [ "01", "125", "999", "VALUE:N1NOS" ], [ "01", "128", "999", "VALUE:N2" ], [ "01", "152", "999", "VALUE:N2a" ], [ "01", "153", "999", "VALUE:N2b" ], [ "01", "155", "999", "VALUE:N2NOS" ], [ "01", "158", "999", "VALUE:N2NOS" ], [ "02-03", "100,110,115,118", "999", "VALUE:N2" ], [ "02-03", "121", "999", "VALUE:N2" ], [ "02-03", "122", "999", "VALUE:N2a" ], [ "02-03", "123", "999", "VALUE:N2b" ], [ "02-03", "124", "999", "VALUE:N2NOS" ], [ "02-03", "125", "999", "VALUE:N2NOS" ], [ "02-03", "128", "999", "VALUE:N2" ], [ "02-03", "152", "999", "VALUE:N2a" ], [ "02-03", "153", "999", "VALUE:N2b" ], [ "02-03", "155", "999", "VALUE:N2NOS" ], [ "02-03", "158", "999", "VALUE:N2NOS" ], [ "04-90", "100,110,115,118", "999", "VALUE:N3" ], [ "04-90", "121", "999", "VALUE:N1" ], [ "04-90", "122", "999", "VALUE:N3" ], [ "04-90", "123", "999", "VALUE:N3" ], [ "04-90", "124", "999", "VALUE:N3" ], [ "04-90", "125", "999", "VALUE:N3" ], [ "04-90", "128", "999", "VALUE:N2" ], [ "04-90", "152", "999", "VALUE:N3" ], [ "04-90", "153", "999", "VALUE:N3" ], [ "04-90", "155", "999", "VALUE:N3" ], [ "04-90", "158", "999", "VALUE:N3" ], [ "95", "100,110,115,118", "999", "VALUE:N1" ], [ "95", "121", "999", "VALUE:N1" ], [ "95", "122", "999", "VALUE:N1a" ], [ "95", "123", "999", "VALUE:N1b" ], [ "95", "124", "999", "VALUE:N1NOS" ], [ "95", "125", "999", "VALUE:N1" ], [ "95", "128", "999", "VALUE:N2" ], [ "95", "152", "999", "VALUE:N2a" ], [ "95", "153", "999", "VALUE:N2b" ], [ "95", "155", "999", "VALUE:N2" ], [ "95", "158", "999", "VALUE:N2NOS" ], [ "97", "100,110,115,118", "999", "VALUE:N1" ], [ "97", "121", "999", "VALUE:N1" ], [ "97", "122", "999", "VALUE:N1a" ], [ "97", "123", "999", "VALUE:N1b" ], [ "97", "124", "999", "VALUE:N1NOS" ], [ "97", "125", "999", "VALUE:N1NOS" ], [ "97", "128", "999", "VALUE:N2" ], [ "97", "152", "999", "VALUE:N2a" ], [ "97", "153", "999", "VALUE:N2b" ], [ "97", "155", "999", "VALUE:N2NOS" ], [ "97", "158", "999", "VALUE:N2NOS" ], [ "98", "100,110,115,118", "999", "VALUE:N1" ], [ "98", "121", "999", "VALUE:N1" ], [ "98", "122", "999", "VALUE:N1" ], [ "98", "123", "999", "VALUE:N1" ], [ "98", "124", "999", "VALUE:N1" ], [ "98", "125", "999", "VALUE:N1" ], [ "98", "128", "999", "VALUE:N2" ], [ "98", "152", "999", "VALUE:N2" ], [ "98", "153", "999", "VALUE:N2" ], [ "98", "155", "999", "VALUE:N2" ], [ "98", "158", "999", "VALUE:N2" ], [ "99", "100,110,115,118", "999", "VALUE:N1" ], [ "99", "121", "999", "VALUE:N1" ], [ "99", "122", "999", "VALUE:N1a" ], [ "99", "123", "999", "VALUE:N1b" ], [ "99", "124", "999", "VALUE:N1NOS" ], [ "99", "125", "999", "VALUE:N1NOS" ], [ "99", "128", "999", "VALUE:N2" ], [ "99", "152", "999", "VALUE:N2a" ], [ "99", "153", "999", "VALUE:N2b" ], [ "99", "155", "999", "VALUE:N2NOS" ], [ "99", "158", "999", "VALUE:N2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlj.json
deleted file mode 100644
index f45aa0567..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlj.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval Blank AJCC7",
- "title" : "Lymph Node and Nodal Status Eval Blank AJCC 7 Table",
- "notes" : "**Note**: When no CS Lymph Nodes Eval code is recorded, for CS Lymph Nodes codes 100-118, 121-128, 152, 153, 155, and 158 ONLY, the N category for AJCC 7 staging is assigned based on the value of Regional Nodes Positive, CS Lymph Nodes, and CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.389Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "010", "000-002,005", "ERROR:" ], [ "00", "100,110,115,118", "000-002,005", "ERROR:" ], [ "00", "121", "000-002,005", "ERROR:" ], [ "00", "122", "000-002,005", "ERROR:" ], [ "00", "123", "000-002,005", "ERROR:" ], [ "00", "124", "000-002,005", "ERROR:" ], [ "00", "125", "000-002,005", "ERROR:" ], [ "00", "128", "000-002,005", "ERROR:" ], [ "00", "152", "000-002,005", "ERROR:" ], [ "00", "153", "000-002,005", "ERROR:" ], [ "00", "155", "000-002,005", "ERROR:" ], [ "00", "158", "000-002,005", "ERROR:" ], [ "01", "010", "000-002,005", "ERROR:" ], [ "01", "100,110,115,118", "000-002,005", "ERROR:" ], [ "01", "121", "000-002,005", "ERROR:" ], [ "01", "122", "000-002,005", "ERROR:" ], [ "01", "123", "000-002,005", "ERROR:" ], [ "01", "124", "000-002,005", "ERROR:" ], [ "01", "125", "000-002,005", "ERROR:" ], [ "01", "128", "000-002,005", "ERROR:" ], [ "01", "152", "000-002,005", "ERROR:" ], [ "01", "153", "000-002,005", "ERROR:" ], [ "01", "155", "000-002,005", "ERROR:" ], [ "01", "158", "000-002,005", "ERROR:" ], [ "02-03", "010", "000-002,005", "ERROR:" ], [ "02-03", "100,110,115,118", "000-002,005", "ERROR:" ], [ "02-03", "121", "000-002,005", "ERROR:" ], [ "02-03", "122", "000-002,005", "ERROR:" ], [ "02-03", "123", "000-002,005", "ERROR:" ], [ "02-03", "124", "000-002,005", "ERROR:" ], [ "02-03", "125", "000-002,005", "ERROR:" ], [ "02-03", "128", "000-002,005", "ERROR:" ], [ "02-03", "152", "000-002,005", "ERROR:" ], [ "02-03", "153", "000-002,005", "ERROR:" ], [ "02-03", "155", "000-002,005", "ERROR:" ], [ "02-03", "158", "000-002,005", "ERROR:" ], [ "04-90", "010", "000-002,005", "ERROR:" ], [ "04-90", "100,110,115,118", "000-002,005", "ERROR:" ], [ "04-90", "121", "000-002,005", "ERROR:" ], [ "04-90", "122", "000-002,005", "ERROR:" ], [ "04-90", "123", "000-002,005", "ERROR:" ], [ "04-90", "124", "000-002,005", "ERROR:" ], [ "04-90", "125", "000-002,005", "ERROR:" ], [ "04-90", "128", "000-002,005", "ERROR:" ], [ "04-90", "152", "000-002,005", "ERROR:" ], [ "04-90", "153", "000-002,005", "ERROR:" ], [ "04-90", "155", "000-002,005", "ERROR:" ], [ "04-90", "158", "000-002,005", "ERROR:" ], [ "95", "010", "000-002,005", "ERROR:" ], [ "95", "100,110,115,118", "000-002,005", "ERROR:" ], [ "95", "121", "000-002,005", "ERROR:" ], [ "95", "122", "000-002,005", "ERROR:" ], [ "95", "123", "000-002,005", "ERROR:" ], [ "95", "124", "000-002,005", "ERROR:" ], [ "95", "125", "000-002,005", "ERROR:" ], [ "95", "128", "000-002,005", "ERROR:" ], [ "95", "152", "000-002,005", "ERROR:" ], [ "95", "153", "000-002,005", "ERROR:" ], [ "95", "155", "000-002,005", "ERROR:" ], [ "95", "158", "000-002,005", "ERROR:" ], [ "97", "010", "000-002,005", "ERROR:" ], [ "97", "100,110,115,118", "000-002,005", "ERROR:" ], [ "97", "121", "000-002,005", "ERROR:" ], [ "97", "122", "000-002,005", "ERROR:" ], [ "97", "123", "000-002,005", "ERROR:" ], [ "97", "124", "000-002,005", "ERROR:" ], [ "97", "125", "000-002,005", "ERROR:" ], [ "97", "128", "000-002,005", "ERROR:" ], [ "97", "152", "000-002,005", "ERROR:" ], [ "97", "153", "000-002,005", "ERROR:" ], [ "97", "155", "000-002,005", "ERROR:" ], [ "97", "158", "000-002,005", "ERROR:" ], [ "98", "010", "000-002,005", "ERROR:" ], [ "98", "100,110,115,118", "000-002,005", "ERROR:" ], [ "98", "121", "000-002,005", "ERROR:" ], [ "98", "122", "000-002,005", "ERROR:" ], [ "98", "123", "000-002,005", "ERROR:" ], [ "98", "124", "000-002,005", "ERROR:" ], [ "98", "125", "000-002,005", "ERROR:" ], [ "98", "128", "000-002,005", "ERROR:" ], [ "98", "152", "000-002,005", "ERROR:" ], [ "98", "153", "000-002,005", "ERROR:" ], [ "98", "155", "000-002,005", "ERROR:" ], [ "98", "158", "000-002,005", "ERROR:" ], [ "99", "010", "000-002,005", "ERROR:" ], [ "99", "100,110,115,118", "000-002,005", "ERROR:" ], [ "99", "121", "000-002,005", "ERROR:" ], [ "99", "122", "000-002,005", "ERROR:" ], [ "99", "123", "000-002,005", "ERROR:" ], [ "99", "124", "000-002,005", "ERROR:" ], [ "99", "125", "000-002,005", "ERROR:" ], [ "99", "128", "000-002,005", "ERROR:" ], [ "99", "152", "000-002,005", "ERROR:" ], [ "99", "153", "000-002,005", "ERROR:" ], [ "99", "155", "000-002,005", "ERROR:" ], [ "99", "158", "000-002,005", "ERROR:" ], [ "00", "010", "010", "VALUE:N1a" ], [ "00", "100,110,115,118", "010", "ERROR:" ], [ "00", "121", "010", "ERROR:" ], [ "00", "122", "010", "ERROR:" ], [ "00", "123", "010", "ERROR:" ], [ "00", "124", "010", "ERROR:" ], [ "00", "125", "010", "ERROR:" ], [ "00", "128", "010", "ERROR:" ], [ "00", "152", "010", "ERROR:" ], [ "00", "153", "010", "ERROR:" ], [ "00", "155", "010", "ERROR:" ], [ "00", "158", "010", "ERROR:" ], [ "01", "010", "010", "VALUE:N1a" ], [ "01", "100,110,115,118", "010", "VALUE:N1a" ], [ "01", "121", "010", "VALUE:N1" ], [ "01", "122", "010", "VALUE:N1a" ], [ "01", "123", "010", "VALUE:N1a" ], [ "01", "124", "010", "VALUE:N1a" ], [ "01", "125", "010", "VALUE:N1a" ], [ "01", "128", "010", "VALUE:N1" ], [ "01", "152", "010", "VALUE:N1a" ], [ "01", "153", "010", "VALUE:N1a" ], [ "01", "155", "010", "VALUE:N1a" ], [ "01", "158", "010", "VALUE:N1a" ], [ "02-03", "010", "010", "VALUE:N2a" ], [ "02-03", "100,110,115,118", "010", "VALUE:N2a" ], [ "02-03", "121", "010", "VALUE:N2" ], [ "02-03", "122", "010", "VALUE:N2a" ], [ "02-03", "123", "010", "VALUE:N2a" ], [ "02-03", "124", "010", "VALUE:N2a" ], [ "02-03", "125", "010", "VALUE:N2a" ], [ "02-03", "128", "010", "VALUE:N2" ], [ "02-03", "152", "010", "VALUE:N2a" ], [ "02-03", "153", "010", "VALUE:N2a" ], [ "02-03", "155", "010", "VALUE:N2a" ], [ "02-03", "158", "010", "VALUE:N2a" ], [ "04-90", "010", "010", "VALUE:N3" ], [ "04-90", "100,110,115,118", "010", "VALUE:N3" ], [ "04-90", "121", "010", "VALUE:N1" ], [ "04-90", "122", "010", "VALUE:N3" ], [ "04-90", "123", "010", "VALUE:N3" ], [ "04-90", "124", "010", "VALUE:N3" ], [ "04-90", "125", "010", "VALUE:N3" ], [ "04-90", "128", "010", "VALUE:N2" ], [ "04-90", "152", "010", "VALUE:N3" ], [ "04-90", "153", "010", "VALUE:N3" ], [ "04-90", "155", "010", "VALUE:N3" ], [ "04-90", "158", "010", "VALUE:N3" ], [ "95", "010", "010", "VALUE:N1a" ], [ "95", "100,110,115,118", "010", "VALUE:N1a" ], [ "95", "121", "010", "VALUE:N1" ], [ "95", "122", "010", "VALUE:N1a" ], [ "95", "123", "010", "VALUE:N1b" ], [ "95", "124", "010", "VALUE:N1NOS" ], [ "95", "125", "010", "VALUE:N1" ], [ "95", "128", "010", "VALUE:N2" ], [ "95", "152", "010", "VALUE:N2a" ], [ "95", "153", "010", "VALUE:N2b" ], [ "95", "155", "010", "VALUE:N2" ], [ "95", "158", "010", "VALUE:N2a" ], [ "97", "010", "010", "VALUE:N1a" ], [ "97", "100,110,115,118", "010", "VALUE:N1a" ], [ "97", "121", "010", "VALUE:N1" ], [ "97", "122", "010", "VALUE:N1a" ], [ "97", "123", "010", "VALUE:N1a" ], [ "97", "124", "010", "VALUE:N1a" ], [ "97", "125", "010", "VALUE:N1a" ], [ "97", "128", "010", "VALUE:N2" ], [ "97", "152", "010", "VALUE:N2a" ], [ "97", "153", "010", "VALUE:N2a" ], [ "97", "155", "010", "VALUE:N2a" ], [ "97", "158", "010", "VALUE:N2a" ], [ "98", "010", "010", "VALUE:N1a" ], [ "98", "100,110,115,118", "010", "ERROR:" ], [ "98", "121", "010", "ERROR:" ], [ "98", "122", "010", "ERROR:" ], [ "98", "123", "010", "ERROR:" ], [ "98", "124", "010", "ERROR:" ], [ "98", "125", "010", "ERROR:" ], [ "98", "128", "010", "ERROR:" ], [ "98", "152", "010", "ERROR:" ], [ "98", "153", "010", "ERROR:" ], [ "98", "155", "010", "ERROR:" ], [ "98", "158", "010", "ERROR:" ], [ "99", "010", "010", "VALUE:N1" ], [ "99", "100,110,115,118", "010", "VALUE:N1" ], [ "99", "121", "010", "VALUE:N1" ], [ "99", "122", "010", "VALUE:N1" ], [ "99", "123", "010", "VALUE:N1" ], [ "99", "124", "010", "VALUE:N1" ], [ "99", "125", "010", "VALUE:N1" ], [ "99", "128", "010", "VALUE:N2" ], [ "99", "152", "010", "VALUE:N2" ], [ "99", "153", "010", "VALUE:N2" ], [ "99", "155", "010", "VALUE:N2" ], [ "99", "158", "010", "VALUE:N2" ], [ "00", "010", "020", "VALUE:N1" ], [ "00", "100,110,115,118", "020", "VALUE:N1" ], [ "00", "121", "020", "VALUE:N1" ], [ "00", "122", "020", "VALUE:N1" ], [ "00", "123", "020", "VALUE:N1" ], [ "00", "124", "020", "VALUE:N1" ], [ "00", "125", "020", "VALUE:N1" ], [ "00", "128", "020", "VALUE:N2" ], [ "00", "152", "020", "VALUE:N2" ], [ "00", "153", "020", "VALUE:N2" ], [ "00", "155", "020", "VALUE:N2" ], [ "00", "158", "020", "VALUE:N2" ], [ "01", "010", "020", "VALUE:N1b" ], [ "01", "100,110,115,118", "020", "VALUE:N1b" ], [ "01", "121", "020", "VALUE:N1" ], [ "01", "122", "020", "VALUE:N1b" ], [ "01", "123", "020", "VALUE:N1b" ], [ "01", "124", "020", "VALUE:N1b" ], [ "01", "125", "020", "VALUE:N1b" ], [ "01", "128", "020", "VALUE:N1" ], [ "01", "152", "020", "VALUE:N1b" ], [ "01", "153", "020", "VALUE:N1b" ], [ "01", "155", "020", "VALUE:N1b" ], [ "01", "158", "020", "VALUE:N1b" ], [ "02-03", "010", "020", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "020", "VALUE:N2b" ], [ "02-03", "121", "020", "VALUE:N2" ], [ "02-03", "122", "020", "VALUE:N2b" ], [ "02-03", "123", "020", "VALUE:N2b" ], [ "02-03", "124", "020", "VALUE:N2b" ], [ "02-03", "125", "020", "VALUE:N2b" ], [ "02-03", "128", "020", "VALUE:N2" ], [ "02-03", "152", "020", "VALUE:N2b" ], [ "02-03", "153", "020", "VALUE:N2b" ], [ "02-03", "155", "020", "VALUE:N2b" ], [ "02-03", "158", "020", "VALUE:N2b" ], [ "04-90", "010", "020", "VALUE:N3" ], [ "04-90", "100,110,115,118", "020", "VALUE:N3" ], [ "04-90", "121", "020", "VALUE:N1" ], [ "04-90", "122", "020", "VALUE:N3" ], [ "04-90", "123", "020", "VALUE:N3" ], [ "04-90", "124", "020", "VALUE:N3" ], [ "04-90", "125", "020", "VALUE:N3" ], [ "04-90", "128", "020", "VALUE:N2" ], [ "04-90", "152", "020", "VALUE:N3" ], [ "04-90", "153", "020", "VALUE:N3" ], [ "04-90", "155", "020", "VALUE:N3" ], [ "04-90", "158", "020", "VALUE:N3" ], [ "95", "010", "020", "VALUE:N1b" ], [ "95", "100,110,115,118", "020", "VALUE:N1b" ], [ "95", "121", "020", "VALUE:N1" ], [ "95", "122", "020", "VALUE:N1b" ], [ "95", "123", "020", "VALUE:N1b" ], [ "95", "124", "020", "VALUE:N1b" ], [ "95", "125", "020", "VALUE:N1" ], [ "95", "128", "020", "VALUE:N2" ], [ "95", "152", "020", "VALUE:N2b" ], [ "95", "153", "020", "VALUE:N2b" ], [ "95", "155", "020", "VALUE:N2" ], [ "95", "158", "020", "VALUE:N2b" ], [ "97", "010", "020", "VALUE:N1b" ], [ "97", "100,110,115,118", "020", "VALUE:N1b" ], [ "97", "121", "020", "VALUE:N1" ], [ "97", "122", "020", "VALUE:N1b" ], [ "97", "123", "020", "VALUE:N1b" ], [ "97", "124", "020", "VALUE:N1b" ], [ "97", "125", "020", "VALUE:N1b" ], [ "97", "128", "020", "VALUE:N2" ], [ "97", "152", "020", "VALUE:N2b" ], [ "97", "153", "020", "VALUE:N2b" ], [ "97", "155", "020", "VALUE:N2b" ], [ "97", "158", "020", "VALUE:N2b" ], [ "98", "010", "020", "VALUE:N1" ], [ "98", "100,110,115,118", "020", "VALUE:N1" ], [ "98", "121", "020", "VALUE:N1" ], [ "98", "122", "020", "VALUE:N1" ], [ "98", "123", "020", "VALUE:N1" ], [ "98", "124", "020", "VALUE:N1" ], [ "98", "125", "020", "VALUE:N1" ], [ "98", "128", "020", "VALUE:N2" ], [ "98", "152", "020", "VALUE:N2" ], [ "98", "153", "020", "VALUE:N2" ], [ "98", "155", "020", "VALUE:N2" ], [ "98", "158", "020", "VALUE:N2" ], [ "99", "010", "020", "VALUE:N1" ], [ "99", "100,110,115,118", "020", "VALUE:N1" ], [ "99", "121", "020", "VALUE:N1" ], [ "99", "122", "020", "VALUE:N1" ], [ "99", "123", "020", "VALUE:N1" ], [ "99", "124", "020", "VALUE:N1" ], [ "99", "125", "020", "VALUE:N1" ], [ "99", "128", "020", "VALUE:N2" ], [ "99", "152", "020", "VALUE:N2" ], [ "99", "153", "020", "VALUE:N2" ], [ "99", "155", "020", "VALUE:N2" ], [ "99", "158", "020", "VALUE:N2" ], [ "00", "010", "043", "VALUE:N1" ], [ "00", "100,110,115,118", "043", "VALUE:N1" ], [ "00", "121", "043", "VALUE:N1" ], [ "00", "122", "043", "VALUE:N1" ], [ "00", "123", "043", "VALUE:N1" ], [ "00", "124", "043", "VALUE:N1" ], [ "00", "125", "043", "VALUE:N1" ], [ "00", "128", "043", "VALUE:N1" ], [ "00", "152", "043", "VALUE:N1" ], [ "00", "153", "043", "VALUE:N1" ], [ "00", "155", "043", "VALUE:N1" ], [ "00", "158", "043", "VALUE:N2" ], [ "01", "010", "043", "VALUE:N1a" ], [ "01", "100,110,115,118", "043", "VALUE:N1" ], [ "01", "121", "043", "VALUE:N1" ], [ "01", "122", "043", "VALUE:N1b" ], [ "01", "123", "043", "VALUE:N1b" ], [ "01", "124", "043", "VALUE:N1b" ], [ "01", "125", "043", "VALUE:N1b" ], [ "01", "128", "043", "VALUE:N1" ], [ "01", "152", "043", "VALUE:N1b" ], [ "01", "153", "043", "VALUE:N1b" ], [ "01", "155", "043", "VALUE:N1b" ], [ "01", "158", "043", "VALUE:N1b" ], [ "02-03", "010", "043", "VALUE:N2a" ], [ "02-03", "100,110,115,118", "043", "VALUE:N2" ], [ "02-03", "121", "043", "VALUE:N2" ], [ "02-03", "122", "043", "VALUE:N2b" ], [ "02-03", "123", "043", "VALUE:N2b" ], [ "02-03", "124", "043", "VALUE:N1b" ], [ "02-03", "125", "043", "VALUE:N2b" ], [ "02-03", "128", "043", "VALUE:N1" ], [ "02-03", "152", "043", "VALUE:N2b" ], [ "02-03", "153", "043", "VALUE:N2b" ], [ "02-03", "155", "043", "VALUE:N2b" ], [ "02-03", "158", "043", "VALUE:N2b" ], [ "04-90", "010", "043", "VALUE:N3" ], [ "04-90", "100,110,115,118", "043", "VALUE:N3" ], [ "04-90", "121", "043", "VALUE:N1" ], [ "04-90", "122", "043", "VALUE:N3" ], [ "04-90", "123", "043", "VALUE:N3" ], [ "04-90", "124", "043", "VALUE:N3" ], [ "04-90", "125", "043", "VALUE:N3" ], [ "04-90", "128", "043", "VALUE:N1" ], [ "04-90", "152", "043", "VALUE:N3" ], [ "04-90", "153", "043", "VALUE:N3" ], [ "04-90", "155", "043", "VALUE:N3" ], [ "04-90", "158", "043", "VALUE:N3" ], [ "95", "010", "043", "VALUE:N1" ], [ "95", "100,110,115,118", "043", "VALUE:N1" ], [ "95", "121", "043", "VALUE:N1" ], [ "95", "122", "043", "VALUE:N1b" ], [ "95", "123", "043", "VALUE:N1b" ], [ "95", "124", "043", "VALUE:N1b" ], [ "95", "125", "043", "VALUE:N1" ], [ "95", "128", "043", "VALUE:N1" ], [ "95", "152", "043", "VALUE:N2b" ], [ "95", "153", "043", "VALUE:N2b" ], [ "95", "155", "043", "VALUE:N1" ], [ "95", "158", "043", "VALUE:N2b" ], [ "97", "010", "043", "VALUE:N1b" ], [ "97", "100,110,115,118", "043", "VALUE:N1b" ], [ "97", "121", "043", "VALUE:N1" ], [ "97", "122", "043", "VALUE:N1b" ], [ "97", "123", "043", "VALUE:N1b" ], [ "97", "124", "043", "VALUE:N1b" ], [ "97", "125", "043", "VALUE:N1b" ], [ "97", "128", "043", "VALUE:N1" ], [ "97", "152", "043", "VALUE:N2b" ], [ "97", "153", "043", "VALUE:N2b" ], [ "97", "155", "043", "VALUE:N2b" ], [ "97", "158", "043", "VALUE:N2b" ], [ "98", "010", "043", "VALUE:N1" ], [ "98", "100,110,115,118", "043", "VALUE:N1" ], [ "98", "121", "043", "VALUE:N1" ], [ "98", "122", "043", "VALUE:N1" ], [ "98", "123", "043", "VALUE:N1" ], [ "98", "124", "043", "VALUE:N1" ], [ "98", "125", "043", "VALUE:N1" ], [ "98", "128", "043", "VALUE:N1" ], [ "98", "152", "043", "VALUE:N1" ], [ "98", "153", "043", "VALUE:N1" ], [ "98", "155", "043", "VALUE:N1" ], [ "98", "158", "043", "VALUE:N2" ], [ "99", "010", "043", "VALUE:N1" ], [ "99", "100,110,115,118", "043", "VALUE:N1" ], [ "99", "121", "043", "VALUE:N1" ], [ "99", "122", "043", "VALUE:N1" ], [ "99", "123", "043", "VALUE:N1" ], [ "99", "124", "043", "VALUE:N1" ], [ "99", "125", "043", "VALUE:N1" ], [ "99", "128", "043", "VALUE:N1" ], [ "99", "152", "043", "VALUE:N1" ], [ "99", "153", "043", "VALUE:N1" ], [ "99", "155", "043", "VALUE:N1" ], [ "99", "158", "043", "VALUE:N2" ], [ "00", "010", "045", "VALUE:N2" ], [ "00", "100,110,115,118", "045", "VALUE:N2" ], [ "00", "121", "045", "VALUE:N2" ], [ "00", "122", "045", "VALUE:N2" ], [ "00", "123", "045", "VALUE:N2" ], [ "00", "124", "045", "VALUE:N2" ], [ "00", "125", "045", "VALUE:N2" ], [ "00", "128", "045", "VALUE:N2" ], [ "00", "152", "045", "VALUE:N2" ], [ "00", "153", "045", "VALUE:N2" ], [ "00", "155", "045", "VALUE:N2" ], [ "00", "158", "045", "VALUE:N2" ], [ "01", "010", "045", "VALUE:N2a" ], [ "01", "100,110,115,118", "045", "VALUE:N2" ], [ "01", "121", "045", "VALUE:N2" ], [ "01", "122", "045", "VALUE:N1b" ], [ "01", "123", "045", "VALUE:N1b" ], [ "01", "124", "045", "VALUE:N1b" ], [ "01", "125", "045", "VALUE:N1b" ], [ "01", "128", "045", "VALUE:N2" ], [ "01", "152", "045", "VALUE:N1b" ], [ "01", "153", "045", "VALUE:N1b" ], [ "01", "155", "045", "VALUE:N1b" ], [ "01", "158", "045", "VALUE:N1b" ], [ "02-03", "010", "045", "VALUE:N2a" ], [ "02-03", "100,110,115,118", "045", "VALUE:N2" ], [ "02-03", "121", "045", "VALUE:N2" ], [ "02-03", "122", "045", "VALUE:N2b" ], [ "02-03", "123", "045", "VALUE:N2b" ], [ "02-03", "124", "045", "VALUE:N1b" ], [ "02-03", "125", "045", "VALUE:N2b" ], [ "02-03", "128", "045", "VALUE:N2" ], [ "02-03", "152", "045", "VALUE:N2b" ], [ "02-03", "153", "045", "VALUE:N2b" ], [ "02-03", "155", "045", "VALUE:N2b" ], [ "02-03", "158", "045", "VALUE:N2b" ], [ "04-90", "010", "045", "VALUE:N3" ], [ "04-90", "100,110,115,118", "045", "VALUE:N3" ], [ "04-90", "121", "045", "VALUE:N2" ], [ "04-90", "122", "045", "VALUE:N3" ], [ "04-90", "123", "045", "VALUE:N3" ], [ "04-90", "124", "045", "VALUE:N3" ], [ "04-90", "125", "045", "VALUE:N3" ], [ "04-90", "128", "045", "VALUE:N2" ], [ "04-90", "152", "045", "VALUE:N3" ], [ "04-90", "153", "045", "VALUE:N3" ], [ "04-90", "155", "045", "VALUE:N3" ], [ "04-90", "158", "045", "VALUE:N3" ], [ "95", "010", "045", "VALUE:N2" ], [ "95", "100,110,115,118", "045", "VALUE:N2" ], [ "95", "121", "045", "VALUE:N2" ], [ "95", "122", "045", "VALUE:N1b" ], [ "95", "123", "045", "VALUE:N1b" ], [ "95", "124", "045", "VALUE:N1b" ], [ "95", "125", "045", "VALUE:N2" ], [ "95", "128", "045", "VALUE:N2" ], [ "95", "152", "045", "VALUE:N2b" ], [ "95", "153", "045", "VALUE:N2b" ], [ "95", "155", "045", "VALUE:N2" ], [ "95", "158", "045", "VALUE:N2b" ], [ "97", "010", "045", "VALUE:N2b" ], [ "97", "100,110,115,118", "045", "VALUE:N2" ], [ "97", "121", "045", "VALUE:N2" ], [ "97", "122", "045", "VALUE:N1b" ], [ "97", "123", "045", "VALUE:N1b" ], [ "97", "124", "045", "VALUE:N1b" ], [ "97", "125", "045", "VALUE:N1b" ], [ "97", "128", "045", "VALUE:N2" ], [ "97", "152", "045", "VALUE:N2b" ], [ "97", "153", "045", "VALUE:N2b" ], [ "97", "155", "045", "VALUE:N2b" ], [ "97", "158", "045", "VALUE:N2b" ], [ "98", "010", "045", "VALUE:N2" ], [ "98", "100,110,115,118", "045", "VALUE:N2" ], [ "98", "121", "045", "VALUE:N2" ], [ "98", "122", "045", "VALUE:N2" ], [ "98", "123", "045", "VALUE:N2" ], [ "98", "124", "045", "VALUE:N2" ], [ "98", "125", "045", "VALUE:N2" ], [ "98", "128", "045", "VALUE:N2" ], [ "98", "152", "045", "VALUE:N2" ], [ "98", "153", "045", "VALUE:N2" ], [ "98", "155", "045", "VALUE:N2" ], [ "98", "158", "045", "VALUE:N2" ], [ "99", "010", "045", "VALUE:N2" ], [ "99", "100,110,115,118", "045", "VALUE:N2" ], [ "99", "121", "045", "VALUE:N2" ], [ "99", "122", "045", "VALUE:N2" ], [ "99", "123", "045", "VALUE:N2" ], [ "99", "124", "045", "VALUE:N2" ], [ "99", "125", "045", "VALUE:N2" ], [ "99", "128", "045", "VALUE:N2" ], [ "99", "152", "045", "VALUE:N2" ], [ "99", "153", "045", "VALUE:N2" ], [ "99", "155", "045", "VALUE:N2" ], [ "99", "158", "045", "VALUE:N2" ], [ "00", "010", "048", "VALUE:N3" ], [ "00", "100,110,115,118", "048", "VALUE:N3" ], [ "00", "121", "048", "VALUE:N3" ], [ "00", "122", "048", "VALUE:N3" ], [ "00", "123", "048", "VALUE:N3" ], [ "00", "124", "048", "VALUE:N3" ], [ "00", "125", "048", "VALUE:N3" ], [ "00", "128", "048", "VALUE:N3" ], [ "00", "152", "048", "VALUE:N3" ], [ "00", "153", "048", "VALUE:N3" ], [ "00", "155", "048", "VALUE:N3" ], [ "00", "158", "048", "VALUE:N2" ], [ "01", "010", "048", "VALUE:N3" ], [ "01", "100,110,115,118", "048", "VALUE:N3" ], [ "01", "121", "048", "VALUE:N3" ], [ "01", "122", "048", "VALUE:N1b" ], [ "01", "123", "048", "VALUE:N1b" ], [ "01", "124", "048", "VALUE:N1b" ], [ "01", "125", "048", "VALUE:N1b" ], [ "01", "128", "048", "VALUE:N3" ], [ "01", "152", "048", "VALUE:N1b" ], [ "01", "153", "048", "VALUE:N1b" ], [ "01", "155", "048", "VALUE:N1b" ], [ "01", "158", "048", "VALUE:N1b" ], [ "02-03", "010", "048", "VALUE:N3" ], [ "02-03", "100,110,115,118", "048", "VALUE:N3" ], [ "02-03", "121", "048", "VALUE:N3" ], [ "02-03", "122", "048", "VALUE:N2b" ], [ "02-03", "123", "048", "VALUE:N2b" ], [ "02-03", "124", "048", "VALUE:N1b" ], [ "02-03", "125", "048", "VALUE:N2b" ], [ "02-03", "128", "048", "VALUE:N3" ], [ "02-03", "152", "048", "VALUE:N2b" ], [ "02-03", "153", "048", "VALUE:N2b" ], [ "02-03", "155", "048", "VALUE:N2b" ], [ "02-03", "158", "048", "VALUE:N2b" ], [ "04-90", "010", "048", "VALUE:N3" ], [ "04-90", "100,110,115,118", "048", "VALUE:N3" ], [ "04-90", "121", "048", "VALUE:N3" ], [ "04-90", "122", "048", "VALUE:N3" ], [ "04-90", "123", "048", "VALUE:N3" ], [ "04-90", "124", "048", "VALUE:N3" ], [ "04-90", "125", "048", "VALUE:N3" ], [ "04-90", "128", "048", "VALUE:N3" ], [ "04-90", "152", "048", "VALUE:N3" ], [ "04-90", "153", "048", "VALUE:N3" ], [ "04-90", "155", "048", "VALUE:N3" ], [ "04-90", "158", "048", "VALUE:N3" ], [ "95", "010", "048", "VALUE:N3" ], [ "95", "100,110,115,118", "048", "VALUE:N3" ], [ "95", "121", "048", "VALUE:N3" ], [ "95", "122", "048", "VALUE:N1b" ], [ "95", "123", "048", "VALUE:N1b" ], [ "95", "124", "048", "VALUE:N1b" ], [ "95", "125", "048", "VALUE:N3" ], [ "95", "128", "048", "VALUE:N3" ], [ "95", "152", "048", "VALUE:N2b" ], [ "95", "153", "048", "VALUE:N2b" ], [ "95", "155", "048", "VALUE:N3" ], [ "95", "158", "048", "VALUE:N2b" ], [ "97", "010", "048", "VALUE:N3" ], [ "97", "100,110,115,118", "048", "VALUE:N3" ], [ "97", "121", "048", "VALUE:N3" ], [ "97", "122", "048", "VALUE:N1b" ], [ "97", "123", "048", "VALUE:N1b" ], [ "97", "124", "048", "VALUE:N1b" ], [ "97", "125", "048", "VALUE:N1b" ], [ "97", "128", "048", "VALUE:N3" ], [ "97", "152", "048", "VALUE:N2b" ], [ "97", "153", "048", "VALUE:N2b" ], [ "97", "155", "048", "VALUE:N2b" ], [ "97", "158", "048", "VALUE:N2b" ], [ "98", "010", "048", "VALUE:N3" ], [ "98", "100,110,115,118", "048", "VALUE:N3" ], [ "98", "121", "048", "VALUE:N3" ], [ "98", "122", "048", "VALUE:N3" ], [ "98", "123", "048", "VALUE:N3" ], [ "98", "124", "048", "VALUE:N3" ], [ "98", "125", "048", "VALUE:N3" ], [ "98", "128", "048", "VALUE:N3" ], [ "98", "152", "048", "VALUE:N3" ], [ "98", "153", "048", "VALUE:N3" ], [ "98", "155", "048", "VALUE:N3" ], [ "98", "158", "048", "VALUE:N2" ], [ "99", "010", "048", "VALUE:N3" ], [ "99", "100,110,115,118", "048", "VALUE:N3" ], [ "99", "121", "048", "VALUE:N3" ], [ "99", "122", "048", "VALUE:N3" ], [ "99", "123", "048", "VALUE:N3" ], [ "99", "124", "048", "VALUE:N3" ], [ "99", "125", "048", "VALUE:N3" ], [ "99", "128", "048", "VALUE:N3" ], [ "99", "152", "048", "VALUE:N3" ], [ "99", "153", "048", "VALUE:N3" ], [ "99", "155", "048", "VALUE:N3" ], [ "99", "158", "048", "VALUE:N2" ], [ "00", "010", "050", "VALUE:N1" ], [ "00", "100,110,115,118", "050", "VALUE:N1" ], [ "00", "121", "050", "VALUE:N1" ], [ "00", "122", "050", "VALUE:N1" ], [ "00", "123", "050", "VALUE:N1" ], [ "00", "124", "050", "VALUE:N1" ], [ "00", "125", "050", "VALUE:N1" ], [ "00", "128", "050", "VALUE:N2" ], [ "00", "152", "050", "VALUE:N2" ], [ "00", "153", "050", "VALUE:N2" ], [ "00", "155", "050", "VALUE:N2" ], [ "00", "158", "050", "VALUE:N2" ], [ "01", "010", "050", "VALUE:N1a" ], [ "01", "100,110,115,118", "050", "VALUE:N1" ], [ "01", "121", "050", "VALUE:N1" ], [ "01", "122", "050", "VALUE:N1b" ], [ "01", "123", "050", "VALUE:N1b" ], [ "01", "124", "050", "VALUE:N1b" ], [ "01", "125", "050", "VALUE:N1NOS" ], [ "01", "128", "050", "VALUE:N2" ], [ "01", "152", "050", "VALUE:N2b" ], [ "01", "153", "050", "VALUE:N2b" ], [ "01", "155", "050", "VALUE:N2b" ], [ "01", "158", "050", "VALUE:N2b" ], [ "02-03", "010", "050", "VALUE:N2a" ], [ "02-03", "100,110,115,118", "050", "VALUE:N1" ], [ "02-03", "121", "050", "VALUE:N1" ], [ "02-03", "122", "050", "VALUE:N2b" ], [ "02-03", "123", "050", "VALUE:N2b" ], [ "02-03", "124", "050", "VALUE:N2b" ], [ "02-03", "125", "050", "VALUE:N2b" ], [ "02-03", "128", "050", "VALUE:N2" ], [ "02-03", "152", "050", "VALUE:N2b" ], [ "02-03", "153", "050", "VALUE:N2b" ], [ "02-03", "155", "050", "VALUE:N2b" ], [ "02-03", "158", "050", "VALUE:N2b" ], [ "04-90", "010", "050", "VALUE:N3" ], [ "04-90", "100,110,115,118", "050", "VALUE:N3" ], [ "04-90", "121", "050", "VALUE:N1" ], [ "04-90", "122", "050", "VALUE:N3" ], [ "04-90", "123", "050", "VALUE:N3" ], [ "04-90", "124", "050", "VALUE:N3" ], [ "04-90", "125", "050", "VALUE:N3" ], [ "04-90", "128", "050", "VALUE:N2" ], [ "04-90", "152", "050", "VALUE:N3" ], [ "04-90", "153", "050", "VALUE:N3" ], [ "04-90", "155", "050", "VALUE:N3" ], [ "04-90", "158", "050", "VALUE:N3" ], [ "95", "010", "050", "VALUE:N1" ], [ "95", "100,110,115,118", "050", "VALUE:N1" ], [ "95", "121", "050", "VALUE:N1" ], [ "95", "122", "050", "VALUE:N1b" ], [ "95", "123", "050", "VALUE:N1b" ], [ "95", "124", "050", "VALUE:N1b" ], [ "95", "125", "050", "VALUE:N1" ], [ "95", "128", "050", "VALUE:N2" ], [ "95", "152", "050", "VALUE:N2b" ], [ "95", "153", "050", "VALUE:N2b" ], [ "95", "155", "050", "VALUE:N2" ], [ "95", "158", "050", "VALUE:N2b" ], [ "97", "010", "050", "VALUE:N1b" ], [ "97", "100,110,115,118", "050", "VALUE:N1b" ], [ "97", "121", "050", "VALUE:N1" ], [ "97", "122", "050", "VALUE:N1b" ], [ "97", "123", "050", "VALUE:N1b" ], [ "97", "124", "050", "VALUE:N1b" ], [ "97", "125", "050", "VALUE:N1NOS" ], [ "97", "128", "050", "VALUE:N2" ], [ "97", "152", "050", "VALUE:N2b" ], [ "97", "153", "050", "VALUE:N2b" ], [ "97", "155", "050", "VALUE:N2b" ], [ "97", "158", "050", "VALUE:N2b" ], [ "98", "010", "050", "VALUE:N1" ], [ "98", "100,110,115,118", "050", "VALUE:N1" ], [ "98", "121", "050", "VALUE:N1" ], [ "98", "122", "050", "VALUE:N1" ], [ "98", "123", "050", "VALUE:N1" ], [ "98", "124", "050", "VALUE:N1" ], [ "98", "125", "050", "VALUE:N1" ], [ "98", "128", "050", "VALUE:N2" ], [ "98", "152", "050", "VALUE:N2" ], [ "98", "153", "050", "VALUE:N2" ], [ "98", "155", "050", "VALUE:N2" ], [ "98", "158", "050", "VALUE:N2" ], [ "99", "010", "050", "VALUE:N1" ], [ "99", "100,110,115,118", "050", "VALUE:N1" ], [ "99", "121", "050", "VALUE:N1" ], [ "99", "122", "050", "VALUE:N1" ], [ "99", "123", "050", "VALUE:N1" ], [ "99", "124", "050", "VALUE:N1" ], [ "99", "125", "050", "VALUE:N1" ], [ "99", "128", "050", "VALUE:N2" ], [ "99", "152", "050", "VALUE:N2" ], [ "99", "153", "050", "VALUE:N2" ], [ "99", "155", "050", "VALUE:N2" ], [ "99", "158", "050", "VALUE:N2" ], [ "00", "010", "100", "ERROR:" ], [ "00", "100,110,115,118", "100", "ERROR:" ], [ "00", "121", "100", "ERROR:" ], [ "00", "122", "100", "ERROR:" ], [ "00", "123", "100", "ERROR:" ], [ "00", "124", "100", "ERROR:" ], [ "00", "125", "100", "ERROR:" ], [ "00", "128", "100", "ERROR:" ], [ "00", "152", "100", "ERROR:" ], [ "00", "153", "100", "ERROR:" ], [ "00", "155", "100", "VALUE:N2c" ], [ "00", "158", "100", "VALUE:N2c" ], [ "01", "010", "100", "ERROR:" ], [ "01", "100,110,115,118", "100", "ERROR:" ], [ "01", "121", "100", "ERROR:" ], [ "01", "122", "100", "ERROR:" ], [ "01", "123", "100", "ERROR:" ], [ "01", "124", "100", "ERROR:" ], [ "01", "125", "100", "ERROR:" ], [ "01", "128", "100", "ERROR:" ], [ "01", "152", "100", "ERROR:" ], [ "01", "153", "100", "ERROR:" ], [ "01", "155", "100", "ERROR:" ], [ "01", "158", "100", "ERROR:" ], [ "02-03", "010", "100", "ERROR:" ], [ "02-03", "100,110,115,118", "100", "ERROR:" ], [ "02-03", "121", "100", "ERROR:" ], [ "02-03", "122", "100", "ERROR:" ], [ "02-03", "123", "100", "ERROR:" ], [ "02-03", "124", "100", "ERROR:" ], [ "02-03", "125", "100", "ERROR:" ], [ "02-03", "128", "100", "ERROR:" ], [ "02-03", "152", "100", "ERROR:" ], [ "02-03", "153", "100", "ERROR:" ], [ "02-03", "155", "100", "ERROR:" ], [ "02-03", "158", "100", "ERROR:" ], [ "04-90", "010", "100", "ERROR:" ], [ "04-90", "100,110,115,118", "100", "ERROR:" ], [ "04-90", "121", "100", "ERROR:" ], [ "04-90", "122", "100", "ERROR:" ], [ "04-90", "123", "100", "ERROR:" ], [ "04-90", "124", "100", "ERROR:" ], [ "04-90", "125", "100", "ERROR:" ], [ "04-90", "128", "100", "ERROR:" ], [ "04-90", "152", "100", "ERROR:" ], [ "04-90", "153", "100", "ERROR:" ], [ "04-90", "155", "100", "ERROR:" ], [ "04-90", "158", "100", "ERROR:" ], [ "95", "010", "100", "ERROR:" ], [ "95", "100,110,115,118", "100", "ERROR:" ], [ "95", "121", "100", "ERROR:" ], [ "95", "122", "100", "ERROR:" ], [ "95", "123", "100", "ERROR:" ], [ "95", "124", "100", "ERROR:" ], [ "95", "125", "100", "ERROR:" ], [ "95", "128", "100", "ERROR:" ], [ "95", "152", "100", "ERROR:" ], [ "95", "153", "100", "ERROR:" ], [ "95", "155", "100", "ERROR:" ], [ "95", "158", "100", "ERROR:" ], [ "97", "010", "100", "ERROR:" ], [ "97", "100,110,115,118", "100", "ERROR:" ], [ "97", "121", "100", "ERROR:" ], [ "97", "122", "100", "ERROR:" ], [ "97", "123", "100", "ERROR:" ], [ "97", "124", "100", "ERROR:" ], [ "97", "125", "100", "ERROR:" ], [ "97", "128", "100", "ERROR:" ], [ "97", "152", "100", "ERROR:" ], [ "97", "153", "100", "ERROR:" ], [ "97", "155", "100", "ERROR:" ], [ "97", "158", "100", "ERROR:" ], [ "98", "010", "100", "ERROR:" ], [ "98", "100,110,115,118", "100", "ERROR:" ], [ "98", "121", "100", "ERROR:" ], [ "98", "122", "100", "ERROR:" ], [ "98", "123", "100", "ERROR:" ], [ "98", "124", "100", "ERROR:" ], [ "98", "125", "100", "ERROR:" ], [ "98", "128", "100", "ERROR:" ], [ "98", "152", "100", "ERROR:" ], [ "98", "153", "100", "ERROR:" ], [ "98", "155", "100", "VALUE:N2c" ], [ "98", "158", "100", "VALUE:N2c" ], [ "99", "010", "100", "ERROR:" ], [ "99", "100,110,115,118", "100", "ERROR:" ], [ "99", "121", "100", "ERROR:" ], [ "99", "122", "100", "ERROR:" ], [ "99", "123", "100", "ERROR:" ], [ "99", "124", "100", "ERROR:" ], [ "99", "125", "100", "ERROR:" ], [ "99", "128", "100", "ERROR:" ], [ "99", "152", "100", "ERROR:" ], [ "99", "153", "100", "ERROR:" ], [ "99", "155", "100", "VALUE:N2c" ], [ "99", "158", "100", "VALUE:N2c" ], [ "00", "010", "150", "VALUE:N3" ], [ "00", "100,110,115,118", "150", "VALUE:N3" ], [ "00", "121", "150", "VALUE:N3" ], [ "00", "122", "150", "VALUE:N3" ], [ "00", "123", "150", "VALUE:N3" ], [ "00", "124", "150", "VALUE:N3" ], [ "00", "125", "150", "VALUE:N3" ], [ "00", "128", "150", "VALUE:N3" ], [ "00", "152", "150", "VALUE:N3" ], [ "00", "153", "150", "VALUE:N3" ], [ "00", "155", "150", "VALUE:N3" ], [ "00", "158", "150", "VALUE:N3" ], [ "01", "010", "150", "VALUE:N3" ], [ "01", "100,110,115,118", "150", "VALUE:N3" ], [ "01", "121", "150", "VALUE:N3" ], [ "01", "122", "150", "VALUE:N3" ], [ "01", "123", "150", "VALUE:N3" ], [ "01", "124", "150", "VALUE:N3" ], [ "01", "125", "150", "VALUE:N3" ], [ "01", "128", "150", "VALUE:N3" ], [ "01", "152", "150", "VALUE:N3" ], [ "01", "153", "150", "VALUE:N3" ], [ "01", "155", "150", "VALUE:N3" ], [ "01", "158", "150", "VALUE:N3" ], [ "02-03", "010", "150", "VALUE:N3" ], [ "02-03", "100,110,115,118", "150", "VALUE:N3" ], [ "02-03", "121", "150", "VALUE:N3" ], [ "02-03", "122", "150", "VALUE:N3" ], [ "02-03", "123", "150", "VALUE:N3" ], [ "02-03", "124", "150", "VALUE:N3" ], [ "02-03", "125", "150", "VALUE:N3" ], [ "02-03", "128", "150", "VALUE:N3" ], [ "02-03", "152", "150", "VALUE:N3" ], [ "02-03", "153", "150", "VALUE:N3" ], [ "02-03", "155", "150", "VALUE:N3" ], [ "02-03", "158", "150", "VALUE:N3" ], [ "04-90", "010", "150", "VALUE:N3" ], [ "04-90", "100,110,115,118", "150", "VALUE:N3" ], [ "04-90", "121", "150", "VALUE:N3" ], [ "04-90", "122", "150", "VALUE:N3" ], [ "04-90", "123", "150", "VALUE:N3" ], [ "04-90", "124", "150", "VALUE:N3" ], [ "04-90", "125", "150", "VALUE:N3" ], [ "04-90", "128", "150", "VALUE:N3" ], [ "04-90", "152", "150", "VALUE:N3" ], [ "04-90", "153", "150", "VALUE:N3" ], [ "04-90", "155", "150", "VALUE:N3" ], [ "04-90", "158", "150", "VALUE:N3" ], [ "95", "010", "150", "VALUE:N3" ], [ "95", "100,110,115,118", "150", "VALUE:N3" ], [ "95", "121", "150", "VALUE:N3" ], [ "95", "122", "150", "VALUE:N3" ], [ "95", "123", "150", "VALUE:N3" ], [ "95", "124", "150", "VALUE:N3" ], [ "95", "125", "150", "VALUE:N3" ], [ "95", "128", "150", "VALUE:N3" ], [ "95", "152", "150", "VALUE:N3" ], [ "95", "153", "150", "VALUE:N3" ], [ "95", "155", "150", "VALUE:N3" ], [ "95", "158", "150", "VALUE:N3" ], [ "97", "010", "150", "VALUE:N3" ], [ "97", "100,110,115,118", "150", "VALUE:N3" ], [ "97", "121", "150", "VALUE:N3" ], [ "97", "122", "150", "VALUE:N3" ], [ "97", "123", "150", "VALUE:N3" ], [ "97", "124", "150", "VALUE:N3" ], [ "97", "125", "150", "VALUE:N3" ], [ "97", "128", "150", "VALUE:N3" ], [ "97", "152", "150", "VALUE:N3" ], [ "97", "153", "150", "VALUE:N3" ], [ "97", "155", "150", "VALUE:N3" ], [ "97", "158", "150", "VALUE:N3" ], [ "98", "010", "150", "VALUE:N3" ], [ "98", "100,110,115,118", "150", "VALUE:N3" ], [ "98", "121", "150", "VALUE:N3" ], [ "98", "122", "150", "VALUE:N3" ], [ "98", "123", "150", "VALUE:N3" ], [ "98", "124", "150", "VALUE:N3" ], [ "98", "125", "150", "VALUE:N3" ], [ "98", "128", "150", "VALUE:N3" ], [ "98", "152", "150", "VALUE:N3" ], [ "98", "153", "150", "VALUE:N3" ], [ "98", "155", "150", "VALUE:N3" ], [ "98", "158", "150", "VALUE:N3" ], [ "99", "010", "150", "VALUE:N3" ], [ "99", "100,110,115,118", "150", "VALUE:N3" ], [ "99", "121", "150", "VALUE:N3" ], [ "99", "122", "150", "VALUE:N3" ], [ "99", "123", "150", "VALUE:N3" ], [ "99", "124", "150", "VALUE:N3" ], [ "99", "125", "150", "VALUE:N3" ], [ "99", "128", "150", "VALUE:N3" ], [ "99", "152", "150", "VALUE:N3" ], [ "99", "153", "150", "VALUE:N3" ], [ "99", "155", "150", "VALUE:N3" ], [ "99", "158", "150", "VALUE:N3" ], [ "00", "010", "988", "ERROR:" ], [ "00", "100,110,115,118", "988", "ERROR:" ], [ "00", "121", "988", "ERROR:" ], [ "00", "122", "988", "ERROR:" ], [ "00", "123", "988", "ERROR:" ], [ "00", "124", "988", "ERROR:" ], [ "00", "125", "988", "ERROR:" ], [ "00", "128", "988", "ERROR:" ], [ "00", "152", "988", "ERROR:" ], [ "00", "153", "988", "ERROR:" ], [ "00", "155", "988", "ERROR:" ], [ "00", "158", "988", "ERROR:" ], [ "01", "010", "988", "ERROR:" ], [ "01", "100,110,115,118", "988", "ERROR:" ], [ "01", "121", "988", "ERROR:" ], [ "01", "122", "988", "ERROR:" ], [ "01", "123", "988", "ERROR:" ], [ "01", "124", "988", "ERROR:" ], [ "01", "125", "988", "ERROR:" ], [ "01", "128", "988", "ERROR:" ], [ "01", "152", "988", "ERROR:" ], [ "01", "153", "988", "ERROR:" ], [ "01", "155", "988", "ERROR:" ], [ "01", "158", "988", "ERROR:" ], [ "02-03", "010", "988", "ERROR:" ], [ "02-03", "100,110,115,118", "988", "ERROR:" ], [ "02-03", "121", "988", "ERROR:" ], [ "02-03", "122", "988", "ERROR:" ], [ "02-03", "123", "988", "ERROR:" ], [ "02-03", "124", "988", "ERROR:" ], [ "02-03", "125", "988", "ERROR:" ], [ "02-03", "128", "988", "ERROR:" ], [ "02-03", "152", "988", "ERROR:" ], [ "02-03", "153", "988", "ERROR:" ], [ "02-03", "155", "988", "ERROR:" ], [ "02-03", "158", "988", "ERROR:" ], [ "04-90", "010", "988", "ERROR:" ], [ "04-90", "100,110,115,118", "988", "ERROR:" ], [ "04-90", "121", "988", "ERROR:" ], [ "04-90", "122", "988", "ERROR:" ], [ "04-90", "123", "988", "ERROR:" ], [ "04-90", "124", "988", "ERROR:" ], [ "04-90", "125", "988", "ERROR:" ], [ "04-90", "128", "988", "ERROR:" ], [ "04-90", "152", "988", "ERROR:" ], [ "04-90", "153", "988", "ERROR:" ], [ "04-90", "155", "988", "ERROR:" ], [ "04-90", "158", "988", "ERROR:" ], [ "95", "010", "988", "ERROR:" ], [ "95", "100,110,115,118", "988", "ERROR:" ], [ "95", "121", "988", "ERROR:" ], [ "95", "122", "988", "ERROR:" ], [ "95", "123", "988", "ERROR:" ], [ "95", "124", "988", "ERROR:" ], [ "95", "125", "988", "ERROR:" ], [ "95", "128", "988", "ERROR:" ], [ "95", "152", "988", "ERROR:" ], [ "95", "153", "988", "ERROR:" ], [ "95", "155", "988", "ERROR:" ], [ "95", "158", "988", "ERROR:" ], [ "97", "010", "988", "ERROR:" ], [ "97", "100,110,115,118", "988", "ERROR:" ], [ "97", "121", "988", "ERROR:" ], [ "97", "122", "988", "ERROR:" ], [ "97", "123", "988", "ERROR:" ], [ "97", "124", "988", "ERROR:" ], [ "97", "125", "988", "ERROR:" ], [ "97", "128", "988", "ERROR:" ], [ "97", "152", "988", "ERROR:" ], [ "97", "153", "988", "ERROR:" ], [ "97", "155", "988", "ERROR:" ], [ "97", "158", "988", "ERROR:" ], [ "98", "010", "988", "ERROR:" ], [ "98", "100,110,115,118", "988", "ERROR:" ], [ "98", "121", "988", "ERROR:" ], [ "98", "122", "988", "ERROR:" ], [ "98", "123", "988", "ERROR:" ], [ "98", "124", "988", "ERROR:" ], [ "98", "125", "988", "ERROR:" ], [ "98", "128", "988", "ERROR:" ], [ "98", "152", "988", "ERROR:" ], [ "98", "153", "988", "ERROR:" ], [ "98", "155", "988", "ERROR:" ], [ "98", "158", "988", "ERROR:" ], [ "99", "010", "988", "ERROR:" ], [ "99", "100,110,115,118", "988", "ERROR:" ], [ "99", "121", "988", "ERROR:" ], [ "99", "122", "988", "ERROR:" ], [ "99", "123", "988", "ERROR:" ], [ "99", "124", "988", "ERROR:" ], [ "99", "125", "988", "ERROR:" ], [ "99", "128", "988", "ERROR:" ], [ "99", "152", "988", "ERROR:" ], [ "99", "153", "988", "ERROR:" ], [ "99", "155", "988", "ERROR:" ], [ "99", "158", "988", "ERROR:" ], [ "00", "010", "999", "VALUE:N1" ], [ "00", "100,110,115,118", "999", "VALUE:N1" ], [ "00", "121", "999", "VALUE:N1" ], [ "00", "122", "999", "VALUE:N1" ], [ "00", "123", "999", "VALUE:N1" ], [ "00", "124", "999", "VALUE:N1" ], [ "00", "125", "999", "VALUE:N1" ], [ "00", "128", "999", "VALUE:N2" ], [ "00", "152", "999", "VALUE:N2" ], [ "00", "153", "999", "VALUE:N2" ], [ "00", "155", "999", "VALUE:N2" ], [ "00", "158", "999", "VALUE:N2" ], [ "01", "010", "999", "VALUE:N1a" ], [ "01", "100,110,115,118", "999", "VALUE:N1" ], [ "01", "121", "999", "VALUE:N1" ], [ "01", "122", "999", "VALUE:N1a" ], [ "01", "123", "999", "VALUE:N1b" ], [ "01", "124", "999", "VALUE:N1NOS" ], [ "01", "125", "999", "VALUE:N1NOS" ], [ "01", "128", "999", "VALUE:N2" ], [ "01", "152", "999", "VALUE:N2a" ], [ "01", "153", "999", "VALUE:N2b" ], [ "01", "155", "999", "VALUE:N2NOS" ], [ "01", "158", "999", "VALUE:N2NOS" ], [ "02-03", "010", "999", "VALUE:N2a" ], [ "02-03", "100,110,115,118", "999", "VALUE:N2" ], [ "02-03", "121", "999", "VALUE:N2" ], [ "02-03", "122", "999", "VALUE:N2a" ], [ "02-03", "123", "999", "VALUE:N2b" ], [ "02-03", "124", "999", "VALUE:N2NOS" ], [ "02-03", "125", "999", "VALUE:N2NOS" ], [ "02-03", "128", "999", "VALUE:N2" ], [ "02-03", "152", "999", "VALUE:N2a" ], [ "02-03", "153", "999", "VALUE:N2b" ], [ "02-03", "155", "999", "VALUE:N2NOS" ], [ "02-03", "158", "999", "VALUE:N2NOS" ], [ "04-90", "010", "999", "VALUE:N3" ], [ "04-90", "100,110,115,118", "999", "VALUE:N3" ], [ "04-90", "121", "999", "VALUE:N1" ], [ "04-90", "122", "999", "VALUE:N3" ], [ "04-90", "123", "999", "VALUE:N3" ], [ "04-90", "124", "999", "VALUE:N3" ], [ "04-90", "125", "999", "VALUE:N3" ], [ "04-90", "128", "999", "VALUE:N2" ], [ "04-90", "152", "999", "VALUE:N3" ], [ "04-90", "153", "999", "VALUE:N3" ], [ "04-90", "155", "999", "VALUE:N3" ], [ "04-90", "158", "999", "VALUE:N3" ], [ "95", "010", "999", "VALUE:N1a" ], [ "95", "100,110,115,118", "999", "VALUE:N1" ], [ "95", "121", "999", "VALUE:N1" ], [ "95", "122", "999", "VALUE:N1a" ], [ "95", "123", "999", "VALUE:N1b" ], [ "95", "124", "999", "VALUE:N1NOS" ], [ "95", "125", "999", "VALUE:N1" ], [ "95", "128", "999", "VALUE:N2" ], [ "95", "152", "999", "VALUE:N2a" ], [ "95", "153", "999", "VALUE:N2b" ], [ "95", "155", "999", "VALUE:N2" ], [ "95", "158", "999", "VALUE:N2NOS" ], [ "97", "010", "999", "VALUE:N1a" ], [ "97", "100,110,115,118", "999", "VALUE:N1" ], [ "97", "121", "999", "VALUE:N1" ], [ "97", "122", "999", "VALUE:N1a" ], [ "97", "123", "999", "VALUE:N1b" ], [ "97", "124", "999", "VALUE:N1NOS" ], [ "97", "125", "999", "VALUE:N1NOS" ], [ "97", "128", "999", "VALUE:N2" ], [ "97", "152", "999", "VALUE:N2a" ], [ "97", "153", "999", "VALUE:N2b" ], [ "97", "155", "999", "VALUE:N2NOS" ], [ "97", "158", "999", "VALUE:N2NOS" ], [ "98", "010", "999", "VALUE:N1" ], [ "98", "100,110,115,118", "999", "VALUE:N1" ], [ "98", "121", "999", "VALUE:N1" ], [ "98", "122", "999", "VALUE:N1" ], [ "98", "123", "999", "VALUE:N1" ], [ "98", "124", "999", "VALUE:N1" ], [ "98", "125", "999", "VALUE:N1" ], [ "98", "128", "999", "VALUE:N2" ], [ "98", "152", "999", "VALUE:N2" ], [ "98", "153", "999", "VALUE:N2" ], [ "98", "155", "999", "VALUE:N2" ], [ "98", "158", "999", "VALUE:N2" ], [ "99", "010", "999", "VALUE:N1a" ], [ "99", "100,110,115,118", "999", "VALUE:N1" ], [ "99", "121", "999", "VALUE:N1" ], [ "99", "122", "999", "VALUE:N1a" ], [ "99", "123", "999", "VALUE:N1b" ], [ "99", "124", "999", "VALUE:N1NOS" ], [ "99", "125", "999", "VALUE:N1NOS" ], [ "99", "128", "999", "VALUE:N2" ], [ "99", "152", "999", "VALUE:N2a" ], [ "99", "153", "999", "VALUE:N2b" ], [ "99", "155", "999", "VALUE:N2NOS" ], [ "99", "158", "999", "VALUE:N2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xln.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xln.json
deleted file mode 100644
index e30c3d4fc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xln.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_blank_ajcc7_xln",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval Blank AJCC7",
- "title" : "Lymph Node and Nodal Status Eval Blank AJCC 7 Table",
- "notes" : "**Note**: When CS Lymph Nodes Eval is blank, for CS Lymph Nodes codes 010-400 and 500 ONLY, the N category is assigned based on the value of CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, and Regional Nodes Positive, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.574Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00,98", "010", "000, 005", "ERROR:" ], [ "00,98", "100-400,500", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "010", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "100", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "110", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "120", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "140", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "150-400,500", "000, 005", "ERROR:" ], [ "00,98", "010", "010", "VALUE:N1a" ], [ "00,98", "100-400,500", "010", "VALUE:N1" ], [ "01-90,95,97,99", "010", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "100", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "110", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "120", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "140", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "150-400,500", "010", "VALUE:N1a" ], [ "00,98", "010", "020", "VALUE:N1b" ], [ "00,98", "100-400,500", "020", "VALUE:N1" ], [ "01-90,95,97,99", "010", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "100", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "110", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "120", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "140", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "150-400,500", "020", "VALUE:N1b" ], [ "00,98", "010", "100", "ERROR:" ], [ "00,98", "100-400,500", "100", "ERROR:" ], [ "01-90,95,97,99", "010", "100", "ERROR:" ], [ "01-90,95,97,99", "100", "100", "ERROR:" ], [ "01-90,95,97,99", "110", "100", "ERROR:" ], [ "01-90,95,97,99", "120", "100", "ERROR:" ], [ "01-90,95,97,99", "140", "100", "ERROR:" ], [ "01-90,95,97,99", "150-400,500", "100", "ERROR:" ], [ "00,98", "010", "150", "VALUE:N2" ], [ "00,98", "100-400,500", "150", "VALUE:N2" ], [ "01-90,95,97,99", "010", "150", "VALUE:N2" ], [ "01-90,95,97,99", "100", "150", "VALUE:N2" ], [ "01-90,95,97,99", "110", "150", "VALUE:N2" ], [ "01-90,95,97,99", "120", "150", "VALUE:N2" ], [ "01-90,95,97,99", "140", "150", "VALUE:N2" ], [ "01-90,95,97,99", "150-400,500", "150", "VALUE:N2" ], [ "00,98", "010", "888, 988", "ERROR:" ], [ "00,98", "100-400,500", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "010", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "100", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "110", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "120", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "140", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "150-400,500", "888, 988", "ERROR:" ], [ "00,98", "010", "999", "VALUE:N1a" ], [ "00,98", "100-400,500", "999", "VALUE:N1" ], [ "01-90,95,97,99", "010", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "100", "999", "VALUE:N1NOS" ], [ "01-90,95,97,99", "110", "999", "VALUE:N1" ], [ "01-90,95,97,99", "120", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "140", "999", "VALUE:N1b" ], [ "01-90,95,97,99", "150-400,500", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlo.json
deleted file mode 100644
index 72be758cf..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlo.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval Blank AJCC7",
- "title" : "Lymph Node and Nodal Status Eval Blank AJCC 7 Table",
- "notes" : "**Note**: When CS Lymph Nodes Eval is blank, for CS Lymph Nodes codes 010-360 ONLY, the N category is assigned based on the value of CS CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, and Regional Nodes Positive, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.631Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00,98", "010-360", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "010", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "100", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "310", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "320", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "340", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "350", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "360", "000, 005", "ERROR:" ], [ "00,98", "010-360", "010", "VALUE:N1" ], [ "01-90,95,97,99", "010", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "100", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "310", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "320", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "340", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "350", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "360", "010", "VALUE:N1NOS" ], [ "00,98", "010-360", "020", "VALUE:N1" ], [ "01-90,95,97,99", "010", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "100", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "310", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "320", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "340", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "350", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "360", "020", "VALUE:N1NOS" ], [ "00,98", "010-360", "100", "ERROR:" ], [ "01-90,95,97,99", "010", "100", "ERROR:" ], [ "01-90,95,97,99", "100", "100", "ERROR:" ], [ "01-90,95,97,99", "310", "100", "ERROR:" ], [ "01-90,95,97,99", "320", "100", "ERROR:" ], [ "01-90,95,97,99", "340", "100", "ERROR:" ], [ "01-90,95,97,99", "350", "100", "ERROR:" ], [ "01-90,95,97,99", "360", "100", "ERROR:" ], [ "00,98", "010-360", "150", "VALUE:N2" ], [ "01-90,95,97,99", "010", "150", "VALUE:N2" ], [ "01-90,95,97,99", "100", "150", "VALUE:N2" ], [ "01-90,95,97,99", "310", "150", "VALUE:N2" ], [ "01-90,95,97,99", "320", "150", "VALUE:N2" ], [ "01-90,95,97,99", "340", "150", "VALUE:N2" ], [ "01-90,95,97,99", "350", "150", "VALUE:N2" ], [ "01-90,95,97,99", "360", "150", "VALUE:N2" ], [ "00,98", "010-360", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "010", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "100", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "310", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "320", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "340", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "350", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "360", "888, 988", "ERROR:" ], [ "00,98", "010-360", "999", "VALUE:N1" ], [ "01-90,95,97,99", "010", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "100", "999", "VALUE:N1NOS" ], [ "01-90,95,97,99", "310", "999", "VALUE:N1" ], [ "01-90,95,97,99", "320", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "340", "999", "VALUE:N1b" ], [ "01-90,95,97,99", "350", "999", "VALUE:N1NOS" ], [ "01-90,95,97,99", "360", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlp.json
deleted file mode 100644
index a9928e7c9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlp.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval Blank AJCC7",
- "title" : "Lymph Node and Nodal Status Eval Blank AJCC 7 Table",
- "notes" : "**Note**: When CS Lymph Nodes Eval is blank, for CS Lymph Nodes codes 010-360 ONLY, the N category is assigned based on the value of CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, and Regional Nodes Positive, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.683Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00,98", "010", "000, 005", "ERROR:" ], [ "00,98", "100-360", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "010", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "100-305", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "310", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "320", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "340", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "350", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "360", "000, 005", "ERROR:" ], [ "00,98", "010", "010", "VALUE:N1a" ], [ "00,98", "100-360", "010", "VALUE:N1" ], [ "01-90,95,97,99", "010", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "100-305", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "310", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "320", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "340", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "350", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "360", "010", "VALUE:N1a" ], [ "00,98", "010", "020", "VALUE:N1b" ], [ "00,98", "100-360", "020", "VALUE:N1" ], [ "01-90,95,97,99", "010", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "100-305", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "310", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "320", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "340", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "350", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "360", "020", "VALUE:N1b" ], [ "00,98", "010", "100", "ERROR:" ], [ "00,98", "100-360", "100", "ERROR:" ], [ "01-90,95,97,99", "010", "100", "ERROR:" ], [ "01-90,95,97,99", "100-305", "100", "ERROR:" ], [ "01-90,95,97,99", "310", "100", "ERROR:" ], [ "01-90,95,97,99", "320", "100", "ERROR:" ], [ "01-90,95,97,99", "340", "100", "ERROR:" ], [ "01-90,95,97,99", "350", "100", "ERROR:" ], [ "01-90,95,97,99", "360", "100", "ERROR:" ], [ "00,98", "010", "150", "VALUE:N2" ], [ "00,98", "100-360", "150", "VALUE:N2" ], [ "01-90,95,97,99", "010", "150", "VALUE:N2" ], [ "01-90,95,97,99", "100-305", "150", "VALUE:N2" ], [ "01-90,95,97,99", "310", "150", "VALUE:N2" ], [ "01-90,95,97,99", "320", "150", "VALUE:N2" ], [ "01-90,95,97,99", "340", "150", "VALUE:N2" ], [ "01-90,95,97,99", "350", "150", "VALUE:N2" ], [ "01-90,95,97,99", "360", "150", "VALUE:N2" ], [ "00,98", "010", "888, 988", "ERROR:" ], [ "00,98", "100-360", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "010", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "100-305", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "310", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "320", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "340", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "350", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "360", "888, 988", "ERROR:" ], [ "00,98", "010", "999", "VALUE:N1a" ], [ "00,98", "100-360", "999", "VALUE:N1" ], [ "01-90,95,97,99", "010", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "100-305", "999", "VALUE:N1NOS" ], [ "01-90,95,97,99", "310", "999", "VALUE:N1" ], [ "01-90,95,97,99", "320", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "340", "999", "VALUE:N1b" ], [ "01-90,95,97,99", "350", "999", "VALUE:N1NOS" ], [ "01-90,95,97,99", "360", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlq.json
deleted file mode 100644
index 7f256a549..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_eval_blank_ajcc7_xlq.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_eval_blank_ajcc7_xlq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Eval Blank AJCC7",
- "title" : "Lymph Node and Nodal Status Eval Blank AJCC 7 Table",
- "notes" : "**Note**: When CS Lymph Nodes Eval is blank, for CS Lymph Nodes codes 010, 105-109, 114-130, and 600 ONLY, the N category is assigned based on the value of CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, and Regional Nodes Positive, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.743Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00,98", "010", "000, 005", "ERROR:" ], [ "00,98", "105-109,114-130,600", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "010", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "105-109", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "114", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "115", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "120", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "125", "000, 005", "ERROR:" ], [ "01-90,95,97,99", "130,600", "000, 005", "ERROR:" ], [ "00,98", "010", "010", "VALUE:N1a" ], [ "00,98", "105-109,114-130,600", "010", "VALUE:N1" ], [ "01-90,95,97,99", "010", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "105-109", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "114", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "115", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "120", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "125", "010", "VALUE:N1a" ], [ "01-90,95,97,99", "130,600", "010", "VALUE:N1a" ], [ "00,98", "010", "020", "VALUE:N1b" ], [ "00,98", "105-109,114-130,600", "020", "VALUE:N1" ], [ "01-90,95,97,99", "010", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "105-109", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "114", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "115", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "120", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "125", "020", "VALUE:N1b" ], [ "01-90,95,97,99", "130,600", "020", "VALUE:N1b" ], [ "00,98", "010", "100", "ERROR:" ], [ "00,98", "105-109,114-130,600", "100", "ERROR:" ], [ "01-90,95,97,99", "010", "100", "ERROR:" ], [ "01-90,95,97,99", "105-109", "100", "ERROR:" ], [ "01-90,95,97,99", "114", "100", "ERROR:" ], [ "01-90,95,97,99", "115", "100", "ERROR:" ], [ "01-90,95,97,99", "120", "100", "ERROR:" ], [ "01-90,95,97,99", "125", "100", "ERROR:" ], [ "01-90,95,97,99", "130,600", "100", "ERROR:" ], [ "00,98", "010", "150", "VALUE:N2" ], [ "00,98", "105-109,114-130,600", "150", "VALUE:N2" ], [ "01-90,95,97,99", "010", "150", "VALUE:N2" ], [ "01-90,95,97,99", "105-109", "150", "VALUE:N2" ], [ "01-90,95,97,99", "114", "150", "VALUE:N2" ], [ "01-90,95,97,99", "115", "150", "VALUE:N2" ], [ "01-90,95,97,99", "120", "150", "VALUE:N2" ], [ "01-90,95,97,99", "125", "150", "VALUE:N2" ], [ "01-90,95,97,99", "130,600", "150", "VALUE:N2" ], [ "00,98", "010", "888, 988", "ERROR:" ], [ "00,98", "105-109,114-130,600", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "010", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "105-109", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "114", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "115", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "120", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "125", "888, 988", "ERROR:" ], [ "01-90,95,97,99", "130,600", "888, 988", "ERROR:" ], [ "00,98", "010", "999", "VALUE:N1a" ], [ "00,98", "105-109,114-130,600", "999", "VALUE:N1" ], [ "01-90,95,97,99", "010", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "105-109", "999", "VALUE:N1NOS" ], [ "01-90,95,97,99", "114", "999", "VALUE:N1" ], [ "01-90,95,97,99", "115", "999", "VALUE:N1a" ], [ "01-90,95,97,99", "120", "999", "VALUE:N1b" ], [ "01-90,95,97,99", "125", "999", "VALUE:N1NOS" ], [ "01-90,95,97,99", "130,600", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_pathologic_eval_ajcc6_xll.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_pathologic_eval_ajcc6_xll.json
deleted file mode 100644
index f5b2c7d3c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_pathologic_eval_ajcc6_xll.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_pathologic_eval_ajcc6_xll",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Pathologic Eval AJCC6",
- "title" : "Lymph Node and Nodal Status Pathologic Eval AJCC 6 Table",
- "notes" : "**Note**: When nodes are pathologically evaluated (CS Lymph Nodes Eval = 2,3,6,8), for CS Lymph Nodes codes 010-118, 121-128, 152, 153, 155, and 158 ONLY, the N category for AJCC 6 staging is assigned based on the value of CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, and Regional Nodes Positive, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.819Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "100,110,115,118", "000-002,005", "ERROR:" ], [ "00", "121", "000-002,005", "ERROR:" ], [ "00", "122", "000-002,005", "ERROR:" ], [ "00", "123", "000-002,005", "ERROR:" ], [ "00", "124", "000-002,005", "ERROR:" ], [ "00", "125", "000-002,005", "ERROR:" ], [ "00", "128", "000-002,005", "ERROR:" ], [ "00", "152", "000-002,005", "ERROR:" ], [ "00", "153", "000-002,005", "ERROR:" ], [ "00", "155", "000-002,005", "ERROR:" ], [ "00", "158", "000-002,005", "ERROR:" ], [ "01", "100,110,115,118", "000-002,005", "ERROR:" ], [ "01", "121", "000-002,005", "ERROR:" ], [ "01", "122", "000-002,005", "ERROR:" ], [ "01", "123", "000-002,005", "ERROR:" ], [ "01", "124", "000-002,005", "ERROR:" ], [ "01", "125", "000-002,005", "ERROR:" ], [ "01", "128", "000-002,005", "ERROR:" ], [ "01", "152", "000-002,005", "ERROR:" ], [ "01", "153", "000-002,005", "ERROR:" ], [ "01", "155", "000-002,005", "ERROR:" ], [ "01", "158", "000-002,005", "ERROR:" ], [ "02-03", "100,110,115,118", "000-002,005", "ERROR:" ], [ "02-03", "121", "000-002,005", "ERROR:" ], [ "02-03", "122", "000-002,005", "ERROR:" ], [ "02-03", "123", "000-002,005", "ERROR:" ], [ "02-03", "124", "000-002,005", "ERROR:" ], [ "02-03", "125", "000-002,005", "ERROR:" ], [ "02-03", "128", "000-002,005", "ERROR:" ], [ "02-03", "152", "000-002,005", "ERROR:" ], [ "02-03", "153", "000-002,005", "ERROR:" ], [ "02-03", "155", "000-002,005", "ERROR:" ], [ "02-03", "158", "000-002,005", "ERROR:" ], [ "04-90", "100,110,115,118", "000-002,005", "ERROR:" ], [ "04-90", "121", "000-002,005", "ERROR:" ], [ "04-90", "122", "000-002,005", "ERROR:" ], [ "04-90", "123", "000-002,005", "ERROR:" ], [ "04-90", "124", "000-002,005", "ERROR:" ], [ "04-90", "125", "000-002,005", "ERROR:" ], [ "04-90", "128", "000-002,005", "ERROR:" ], [ "04-90", "152", "000-002,005", "ERROR:" ], [ "04-90", "153", "000-002,005", "ERROR:" ], [ "04-90", "155", "000-002,005", "ERROR:" ], [ "04-90", "158", "000-002,005", "ERROR:" ], [ "95", "100,110,115,118", "000-002,005", "ERROR:" ], [ "95", "121", "000-002,005", "ERROR:" ], [ "95", "122", "000-002,005", "ERROR:" ], [ "95", "123", "000-002,005", "ERROR:" ], [ "95", "124", "000-002,005", "ERROR:" ], [ "95", "125", "000-002,005", "ERROR:" ], [ "95", "128", "000-002,005", "ERROR:" ], [ "95", "152", "000-002,005", "ERROR:" ], [ "95", "153", "000-002,005", "ERROR:" ], [ "95", "155", "000-002,005", "ERROR:" ], [ "95", "158", "000-002,005", "ERROR:" ], [ "97", "100,110,115,118", "000-002,005", "ERROR:" ], [ "97", "121", "000-002,005", "ERROR:" ], [ "97", "122", "000-002,005", "ERROR:" ], [ "97", "123", "000-002,005", "ERROR:" ], [ "97", "124", "000-002,005", "ERROR:" ], [ "97", "125", "000-002,005", "ERROR:" ], [ "97", "128", "000-002,005", "ERROR:" ], [ "97", "152", "000-002,005", "ERROR:" ], [ "97", "153", "000-002,005", "ERROR:" ], [ "97", "155", "000-002,005", "ERROR:" ], [ "97", "158", "000-002,005", "ERROR:" ], [ "98", "100,110,115,118", "000-002,005", "ERROR:" ], [ "98", "121", "000-002,005", "ERROR:" ], [ "98", "122", "000-002,005", "ERROR:" ], [ "98", "123", "000-002,005", "ERROR:" ], [ "98", "124", "000-002,005", "ERROR:" ], [ "98", "125", "000-002,005", "ERROR:" ], [ "98", "128", "000-002,005", "ERROR:" ], [ "98", "152", "000-002,005", "ERROR:" ], [ "98", "153", "000-002,005", "ERROR:" ], [ "98", "155", "000-002,005", "ERROR:" ], [ "98", "158", "000-002,005", "ERROR:" ], [ "99", "100,110,115,118", "000-002,005", "ERROR:" ], [ "99", "121", "000-002,005", "ERROR:" ], [ "99", "122", "000-002,005", "ERROR:" ], [ "99", "123", "000-002,005", "ERROR:" ], [ "99", "124", "000-002,005", "ERROR:" ], [ "99", "125", "000-002,005", "ERROR:" ], [ "99", "128", "000-002,005", "ERROR:" ], [ "99", "152", "000-002,005", "ERROR:" ], [ "99", "153", "000-002,005", "ERROR:" ], [ "99", "155", "000-002,005", "ERROR:" ], [ "99", "158", "000-002,005", "ERROR:" ], [ "00", "100,110,115,118", "010", "ERROR:" ], [ "00", "121", "010", "ERROR:" ], [ "00", "122", "010", "ERROR:" ], [ "00", "123", "010", "ERROR:" ], [ "00", "124", "010", "ERROR:" ], [ "00", "125", "010", "ERROR:" ], [ "00", "128", "010", "ERROR:" ], [ "00", "152", "010", "ERROR:" ], [ "00", "153", "010", "ERROR:" ], [ "00", "155", "010", "ERROR:" ], [ "00", "158", "010", "ERROR:" ], [ "01", "100,110,115,118", "010", "VALUE:N1a" ], [ "01", "121", "010", "ERROR:" ], [ "01", "122", "010", "VALUE:N1a" ], [ "01", "123", "010", "VALUE:N1a" ], [ "01", "124", "010", "VALUE:N1a" ], [ "01", "125", "010", "VALUE:N1a" ], [ "01", "128", "010", "ERROR:" ], [ "01", "152", "010", "VALUE:N1a" ], [ "01", "153", "010", "VALUE:N1a" ], [ "01", "155", "010", "VALUE:N1a" ], [ "01", "158", "010", "VALUE:N1a" ], [ "02-03", "100,110,115,118", "010", "VALUE:N2a" ], [ "02-03", "121", "010", "ERROR:" ], [ "02-03", "122", "010", "VALUE:N2a" ], [ "02-03", "123", "010", "VALUE:N2a" ], [ "02-03", "124", "010", "VALUE:N2a" ], [ "02-03", "125", "010", "VALUE:N2a" ], [ "02-03", "128", "010", "ERROR:" ], [ "02-03", "152", "010", "VALUE:N2a" ], [ "02-03", "153", "010", "VALUE:N2a" ], [ "02-03", "155", "010", "VALUE:N2a" ], [ "02-03", "158", "010", "VALUE:N2a" ], [ "04-90", "100,110,115,118", "010", "VALUE:N3" ], [ "04-90", "121", "010", "ERROR:" ], [ "04-90", "122", "010", "VALUE:N3" ], [ "04-90", "123", "010", "VALUE:N3" ], [ "04-90", "124", "010", "VALUE:N3" ], [ "04-90", "125", "010", "VALUE:N3" ], [ "04-90", "128", "010", "ERROR:" ], [ "04-90", "152", "010", "VALUE:N3" ], [ "04-90", "153", "010", "VALUE:N3" ], [ "04-90", "155", "010", "VALUE:N3" ], [ "04-90", "158", "010", "VALUE:N3" ], [ "95", "100,110,115,118", "010", "VALUE:N1a" ], [ "95", "121", "010", "ERROR:" ], [ "95", "122", "010", "VALUE:N1a" ], [ "95", "123", "010", "VALUE:N1a" ], [ "95", "124", "010", "VALUE:N1a" ], [ "95", "125", "010", "VALUE:N1a" ], [ "95", "128", "010", "ERROR:" ], [ "95", "152", "010", "VALUE:N2a" ], [ "95", "153", "010", "VALUE:N2a" ], [ "95", "155", "010", "VALUE:N2a" ], [ "95", "158", "010", "VALUE:N2a" ], [ "97", "100,110,115,118", "010", "VALUE:N1a" ], [ "97", "121", "010", "ERROR:" ], [ "97", "122", "010", "VALUE:N1a" ], [ "97", "123", "010", "VALUE:N1a" ], [ "97", "124", "010", "VALUE:N1a" ], [ "97", "125", "010", "VALUE:N1a" ], [ "97", "128", "010", "ERROR:" ], [ "97", "152", "010", "VALUE:N2a" ], [ "97", "153", "010", "VALUE:N2a" ], [ "97", "155", "010", "VALUE:N2a" ], [ "97", "158", "010", "VALUE:N2a" ], [ "98", "100,110,115,118", "010", "ERROR:" ], [ "98", "121", "010", "ERROR:" ], [ "98", "122", "010", "ERROR:" ], [ "98", "123", "010", "ERROR:" ], [ "98", "124", "010", "ERROR:" ], [ "98", "125", "010", "ERROR:" ], [ "98", "128", "010", "ERROR:" ], [ "98", "152", "010", "ERROR:" ], [ "98", "153", "010", "ERROR:" ], [ "98", "155", "010", "ERROR:" ], [ "98", "158", "010", "ERROR:" ], [ "99", "100,110,115,118", "010", "VALUE:N1a" ], [ "99", "121", "010", "ERROR:" ], [ "99", "122", "010", "VALUE:N1a" ], [ "99", "123", "010", "VALUE:N1a" ], [ "99", "124", "010", "VALUE:N1a" ], [ "99", "125", "010", "VALUE:N1a" ], [ "99", "128", "010", "ERROR:" ], [ "99", "152", "010", "VALUE:N2a" ], [ "99", "153", "010", "VALUE:N2a" ], [ "99", "155", "010", "VALUE:N2a" ], [ "99", "158", "010", "VALUE:N2a" ], [ "00", "100,110,115,118", "020", "VALUE:N1b" ], [ "00", "121", "020", "ERROR:" ], [ "00", "122", "020", "VALUE:N1b" ], [ "00", "123", "020", "VALUE:N1b" ], [ "00", "124", "020", "VALUE:N1b" ], [ "00", "125", "020", "VALUE:N1b" ], [ "00", "128", "020", "ERROR:" ], [ "00", "152", "020", "VALUE:N2b" ], [ "00", "153", "020", "VALUE:N2b" ], [ "00", "155", "020", "VALUE:N2b" ], [ "00", "158", "020", "VALUE:N2b" ], [ "01", "100,110,115,118", "020", "VALUE:N1b" ], [ "01", "121", "020", "ERROR:" ], [ "01", "122", "020", "VALUE:N1b" ], [ "01", "123", "020", "VALUE:N1b" ], [ "01", "124", "020", "VALUE:N1b" ], [ "01", "125", "020", "VALUE:N1b" ], [ "01", "128", "020", "ERROR:" ], [ "01", "152", "020", "VALUE:N1b" ], [ "01", "153", "020", "VALUE:N1b" ], [ "01", "155", "020", "VALUE:N1b" ], [ "01", "158", "020", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "020", "VALUE:N2b" ], [ "02-03", "121", "020", "ERROR:" ], [ "02-03", "122", "020", "VALUE:N2b" ], [ "02-03", "123", "020", "VALUE:N2b" ], [ "02-03", "124", "020", "VALUE:N2b" ], [ "02-03", "125", "020", "VALUE:N2b" ], [ "02-03", "128", "020", "ERROR:" ], [ "02-03", "152", "020", "VALUE:N2b" ], [ "02-03", "153", "020", "VALUE:N2b" ], [ "02-03", "155", "020", "VALUE:N2b" ], [ "02-03", "158", "020", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "020", "VALUE:N3" ], [ "04-90", "121", "020", "ERROR:" ], [ "04-90", "122", "020", "VALUE:N3" ], [ "04-90", "123", "020", "VALUE:N3" ], [ "04-90", "124", "020", "VALUE:N3" ], [ "04-90", "125", "020", "VALUE:N3" ], [ "04-90", "128", "020", "ERROR:" ], [ "04-90", "152", "020", "VALUE:N3" ], [ "04-90", "153", "020", "VALUE:N3" ], [ "04-90", "155", "020", "VALUE:N3" ], [ "04-90", "158", "020", "VALUE:N3" ], [ "95", "100,110,115,118", "020", "VALUE:N1b" ], [ "95", "121", "020", "ERROR:" ], [ "95", "122", "020", "VALUE:N1b" ], [ "95", "123", "020", "VALUE:N1b" ], [ "95", "124", "020", "VALUE:N1b" ], [ "95", "125", "020", "VALUE:N1b" ], [ "95", "128", "020", "ERROR:" ], [ "95", "152", "020", "VALUE:N2b" ], [ "95", "153", "020", "VALUE:N2b" ], [ "95", "155", "020", "VALUE:N2b" ], [ "95", "158", "020", "VALUE:N2b" ], [ "97", "100,110,115,118", "020", "VALUE:N1b" ], [ "97", "121", "020", "ERROR:" ], [ "97", "122", "020", "VALUE:N1b" ], [ "97", "123", "020", "VALUE:N1b" ], [ "97", "124", "020", "VALUE:N1b" ], [ "97", "125", "020", "VALUE:N1b" ], [ "97", "128", "020", "ERROR:" ], [ "97", "152", "020", "VALUE:N2b" ], [ "97", "153", "020", "VALUE:N2b" ], [ "97", "155", "020", "VALUE:N2b" ], [ "97", "158", "020", "VALUE:N2b" ], [ "98", "100,110,115,118", "020", "VALUE:N1b" ], [ "98", "121", "020", "ERROR:" ], [ "98", "122", "020", "VALUE:N1b" ], [ "98", "123", "020", "VALUE:N1b" ], [ "98", "124", "020", "VALUE:N1b" ], [ "98", "125", "020", "VALUE:N1b" ], [ "98", "128", "020", "ERROR:" ], [ "98", "152", "020", "VALUE:N2b" ], [ "98", "153", "020", "VALUE:N2b" ], [ "98", "155", "020", "VALUE:N2b" ], [ "98", "158", "020", "VALUE:N2b" ], [ "99", "100,110,115,118", "020", "VALUE:N1b" ], [ "99", "121", "020", "ERROR:" ], [ "99", "122", "020", "VALUE:N1b" ], [ "99", "123", "020", "VALUE:N1b" ], [ "99", "124", "020", "VALUE:N1b" ], [ "99", "125", "020", "VALUE:N1b" ], [ "99", "128", "020", "ERROR:" ], [ "99", "152", "020", "VALUE:N2b" ], [ "99", "153", "020", "VALUE:N2b" ], [ "99", "155", "020", "VALUE:N2b" ], [ "99", "158", "020", "VALUE:N2b" ], [ "00", "100,110,115,118", "043", "VALUE:N1b" ], [ "00", "121", "043", "ERROR:" ], [ "00", "122", "043", "VALUE:N1b" ], [ "00", "123", "043", "VALUE:N1b" ], [ "00", "124", "043", "VALUE:N1b" ], [ "00", "125", "043", "VALUE:N1b" ], [ "00", "128", "043", "ERROR:" ], [ "00", "152", "043", "VALUE:N2b" ], [ "00", "153", "043", "VALUE:N2b" ], [ "00", "155", "043", "VALUE:N2b" ], [ "00", "158", "043", "VALUE:N2b" ], [ "01", "100,110,115,118", "043", "VALUE:N1b" ], [ "01", "121", "043", "ERROR:" ], [ "01", "122", "043", "VALUE:N1b" ], [ "01", "123", "043", "VALUE:N1b" ], [ "01", "124", "043", "VALUE:N1b" ], [ "01", "125", "043", "VALUE:N1b" ], [ "01", "128", "043", "ERROR:" ], [ "01", "152", "043", "VALUE:N1b" ], [ "01", "153", "043", "VALUE:N1b" ], [ "01", "155", "043", "VALUE:N1b" ], [ "01", "158", "043", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "043", "VALUE:N2b" ], [ "02-03", "121", "043", "ERROR:" ], [ "02-03", "122", "043", "VALUE:N2b" ], [ "02-03", "123", "043", "VALUE:N2b" ], [ "02-03", "124", "043", "VALUE:N2b" ], [ "02-03", "125", "043", "VALUE:N2b" ], [ "02-03", "128", "043", "ERROR:" ], [ "02-03", "152", "043", "VALUE:N2b" ], [ "02-03", "153", "043", "VALUE:N2b" ], [ "02-03", "155", "043", "VALUE:N2b" ], [ "02-03", "158", "043", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "043", "VALUE:N3" ], [ "04-90", "121", "043", "ERROR:" ], [ "04-90", "122", "043", "VALUE:N3" ], [ "04-90", "123", "043", "VALUE:N3" ], [ "04-90", "124", "043", "VALUE:N3" ], [ "04-90", "125", "043", "VALUE:N3" ], [ "04-90", "128", "043", "ERROR:" ], [ "04-90", "152", "043", "VALUE:N3" ], [ "04-90", "153", "043", "VALUE:N3" ], [ "04-90", "155", "043", "VALUE:N3" ], [ "04-90", "158", "043", "VALUE:N3" ], [ "95", "100,110,115,118", "043", "VALUE:N1b" ], [ "95", "121", "043", "ERROR:" ], [ "95", "122", "043", "VALUE:N1b" ], [ "95", "123", "043", "VALUE:N1b" ], [ "95", "124", "043", "VALUE:N1b" ], [ "95", "125", "043", "VALUE:N1b" ], [ "95", "128", "043", "ERROR:" ], [ "95", "152", "043", "VALUE:N2b" ], [ "95", "153", "043", "VALUE:N2b" ], [ "95", "155", "043", "VALUE:N2b" ], [ "95", "158", "043", "VALUE:N2b" ], [ "97", "100,110,115,118", "043", "VALUE:N1b" ], [ "97", "121", "043", "ERROR:" ], [ "97", "122", "043", "VALUE:N1b" ], [ "97", "123", "043", "VALUE:N1b" ], [ "97", "124", "043", "VALUE:N1b" ], [ "97", "125", "043", "VALUE:N1b" ], [ "97", "128", "043", "ERROR:" ], [ "97", "152", "043", "VALUE:N2b" ], [ "97", "153", "043", "VALUE:N2b" ], [ "97", "155", "043", "VALUE:N2b" ], [ "97", "158", "043", "VALUE:N2b" ], [ "98", "100,110,115,118", "043", "VALUE:N1b" ], [ "98", "121", "043", "ERROR:" ], [ "98", "122", "043", "VALUE:N1b" ], [ "98", "123", "043", "VALUE:N1b" ], [ "98", "124", "043", "VALUE:N1b" ], [ "98", "125", "043", "VALUE:N1b" ], [ "98", "128", "043", "ERROR:" ], [ "98", "152", "043", "VALUE:N2b" ], [ "98", "153", "043", "VALUE:N2b" ], [ "98", "155", "043", "VALUE:N2b" ], [ "98", "158", "043", "VALUE:N2b" ], [ "99", "100,110,115,118", "043", "VALUE:N1b" ], [ "99", "121", "043", "ERROR:" ], [ "99", "122", "043", "VALUE:N1b" ], [ "99", "123", "043", "VALUE:N1b" ], [ "99", "124", "043", "VALUE:N1b" ], [ "99", "125", "043", "VALUE:N1b" ], [ "99", "128", "043", "ERROR:" ], [ "99", "152", "043", "VALUE:N2b" ], [ "99", "153", "043", "VALUE:N2b" ], [ "99", "155", "043", "VALUE:N2b" ], [ "99", "158", "043", "VALUE:N2b" ], [ "00", "100,110,115,118", "045", "VALUE:N1b" ], [ "00", "121", "045", "ERROR:" ], [ "00", "122", "045", "VALUE:N1b" ], [ "00", "123", "045", "VALUE:N1b" ], [ "00", "124", "045", "VALUE:N1b" ], [ "00", "125", "045", "VALUE:N1b" ], [ "00", "128", "045", "ERROR:" ], [ "00", "152", "045", "VALUE:N2b" ], [ "00", "153", "045", "VALUE:N2b" ], [ "00", "155", "045", "VALUE:N2b" ], [ "00", "158", "045", "VALUE:N2b" ], [ "01", "100,110,115,118", "045", "VALUE:N1b" ], [ "01", "121", "045", "ERROR:" ], [ "01", "122", "045", "VALUE:N1b" ], [ "01", "123", "045", "VALUE:N1b" ], [ "01", "124", "045", "VALUE:N1b" ], [ "01", "125", "045", "VALUE:N1b" ], [ "01", "128", "045", "ERROR:" ], [ "01", "152", "045", "VALUE:N1b" ], [ "01", "153", "045", "VALUE:N1b" ], [ "01", "155", "045", "VALUE:N1b" ], [ "01", "158", "045", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "045", "VALUE:N2b" ], [ "02-03", "121", "045", "ERROR:" ], [ "02-03", "122", "045", "VALUE:N2b" ], [ "02-03", "123", "045", "VALUE:N2b" ], [ "02-03", "124", "045", "VALUE:N2b" ], [ "02-03", "125", "045", "VALUE:N2b" ], [ "02-03", "128", "045", "ERROR:" ], [ "02-03", "152", "045", "VALUE:N2b" ], [ "02-03", "153", "045", "VALUE:N2b" ], [ "02-03", "155", "045", "VALUE:N2b" ], [ "02-03", "158", "045", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "045", "VALUE:N3" ], [ "04-90", "121", "045", "ERROR:" ], [ "04-90", "122", "045", "VALUE:N3" ], [ "04-90", "123", "045", "VALUE:N3" ], [ "04-90", "124", "045", "VALUE:N3" ], [ "04-90", "125", "045", "VALUE:N3" ], [ "04-90", "128", "045", "ERROR:" ], [ "04-90", "152", "045", "VALUE:N3" ], [ "04-90", "153", "045", "VALUE:N3" ], [ "04-90", "155", "045", "VALUE:N3" ], [ "04-90", "158", "045", "VALUE:N3" ], [ "95", "100,110,115,118", "045", "VALUE:N1b" ], [ "95", "121", "045", "ERROR:" ], [ "95", "122", "045", "VALUE:N1b" ], [ "95", "123", "045", "VALUE:N1b" ], [ "95", "124", "045", "VALUE:N1b" ], [ "95", "125", "045", "VALUE:N1b" ], [ "95", "128", "045", "ERROR:" ], [ "95", "152", "045", "VALUE:N2b" ], [ "95", "153", "045", "VALUE:N2b" ], [ "95", "155", "045", "VALUE:N2b" ], [ "95", "158", "045", "VALUE:N2b" ], [ "97", "100,110,115,118", "045", "VALUE:N2b" ], [ "97", "121", "045", "ERROR:" ], [ "97", "122", "045", "VALUE:N2b" ], [ "97", "123", "045", "VALUE:N2b" ], [ "97", "124", "045", "VALUE:N2b" ], [ "97", "125", "045", "VALUE:N1b" ], [ "97", "128", "045", "ERROR:" ], [ "97", "152", "045", "VALUE:N2b" ], [ "97", "153", "045", "VALUE:N2b" ], [ "97", "155", "045", "VALUE:N2b" ], [ "97", "158", "045", "VALUE:N2b" ], [ "98", "100,110,115,118", "045", "VALUE:N1b" ], [ "98", "121", "045", "ERROR:" ], [ "98", "122", "045", "VALUE:N1b" ], [ "98", "123", "045", "VALUE:N1b" ], [ "98", "124", "045", "VALUE:N1b" ], [ "98", "125", "045", "VALUE:N1b" ], [ "98", "128", "045", "ERROR:" ], [ "98", "152", "045", "VALUE:N2b" ], [ "98", "153", "045", "VALUE:N2b" ], [ "98", "155", "045", "VALUE:N2b" ], [ "98", "158", "045", "VALUE:N2b" ], [ "99", "100,110,115,118", "045", "VALUE:N2b" ], [ "99", "121", "045", "ERROR:" ], [ "99", "122", "045", "VALUE:N2b" ], [ "99", "123", "045", "VALUE:N2b" ], [ "99", "124", "045", "VALUE:N2b" ], [ "99", "125", "045", "VALUE:N2b" ], [ "99", "128", "045", "ERROR:" ], [ "99", "152", "045", "VALUE:N2b" ], [ "99", "153", "045", "VALUE:N2b" ], [ "99", "155", "045", "VALUE:N2b" ], [ "99", "158", "045", "VALUE:N2b" ], [ "00", "100,110,115,118", "048", "VALUE:N1b" ], [ "00", "121", "048", "ERROR:" ], [ "00", "122", "048", "VALUE:N1b" ], [ "00", "123", "048", "VALUE:N1b" ], [ "00", "124", "048", "VALUE:N1b" ], [ "00", "125", "048", "VALUE:N1b" ], [ "00", "128", "048", "ERROR:" ], [ "00", "152", "048", "VALUE:N2b" ], [ "00", "153", "048", "VALUE:N2b" ], [ "00", "155", "048", "VALUE:N2b" ], [ "00", "158", "048", "VALUE:N2b" ], [ "01", "100,110,115,118", "048", "VALUE:N1b" ], [ "01", "121", "048", "ERROR:" ], [ "01", "122", "048", "VALUE:N1b" ], [ "01", "123", "048", "VALUE:N1b" ], [ "01", "124", "048", "VALUE:N1b" ], [ "01", "125", "048", "VALUE:N1b" ], [ "01", "128", "048", "ERROR:" ], [ "01", "152", "048", "VALUE:N1b" ], [ "01", "153", "048", "VALUE:N1b" ], [ "01", "155", "048", "VALUE:N1b" ], [ "01", "158", "048", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "048", "VALUE:N2b" ], [ "02-03", "121", "048", "ERROR:" ], [ "02-03", "122", "048", "VALUE:N2b" ], [ "02-03", "123", "048", "VALUE:N2b" ], [ "02-03", "124", "048", "VALUE:N2b" ], [ "02-03", "125", "048", "VALUE:N2b" ], [ "02-03", "128", "048", "ERROR:" ], [ "02-03", "152", "048", "VALUE:N2b" ], [ "02-03", "153", "048", "VALUE:N2b" ], [ "02-03", "155", "048", "VALUE:N2b" ], [ "02-03", "158", "048", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "048", "VALUE:N3" ], [ "04-90", "121", "048", "ERROR:" ], [ "04-90", "122", "048", "VALUE:N3" ], [ "04-90", "123", "048", "VALUE:N3" ], [ "04-90", "124", "048", "VALUE:N3" ], [ "04-90", "125", "048", "VALUE:N3" ], [ "04-90", "128", "048", "ERROR:" ], [ "04-90", "152", "048", "VALUE:N3" ], [ "04-90", "153", "048", "VALUE:N3" ], [ "04-90", "155", "048", "VALUE:N3" ], [ "04-90", "158", "048", "VALUE:N3" ], [ "95", "100,110,115,118", "048", "VALUE:N1b" ], [ "95", "121", "048", "ERROR:" ], [ "95", "122", "048", "VALUE:N1b" ], [ "95", "123", "048", "VALUE:N1b" ], [ "95", "124", "048", "VALUE:N1b" ], [ "95", "125", "048", "VALUE:N1b" ], [ "95", "128", "048", "ERROR:" ], [ "95", "152", "048", "VALUE:N2b" ], [ "95", "153", "048", "VALUE:N2b" ], [ "95", "155", "048", "VALUE:N2b" ], [ "95", "158", "048", "VALUE:N2b" ], [ "97", "100,110,115,118", "048", "VALUE:N3" ], [ "97", "121", "048", "ERROR:" ], [ "97", "122", "048", "VALUE:N3" ], [ "97", "123", "048", "VALUE:N3" ], [ "97", "124", "048", "VALUE:N3" ], [ "97", "125", "048", "VALUE:N1b" ], [ "97", "128", "048", "ERROR:" ], [ "97", "152", "048", "VALUE:N2b" ], [ "97", "153", "048", "VALUE:N2b" ], [ "97", "155", "048", "VALUE:N2b" ], [ "97", "158", "048", "VALUE:N2b" ], [ "98", "100,110,115,118", "048", "VALUE:N1b" ], [ "98", "121", "048", "ERROR:" ], [ "98", "122", "048", "VALUE:N1b" ], [ "98", "123", "048", "VALUE:N1b" ], [ "98", "124", "048", "VALUE:N1b" ], [ "98", "125", "048", "VALUE:N1b" ], [ "98", "128", "048", "ERROR:" ], [ "98", "152", "048", "VALUE:N2b" ], [ "98", "153", "048", "VALUE:N2b" ], [ "98", "155", "048", "VALUE:N2b" ], [ "98", "158", "048", "VALUE:N2b" ], [ "99", "100,110,115,118", "048", "VALUE:N3" ], [ "99", "121", "048", "ERROR:" ], [ "99", "122", "048", "VALUE:N3" ], [ "99", "123", "048", "VALUE:N3" ], [ "99", "124", "048", "VALUE:N3" ], [ "99", "125", "048", "VALUE:N3" ], [ "99", "128", "048", "ERROR:" ], [ "99", "152", "048", "VALUE:N3" ], [ "99", "153", "048", "VALUE:N3" ], [ "99", "155", "048", "VALUE:N3" ], [ "99", "158", "048", "VALUE:N3" ], [ "00", "100,110,115,118", "050", "ERROR:" ], [ "00", "121", "050", "ERROR:" ], [ "00", "122", "050", "VALUE:N1b" ], [ "00", "123", "050", "VALUE:N1b" ], [ "00", "124", "050", "VALUE:N1b" ], [ "00", "125", "050", "VALUE:N1b" ], [ "00", "128", "050", "ERROR:" ], [ "00", "152", "050", "VALUE:N2b" ], [ "00", "153", "050", "VALUE:N2b" ], [ "00", "155", "050", "VALUE:N2b" ], [ "00", "158", "050", "VALUE:N2b" ], [ "01", "100,110,115,118", "050", "VALUE:N1b" ], [ "01", "121", "050", "ERROR:" ], [ "01", "122", "050", "VALUE:N1b" ], [ "01", "123", "050", "VALUE:N1b" ], [ "01", "124", "050", "VALUE:N1b" ], [ "01", "125", "050", "VALUE:N1b" ], [ "01", "128", "050", "ERROR:" ], [ "01", "152", "050", "VALUE:N1b" ], [ "01", "153", "050", "VALUE:N1b" ], [ "01", "155", "050", "VALUE:N1b" ], [ "01", "158", "050", "VALUE:N1b" ], [ "02-03", "100,110,115,118", "050", "VALUE:N2b" ], [ "02-03", "121", "050", "ERROR:" ], [ "02-03", "122", "050", "VALUE:N2b" ], [ "02-03", "123", "050", "VALUE:N2b" ], [ "02-03", "124", "050", "ERROR:" ], [ "02-03", "125", "050", "VALUE:N2b" ], [ "02-03", "128", "050", "ERROR:" ], [ "02-03", "152", "050", "VALUE:N2b" ], [ "02-03", "153", "050", "VALUE:N2b" ], [ "02-03", "155", "050", "VALUE:N2b" ], [ "02-03", "158", "050", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "050", "VALUE:N3" ], [ "04-90", "121", "050", "ERROR:" ], [ "04-90", "122", "050", "VALUE:N3" ], [ "04-90", "123", "050", "VALUE:N3" ], [ "04-90", "124", "050", "ERROR:" ], [ "04-90", "125", "050", "VALUE:N3" ], [ "04-90", "128", "050", "ERROR:" ], [ "04-90", "152", "050", "VALUE:N3" ], [ "04-90", "153", "050", "VALUE:N3" ], [ "04-90", "155", "050", "VALUE:N3" ], [ "04-90", "158", "050", "VALUE:N3" ], [ "95", "100,110,115,118", "050", "VALUE:N1b" ], [ "95", "121", "050", "ERROR:" ], [ "95", "122", "050", "VALUE:N1b" ], [ "95", "123", "050", "VALUE:N1b" ], [ "95", "124", "050", "VALUE:N1b" ], [ "95", "125", "050", "VALUE:N1b" ], [ "95", "128", "050", "ERROR:" ], [ "95", "152", "050", "VALUE:N2b" ], [ "95", "153", "050", "VALUE:N2b" ], [ "95", "155", "050", "VALUE:N2b" ], [ "95", "158", "050", "VALUE:N2b" ], [ "97", "100,110,115,118", "050", "VALUE:N1b" ], [ "97", "121", "050", "ERROR:" ], [ "97", "122", "050", "VALUE:N1b" ], [ "97", "123", "050", "VALUE:N1b" ], [ "97", "124", "050", "VALUE:N1b" ], [ "97", "125", "050", "VALUE:N1b" ], [ "97", "128", "050", "ERROR:" ], [ "97", "152", "050", "VALUE:N2b" ], [ "97", "153", "050", "VALUE:N2b" ], [ "97", "155", "050", "VALUE:N2b" ], [ "97", "158", "050", "VALUE:N2b" ], [ "98", "100,110,115,118", "050", "VALUE:N1b" ], [ "98", "121", "050", "ERROR:" ], [ "98", "122", "050", "VALUE:N1b" ], [ "98", "123", "050", "VALUE:N1b" ], [ "98", "124", "050", "ERROR:" ], [ "98", "125", "050", "VALUE:N1b" ], [ "98", "128", "050", "ERROR:" ], [ "98", "152", "050", "VALUE:N2b" ], [ "98", "153", "050", "VALUE:N2b" ], [ "98", "155", "050", "VALUE:N2b" ], [ "98", "158", "050", "VALUE:N2b" ], [ "99", "100,110,115,118", "050", "VALUE:N1b" ], [ "99", "121", "050", "ERROR:" ], [ "99", "122", "050", "VALUE:N1b" ], [ "99", "123", "050", "VALUE:N1b" ], [ "99", "124", "050", "VALUE:N1b" ], [ "99", "125", "050", "VALUE:N1b" ], [ "99", "128", "050", "ERROR:" ], [ "99", "152", "050", "VALUE:N2b" ], [ "99", "153", "050", "VALUE:N2b" ], [ "99", "155", "050", "VALUE:N2b" ], [ "99", "158", "050", "VALUE:N2b" ], [ "00", "100,110,115,118", "100", "ERROR:" ], [ "00", "121", "100", "ERROR:" ], [ "00", "122", "100", "ERROR:" ], [ "00", "123", "100", "ERROR:" ], [ "00", "124", "100", "ERROR:" ], [ "00", "125", "100", "ERROR:" ], [ "00", "128", "100", "ERROR:" ], [ "00", "152", "100", "ERROR:" ], [ "00", "153", "100", "ERROR:" ], [ "00", "155", "100", "ERROR:" ], [ "00", "158", "100", "ERROR:" ], [ "01", "100,110,115,118", "100", "ERROR:" ], [ "01", "121", "100", "ERROR:" ], [ "01", "122", "100", "ERROR:" ], [ "01", "123", "100", "ERROR:" ], [ "01", "124", "100", "ERROR:" ], [ "01", "125", "100", "ERROR:" ], [ "01", "128", "100", "ERROR:" ], [ "01", "152", "100", "ERROR:" ], [ "01", "153", "100", "ERROR:" ], [ "01", "155", "100", "ERROR:" ], [ "01", "158", "100", "ERROR:" ], [ "02-03", "100,110,115,118", "100", "ERROR:" ], [ "02-03", "121", "100", "ERROR:" ], [ "02-03", "122", "100", "ERROR:" ], [ "02-03", "123", "100", "ERROR:" ], [ "02-03", "124", "100", "ERROR:" ], [ "02-03", "125", "100", "ERROR:" ], [ "02-03", "128", "100", "ERROR:" ], [ "02-03", "152", "100", "ERROR:" ], [ "02-03", "153", "100", "ERROR:" ], [ "02-03", "155", "100", "ERROR:" ], [ "02-03", "158", "100", "ERROR:" ], [ "04-90", "100,110,115,118", "100", "ERROR:" ], [ "04-90", "121", "100", "ERROR:" ], [ "04-90", "122", "100", "ERROR:" ], [ "04-90", "123", "100", "ERROR:" ], [ "04-90", "124", "100", "ERROR:" ], [ "04-90", "125", "100", "ERROR:" ], [ "04-90", "128", "100", "ERROR:" ], [ "04-90", "152", "100", "ERROR:" ], [ "04-90", "153", "100", "ERROR:" ], [ "04-90", "155", "100", "ERROR:" ], [ "04-90", "158", "100", "ERROR:" ], [ "95", "100,110,115,118", "100", "ERROR:" ], [ "95", "121", "100", "ERROR:" ], [ "95", "122", "100", "ERROR:" ], [ "95", "123", "100", "ERROR:" ], [ "95", "124", "100", "ERROR:" ], [ "95", "125", "100", "ERROR:" ], [ "95", "128", "100", "ERROR:" ], [ "95", "152", "100", "ERROR:" ], [ "95", "153", "100", "ERROR:" ], [ "95", "155", "100", "ERROR:" ], [ "95", "158", "100", "ERROR:" ], [ "97", "100,110,115,118", "100", "ERROR:" ], [ "97", "121", "100", "ERROR:" ], [ "97", "122", "100", "ERROR:" ], [ "97", "123", "100", "ERROR:" ], [ "97", "124", "100", "ERROR:" ], [ "97", "125", "100", "ERROR:" ], [ "97", "128", "100", "ERROR:" ], [ "97", "152", "100", "ERROR:" ], [ "97", "153", "100", "ERROR:" ], [ "97", "155", "100", "ERROR:" ], [ "97", "158", "100", "ERROR:" ], [ "98", "100,110,115,118", "100", "ERROR:" ], [ "98", "121", "100", "ERROR:" ], [ "98", "122", "100", "ERROR:" ], [ "98", "123", "100", "ERROR:" ], [ "98", "124", "100", "ERROR:" ], [ "98", "125", "100", "ERROR:" ], [ "98", "128", "100", "ERROR:" ], [ "98", "152", "100", "ERROR:" ], [ "98", "153", "100", "ERROR:" ], [ "98", "155", "100", "ERROR:" ], [ "98", "158", "100", "ERROR:" ], [ "99", "100,110,115,118", "100", "ERROR:" ], [ "99", "121", "100", "ERROR:" ], [ "99", "122", "100", "ERROR:" ], [ "99", "123", "100", "ERROR:" ], [ "99", "124", "100", "ERROR:" ], [ "99", "125", "100", "ERROR:" ], [ "99", "128", "100", "ERROR:" ], [ "99", "152", "100", "ERROR:" ], [ "99", "153", "100", "ERROR:" ], [ "99", "155", "100", "ERROR:" ], [ "99", "158", "100", "ERROR:" ], [ "00", "100,110,115,118", "150", "VALUE:N1b" ], [ "00", "121", "150", "ERROR:" ], [ "00", "122", "150", "VALUE:N1b" ], [ "00", "123", "150", "VALUE:N1b" ], [ "00", "124", "150", "VALUE:N1b" ], [ "00", "125", "150", "VALUE:N1b" ], [ "00", "128", "150", "ERROR:" ], [ "00", "152", "150", "VALUE:N2b" ], [ "00", "153", "150", "VALUE:N2b" ], [ "00", "155", "150", "VALUE:N2b" ], [ "00", "158", "150", "VALUE:N2b" ], [ "01", "100,110,115,118", "150", "VALUE:N1b" ], [ "01", "121", "150", "ERROR:" ], [ "01", "122", "150", "VALUE:N1b" ], [ "01", "123", "150", "VALUE:N1b" ], [ "01", "124", "150", "VALUE:N1b" ], [ "01", "125", "150", "VALUE:N1b" ], [ "01", "128", "150", "ERROR:" ], [ "01", "152", "150", "VALUE:N2b" ], [ "01", "153", "150", "VALUE:N2b" ], [ "01", "155", "150", "VALUE:N2b" ], [ "01", "158", "150", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "150", "VALUE:N2b" ], [ "02-03", "121", "150", "ERROR:" ], [ "02-03", "122", "150", "VALUE:N2b" ], [ "02-03", "123", "150", "VALUE:N2b" ], [ "02-03", "124", "150", "VALUE:N2b" ], [ "02-03", "125", "150", "VALUE:N2b" ], [ "02-03", "128", "150", "ERROR:" ], [ "02-03", "152", "150", "VALUE:N2b" ], [ "02-03", "153", "150", "VALUE:N2b" ], [ "02-03", "155", "150", "VALUE:N2b" ], [ "02-03", "158", "150", "VALUE:N2b" ], [ "04-90", "100,110,115,118", "150", "VALUE:N3" ], [ "04-90", "121", "150", "ERROR:" ], [ "04-90", "122", "150", "VALUE:N3" ], [ "04-90", "123", "150", "VALUE:N3" ], [ "04-90", "124", "150", "VALUE:N3" ], [ "04-90", "125", "150", "VALUE:N3" ], [ "04-90", "128", "150", "ERROR:" ], [ "04-90", "152", "150", "VALUE:N3" ], [ "04-90", "153", "150", "VALUE:N3" ], [ "04-90", "155", "150", "VALUE:N3" ], [ "04-90", "158", "150", "VALUE:N3" ], [ "95", "100,110,115,118", "150", "VALUE:N1b" ], [ "95", "121", "150", "ERROR:" ], [ "95", "122", "150", "VALUE:N1b" ], [ "95", "123", "150", "VALUE:N1b" ], [ "95", "124", "150", "VALUE:N1b" ], [ "95", "125", "150", "VALUE:N1b" ], [ "95", "128", "150", "ERROR:" ], [ "95", "152", "150", "VALUE:N2b" ], [ "95", "153", "150", "VALUE:N2b" ], [ "95", "155", "150", "VALUE:N2b" ], [ "95", "158", "150", "VALUE:N2b" ], [ "97", "100,110,115,118", "150", "VALUE:N1b" ], [ "97", "121", "150", "ERROR:" ], [ "97", "122", "150", "VALUE:N1b" ], [ "97", "123", "150", "VALUE:N1b" ], [ "97", "124", "150", "VALUE:N1b" ], [ "97", "125", "150", "VALUE:N1b" ], [ "97", "128", "150", "ERROR:" ], [ "97", "152", "150", "VALUE:N2b" ], [ "97", "153", "150", "VALUE:N2b" ], [ "97", "155", "150", "VALUE:N2b" ], [ "97", "158", "150", "VALUE:N2b" ], [ "98", "100,110,115,118", "150", "VALUE:N1b" ], [ "98", "121", "150", "ERROR:" ], [ "98", "122", "150", "VALUE:N1b" ], [ "98", "123", "150", "VALUE:N1b" ], [ "98", "124", "150", "VALUE:N1b" ], [ "98", "125", "150", "VALUE:N1b" ], [ "98", "128", "150", "ERROR:" ], [ "98", "152", "150", "VALUE:N2b" ], [ "98", "153", "150", "VALUE:N2b" ], [ "98", "155", "150", "VALUE:N2b" ], [ "98", "158", "150", "VALUE:N2b" ], [ "99", "100,110,115,118", "150", "VALUE:N1b" ], [ "99", "121", "150", "ERROR:" ], [ "99", "122", "150", "VALUE:N1b" ], [ "99", "123", "150", "VALUE:N1b" ], [ "99", "124", "150", "VALUE:N1b" ], [ "99", "125", "150", "VALUE:N1b" ], [ "99", "128", "150", "ERROR:" ], [ "99", "152", "150", "VALUE:N2b" ], [ "99", "153", "150", "VALUE:N2b" ], [ "99", "155", "150", "VALUE:N2b" ], [ "99", "158", "150", "VALUE:N2b" ], [ "00", "100,110,115,118", "988", "ERROR:" ], [ "00", "121", "988", "ERROR:" ], [ "00", "122", "988", "ERROR:" ], [ "00", "123", "988", "ERROR:" ], [ "00", "124", "988", "ERROR:" ], [ "00", "125", "988", "ERROR:" ], [ "00", "128", "988", "ERROR:" ], [ "00", "152", "988", "ERROR:" ], [ "00", "153", "988", "ERROR:" ], [ "00", "155", "988", "ERROR:" ], [ "00", "158", "988", "ERROR:" ], [ "01", "100,110,115,118", "988", "ERROR:" ], [ "01", "121", "988", "ERROR:" ], [ "01", "122", "988", "ERROR:" ], [ "01", "123", "988", "ERROR:" ], [ "01", "124", "988", "ERROR:" ], [ "01", "125", "988", "ERROR:" ], [ "01", "128", "988", "ERROR:" ], [ "01", "152", "988", "ERROR:" ], [ "01", "153", "988", "ERROR:" ], [ "01", "155", "988", "ERROR:" ], [ "01", "158", "988", "ERROR:" ], [ "02-03", "100,110,115,118", "988", "ERROR:" ], [ "02-03", "121", "988", "ERROR:" ], [ "02-03", "122", "988", "ERROR:" ], [ "02-03", "123", "988", "ERROR:" ], [ "02-03", "124", "988", "ERROR:" ], [ "02-03", "125", "988", "ERROR:" ], [ "02-03", "128", "988", "ERROR:" ], [ "02-03", "152", "988", "ERROR:" ], [ "02-03", "153", "988", "ERROR:" ], [ "02-03", "155", "988", "ERROR:" ], [ "02-03", "158", "988", "ERROR:" ], [ "04-90", "100,110,115,118", "988", "ERROR:" ], [ "04-90", "121", "988", "ERROR:" ], [ "04-90", "122", "988", "ERROR:" ], [ "04-90", "123", "988", "ERROR:" ], [ "04-90", "124", "988", "ERROR:" ], [ "04-90", "125", "988", "ERROR:" ], [ "04-90", "128", "988", "ERROR:" ], [ "04-90", "152", "988", "ERROR:" ], [ "04-90", "153", "988", "ERROR:" ], [ "04-90", "155", "988", "ERROR:" ], [ "04-90", "158", "988", "ERROR:" ], [ "95", "100,110,115,118", "988", "ERROR:" ], [ "95", "121", "988", "ERROR:" ], [ "95", "122", "988", "ERROR:" ], [ "95", "123", "988", "ERROR:" ], [ "95", "124", "988", "ERROR:" ], [ "95", "125", "988", "ERROR:" ], [ "95", "128", "988", "ERROR:" ], [ "95", "152", "988", "ERROR:" ], [ "95", "153", "988", "ERROR:" ], [ "95", "155", "988", "ERROR:" ], [ "95", "158", "988", "ERROR:" ], [ "97", "100,110,115,118", "988", "ERROR:" ], [ "97", "121", "988", "ERROR:" ], [ "97", "122", "988", "ERROR:" ], [ "97", "123", "988", "ERROR:" ], [ "97", "124", "988", "ERROR:" ], [ "97", "125", "988", "ERROR:" ], [ "97", "128", "988", "ERROR:" ], [ "97", "152", "988", "ERROR:" ], [ "97", "153", "988", "ERROR:" ], [ "97", "155", "988", "ERROR:" ], [ "97", "158", "988", "ERROR:" ], [ "98", "100,110,115,118", "988", "ERROR:" ], [ "98", "121", "988", "ERROR:" ], [ "98", "122", "988", "ERROR:" ], [ "98", "123", "988", "ERROR:" ], [ "98", "124", "988", "ERROR:" ], [ "98", "125", "988", "ERROR:" ], [ "98", "128", "988", "ERROR:" ], [ "98", "152", "988", "ERROR:" ], [ "98", "153", "988", "ERROR:" ], [ "98", "155", "988", "ERROR:" ], [ "98", "158", "988", "ERROR:" ], [ "99", "100,110,115,118", "988", "ERROR:" ], [ "99", "121", "988", "ERROR:" ], [ "99", "122", "988", "ERROR:" ], [ "99", "123", "988", "ERROR:" ], [ "99", "124", "988", "ERROR:" ], [ "99", "125", "988", "ERROR:" ], [ "99", "128", "988", "ERROR:" ], [ "99", "152", "988", "ERROR:" ], [ "99", "153", "988", "ERROR:" ], [ "99", "155", "988", "ERROR:" ], [ "99", "158", "988", "ERROR:" ], [ "00", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "00", "121", "999", "ERROR:" ], [ "00", "122", "999", "VALUE:N1a" ], [ "00", "123", "999", "VALUE:N1b" ], [ "00", "124", "999", "VALUE:N1NOS" ], [ "00", "125", "999", "VALUE:N1NOS" ], [ "00", "128", "999", "ERROR:" ], [ "00", "152", "999", "VALUE:N2a" ], [ "00", "153", "999", "VALUE:N2b" ], [ "00", "155", "999", "VALUE:N2NOS" ], [ "00", "158", "999", "VALUE:N2NOS" ], [ "01", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "01", "121", "999", "ERROR:" ], [ "01", "122", "999", "VALUE:N1a" ], [ "01", "123", "999", "VALUE:N1b" ], [ "01", "124", "999", "VALUE:N1NOS" ], [ "01", "125", "999", "VALUE:N1NOS" ], [ "01", "128", "999", "ERROR:" ], [ "01", "152", "999", "VALUE:N2a" ], [ "01", "153", "999", "VALUE:N2b" ], [ "01", "155", "999", "VALUE:N2NOS" ], [ "01", "158", "999", "VALUE:N2NOS" ], [ "02-03", "100,110,115,118", "999", "VALUE:N2NOS" ], [ "02-03", "121", "999", "ERROR:" ], [ "02-03", "122", "999", "VALUE:N2a" ], [ "02-03", "123", "999", "VALUE:N2b" ], [ "02-03", "124", "999", "VALUE:N2NOS" ], [ "02-03", "125", "999", "VALUE:N2NOS" ], [ "02-03", "128", "999", "ERROR:" ], [ "02-03", "152", "999", "VALUE:N2a" ], [ "02-03", "153", "999", "VALUE:N2b" ], [ "02-03", "155", "999", "VALUE:N2NOS" ], [ "02-03", "158", "999", "VALUE:N2NOS" ], [ "04-90", "100,110,115,118", "999", "VALUE:N3" ], [ "04-90", "121", "999", "ERROR:" ], [ "04-90", "122", "999", "VALUE:N3" ], [ "04-90", "123", "999", "VALUE:N3" ], [ "04-90", "124", "999", "VALUE:N3" ], [ "04-90", "125", "999", "VALUE:N3" ], [ "04-90", "128", "999", "ERROR:" ], [ "04-90", "152", "999", "VALUE:N3" ], [ "04-90", "153", "999", "VALUE:N3" ], [ "04-90", "155", "999", "VALUE:N3" ], [ "04-90", "158", "999", "VALUE:N3" ], [ "95", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "95", "121", "999", "ERROR:" ], [ "95", "122", "999", "VALUE:N1a" ], [ "95", "123", "999", "VALUE:N1b" ], [ "95", "124", "999", "VALUE:N1NOS" ], [ "95", "125", "999", "VALUE:N1NOS" ], [ "95", "128", "999", "ERROR:" ], [ "95", "152", "999", "VALUE:N2a" ], [ "95", "153", "999", "VALUE:N2b" ], [ "95", "155", "999", "VALUE:N2NOS" ], [ "95", "158", "999", "VALUE:N2NOS" ], [ "97", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "97", "121", "999", "ERROR:" ], [ "97", "122", "999", "VALUE:N1a" ], [ "97", "123", "999", "VALUE:N1b" ], [ "97", "124", "999", "VALUE:N1NOS" ], [ "97", "125", "999", "VALUE:N1NOS" ], [ "97", "128", "999", "ERROR:" ], [ "97", "152", "999", "VALUE:N2a" ], [ "97", "153", "999", "VALUE:N2b" ], [ "97", "155", "999", "VALUE:N2NOS" ], [ "97", "158", "999", "VALUE:N2NOS" ], [ "98", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "98", "121", "999", "ERROR:" ], [ "98", "122", "999", "VALUE:N1a" ], [ "98", "123", "999", "VALUE:N1b" ], [ "98", "124", "999", "VALUE:N1NOS" ], [ "98", "125", "999", "VALUE:N1NOS" ], [ "98", "128", "999", "ERROR:" ], [ "98", "152", "999", "VALUE:N2a" ], [ "98", "153", "999", "VALUE:N2b" ], [ "98", "155", "999", "VALUE:N2NOS" ], [ "98", "158", "999", "VALUE:N2NOS" ], [ "99", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "99", "121", "999", "ERROR:" ], [ "99", "122", "999", "VALUE:N1a" ], [ "99", "123", "999", "VALUE:N1b" ], [ "99", "124", "999", "VALUE:N1NOS" ], [ "99", "125", "999", "VALUE:N1NOS" ], [ "99", "128", "999", "ERROR:" ], [ "99", "152", "999", "VALUE:N2a" ], [ "99", "153", "999", "VALUE:N2b" ], [ "99", "155", "999", "VALUE:N2NOS" ], [ "99", "158", "999", "VALUE:N2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_pathologic_eval_ajcc7_xli.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_pathologic_eval_ajcc7_xli.json
deleted file mode 100644
index ebc40ee71..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodeand_nodal_status_pathologic_eval_ajcc7_xli.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodeand_nodal_status_pathologic_eval_ajcc7_xli",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Node and Nodal Status Pathologic Eval AJCC7",
- "title" : "Lymph Node and Nodal Status Pathologic Eval AJCC 7 Table",
- "notes" : "**Note**: When nodes are pathologically evaluated (CS Lymph Nodes Eval = 2,3,6,8), for CS Lymph Nodes codes 010-118, 121-128, 152, 153, 155, and 158 ONLY, the N category for AJCC 7 staging is assigned based on the value of CS Site-Specific Factor 3, Clinical Status of Lymph Node Mets, and Regional Nodes Positive, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:22.980Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "010", "000-002,005", "ERROR:" ], [ "00", "100,110,115,118", "000-002,005", "ERROR:" ], [ "00", "121", "000-002,005", "ERROR:" ], [ "00", "122", "000-002,005", "ERROR:" ], [ "00", "123", "000-002,005", "ERROR:" ], [ "00", "124", "000-002,005", "ERROR:" ], [ "00", "125", "000-002,005", "ERROR:" ], [ "00", "128", "000-002,005", "ERROR:" ], [ "00", "152", "000-002,005", "ERROR:" ], [ "00", "153", "000-002,005", "ERROR:" ], [ "00", "155", "000-002,005", "ERROR:" ], [ "00", "158", "000-002,005", "ERROR:" ], [ "01", "010", "000-002,005", "ERROR:" ], [ "01", "100,110,115,118", "000-002,005", "ERROR:" ], [ "01", "121", "000-002,005", "ERROR:" ], [ "01", "122", "000-002,005", "ERROR:" ], [ "01", "123", "000-002,005", "ERROR:" ], [ "01", "124", "000-002,005", "ERROR:" ], [ "01", "125", "000-002,005", "ERROR:" ], [ "01", "128", "000-002,005", "ERROR:" ], [ "01", "152", "000-002,005", "ERROR:" ], [ "01", "153", "000-002,005", "ERROR:" ], [ "01", "155", "000-002,005", "ERROR:" ], [ "01", "158", "000-002,005", "ERROR:" ], [ "02-03", "010", "000-002,005", "ERROR:" ], [ "02-03", "100,110,115,118", "000-002,005", "ERROR:" ], [ "02-03", "121", "000-002,005", "ERROR:" ], [ "02-03", "122", "000-002,005", "ERROR:" ], [ "02-03", "123", "000-002,005", "ERROR:" ], [ "02-03", "124", "000-002,005", "ERROR:" ], [ "02-03", "125", "000-002,005", "ERROR:" ], [ "02-03", "128", "000-002,005", "ERROR:" ], [ "02-03", "152", "000-002,005", "ERROR:" ], [ "02-03", "153", "000-002,005", "ERROR:" ], [ "02-03", "155", "000-002,005", "ERROR:" ], [ "02-03", "158", "000-002,005", "ERROR:" ], [ "04-90", "010", "000-002,005", "ERROR:" ], [ "04-90", "100,110,115,118", "000-002,005", "ERROR:" ], [ "04-90", "121", "000-002,005", "ERROR:" ], [ "04-90", "122", "000-002,005", "ERROR:" ], [ "04-90", "123", "000-002,005", "ERROR:" ], [ "04-90", "124", "000-002,005", "ERROR:" ], [ "04-90", "125", "000-002,005", "ERROR:" ], [ "04-90", "128", "000-002,005", "ERROR:" ], [ "04-90", "152", "000-002,005", "ERROR:" ], [ "04-90", "153", "000-002,005", "ERROR:" ], [ "04-90", "155", "000-002,005", "ERROR:" ], [ "04-90", "158", "000-002,005", "ERROR:" ], [ "95", "010", "000-002,005", "ERROR:" ], [ "95", "100,110,115,118", "000-002,005", "ERROR:" ], [ "95", "121", "000-002,005", "ERROR:" ], [ "95", "122", "000-002,005", "ERROR:" ], [ "95", "123", "000-002,005", "ERROR:" ], [ "95", "124", "000-002,005", "ERROR:" ], [ "95", "125", "000-002,005", "ERROR:" ], [ "95", "128", "000-002,005", "ERROR:" ], [ "95", "152", "000-002,005", "ERROR:" ], [ "95", "153", "000-002,005", "ERROR:" ], [ "95", "155", "000-002,005", "ERROR:" ], [ "95", "158", "000-002,005", "ERROR:" ], [ "97", "010", "000-002,005", "ERROR:" ], [ "97", "100,110,115,118", "000-002,005", "ERROR:" ], [ "97", "121", "000-002,005", "ERROR:" ], [ "97", "122", "000-002,005", "ERROR:" ], [ "97", "123", "000-002,005", "ERROR:" ], [ "97", "124", "000-002,005", "ERROR:" ], [ "97", "125", "000-002,005", "ERROR:" ], [ "97", "128", "000-002,005", "ERROR:" ], [ "97", "152", "000-002,005", "ERROR:" ], [ "97", "153", "000-002,005", "ERROR:" ], [ "97", "155", "000-002,005", "ERROR:" ], [ "97", "158", "000-002,005", "ERROR:" ], [ "98", "010", "000-002,005", "ERROR:" ], [ "98", "100,110,115,118", "000-002,005", "ERROR:" ], [ "98", "121", "000-002,005", "ERROR:" ], [ "98", "122", "000-002,005", "ERROR:" ], [ "98", "123", "000-002,005", "ERROR:" ], [ "98", "124", "000-002,005", "ERROR:" ], [ "98", "125", "000-002,005", "ERROR:" ], [ "98", "128", "000-002,005", "ERROR:" ], [ "98", "152", "000-002,005", "ERROR:" ], [ "98", "153", "000-002,005", "ERROR:" ], [ "98", "155", "000-002,005", "ERROR:" ], [ "98", "158", "000-002,005", "ERROR:" ], [ "99", "010", "000-002,005", "ERROR:" ], [ "99", "100,110,115,118", "000-002,005", "ERROR:" ], [ "99", "121", "000-002,005", "ERROR:" ], [ "99", "122", "000-002,005", "ERROR:" ], [ "99", "123", "000-002,005", "ERROR:" ], [ "99", "124", "000-002,005", "ERROR:" ], [ "99", "125", "000-002,005", "ERROR:" ], [ "99", "128", "000-002,005", "ERROR:" ], [ "99", "152", "000-002,005", "ERROR:" ], [ "99", "153", "000-002,005", "ERROR:" ], [ "99", "155", "000-002,005", "ERROR:" ], [ "99", "158", "000-002,005", "ERROR:" ], [ "00", "010", "010", "ERROR:" ], [ "00", "100,110,115,118", "010", "ERROR:" ], [ "00", "121", "010", "ERROR:" ], [ "00", "122", "010", "ERROR:" ], [ "00", "123", "010", "ERROR:" ], [ "00", "124", "010", "ERROR:" ], [ "00", "125", "010", "ERROR:" ], [ "00", "128", "010", "ERROR:" ], [ "00", "152", "010", "ERROR:" ], [ "00", "153", "010", "ERROR:" ], [ "00", "155", "010", "ERROR:" ], [ "00", "158", "010", "ERROR:" ], [ "01", "010", "010", "VALUE:N1a" ], [ "01", "100,110,115,118", "010", "VALUE:N1a" ], [ "01", "121", "010", "ERROR:" ], [ "01", "122", "010", "VALUE:N1a" ], [ "01", "123", "010", "VALUE:N1a" ], [ "01", "124", "010", "VALUE:N1a" ], [ "01", "125", "010", "VALUE:N1a" ], [ "01", "128", "010", "ERROR:" ], [ "01", "152", "010", "VALUE:N1a" ], [ "01", "153", "010", "VALUE:N1a" ], [ "01", "155", "010", "VALUE:N1a" ], [ "01", "158", "010", "VALUE:N1a" ], [ "02-03", "010", "010", "VALUE:N2a" ], [ "02-03", "100,110,115,118", "010", "VALUE:N2a" ], [ "02-03", "121", "010", "ERROR:" ], [ "02-03", "122", "010", "VALUE:N2a" ], [ "02-03", "123", "010", "VALUE:N2a" ], [ "02-03", "124", "010", "VALUE:N2a" ], [ "02-03", "125", "010", "VALUE:N2a" ], [ "02-03", "128", "010", "ERROR:" ], [ "02-03", "152", "010", "VALUE:N2a" ], [ "02-03", "153", "010", "VALUE:N2a" ], [ "02-03", "155", "010", "VALUE:N2a" ], [ "02-03", "158", "010", "VALUE:N2a" ], [ "04-90", "010", "010", "VALUE:N3" ], [ "04-90", "100,110,115,118", "010", "VALUE:N3" ], [ "04-90", "121", "010", "ERROR:" ], [ "04-90", "122", "010", "VALUE:N3" ], [ "04-90", "123", "010", "VALUE:N3" ], [ "04-90", "124", "010", "VALUE:N3" ], [ "04-90", "125", "010", "VALUE:N3" ], [ "04-90", "128", "010", "ERROR:" ], [ "04-90", "152", "010", "VALUE:N3" ], [ "04-90", "153", "010", "VALUE:N3" ], [ "04-90", "155", "010", "VALUE:N3" ], [ "04-90", "158", "010", "VALUE:N3" ], [ "95", "010", "010", "VALUE:N1a" ], [ "95", "100,110,115,118", "010", "VALUE:N1a" ], [ "95", "121", "010", "ERROR:" ], [ "95", "122", "010", "VALUE:N1a" ], [ "95", "123", "010", "VALUE:N1a" ], [ "95", "124", "010", "VALUE:N1a" ], [ "95", "125", "010", "VALUE:N1a" ], [ "95", "128", "010", "ERROR:" ], [ "95", "152", "010", "VALUE:N2a" ], [ "95", "153", "010", "VALUE:N2a" ], [ "95", "155", "010", "VALUE:N2a" ], [ "95", "158", "010", "VALUE:N2a" ], [ "97", "010", "010", "ERROR:" ], [ "97", "100,110,115,118", "010", "VALUE:N1a" ], [ "97", "121", "010", "ERROR:" ], [ "97", "122", "010", "VALUE:N1a" ], [ "97", "123", "010", "VALUE:N1a" ], [ "97", "124", "010", "VALUE:N1a" ], [ "97", "125", "010", "VALUE:N1a" ], [ "97", "128", "010", "ERROR:" ], [ "97", "152", "010", "VALUE:N2a" ], [ "97", "153", "010", "VALUE:N2a" ], [ "97", "155", "010", "VALUE:N2a" ], [ "97", "158", "010", "VALUE:N2a" ], [ "98", "010", "010", "ERROR:" ], [ "98", "100,110,115,118", "010", "ERROR:" ], [ "98", "121", "010", "ERROR:" ], [ "98", "122", "010", "ERROR:" ], [ "98", "123", "010", "ERROR:" ], [ "98", "124", "010", "ERROR:" ], [ "98", "125", "010", "ERROR:" ], [ "98", "128", "010", "ERROR:" ], [ "98", "152", "010", "ERROR:" ], [ "98", "153", "010", "ERROR:" ], [ "98", "155", "010", "ERROR:" ], [ "98", "158", "010", "ERROR:" ], [ "99", "010", "010", "VALUE:N1a" ], [ "99", "100,110,115,118", "010", "VALUE:N1a" ], [ "99", "121", "010", "ERROR:" ], [ "99", "122", "010", "VALUE:N1a" ], [ "99", "123", "010", "VALUE:N1a" ], [ "99", "124", "010", "VALUE:N1a" ], [ "99", "125", "010", "VALUE:N1a" ], [ "99", "128", "010", "ERROR:" ], [ "99", "152", "010", "VALUE:N2a" ], [ "99", "153", "010", "VALUE:N2a" ], [ "99", "155", "010", "VALUE:N2a" ], [ "99", "158", "010", "VALUE:N2a" ], [ "00", "010", "020", "ERROR:" ], [ "00", "100,110,115,118", "020", "VALUE:N1b" ], [ "00", "121", "020", "ERROR:" ], [ "00", "122", "020", "VALUE:N1b" ], [ "00", "123", "020", "VALUE:N1b" ], [ "00", "124", "020", "VALUE:N1b" ], [ "00", "125", "020", "VALUE:N1b" ], [ "00", "128", "020", "ERROR:" ], [ "00", "152", "020", "VALUE:N2b" ], [ "00", "153", "020", "VALUE:N2b" ], [ "00", "155", "020", "VALUE:N2b" ], [ "00", "158", "020", "VALUE:N2b" ], [ "01", "010", "020", "VALUE:N1b" ], [ "01", "100,110,115,118", "020", "VALUE:N1b" ], [ "01", "121", "020", "ERROR:" ], [ "01", "122", "020", "VALUE:N1b" ], [ "01", "123", "020", "VALUE:N1b" ], [ "01", "124", "020", "VALUE:N1b" ], [ "01", "125", "020", "VALUE:N1b" ], [ "01", "128", "020", "ERROR:" ], [ "01", "152", "020", "VALUE:N1b" ], [ "01", "153", "020", "VALUE:N1b" ], [ "01", "155", "020", "VALUE:N1b" ], [ "01", "158", "020", "VALUE:N1b" ], [ "02-03", "010", "020", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "020", "VALUE:N2b" ], [ "02-03", "121", "020", "ERROR:" ], [ "02-03", "122", "020", "VALUE:N2b" ], [ "02-03", "123", "020", "VALUE:N2b" ], [ "02-03", "124", "020", "VALUE:N2b" ], [ "02-03", "125", "020", "VALUE:N2b" ], [ "02-03", "128", "020", "ERROR:" ], [ "02-03", "152", "020", "VALUE:N2b" ], [ "02-03", "153", "020", "VALUE:N2b" ], [ "02-03", "155", "020", "VALUE:N2b" ], [ "02-03", "158", "020", "VALUE:N2b" ], [ "04-90", "010", "020", "VALUE:N3" ], [ "04-90", "100,110,115,118", "020", "VALUE:N3" ], [ "04-90", "121", "020", "ERROR:" ], [ "04-90", "122", "020", "VALUE:N3" ], [ "04-90", "123", "020", "VALUE:N3" ], [ "04-90", "124", "020", "VALUE:N3" ], [ "04-90", "125", "020", "VALUE:N3" ], [ "04-90", "128", "020", "ERROR:" ], [ "04-90", "152", "020", "VALUE:N3" ], [ "04-90", "153", "020", "VALUE:N3" ], [ "04-90", "155", "020", "VALUE:N3" ], [ "04-90", "158", "020", "VALUE:N3" ], [ "95", "010", "020", "VALUE:N1b" ], [ "95", "100,110,115,118", "020", "VALUE:N1b" ], [ "95", "121", "020", "ERROR:" ], [ "95", "122", "020", "VALUE:N1b" ], [ "95", "123", "020", "VALUE:N1b" ], [ "95", "124", "020", "VALUE:N1b" ], [ "95", "125", "020", "VALUE:N1b" ], [ "95", "128", "020", "ERROR:" ], [ "95", "152", "020", "VALUE:N2b" ], [ "95", "153", "020", "VALUE:N2b" ], [ "95", "155", "020", "VALUE:N2b" ], [ "95", "158", "020", "VALUE:N2b" ], [ "97", "010", "020", "ERROR:" ], [ "97", "100,110,115,118", "020", "VALUE:N1b" ], [ "97", "121", "020", "ERROR:" ], [ "97", "122", "020", "VALUE:N1b" ], [ "97", "123", "020", "VALUE:N1b" ], [ "97", "124", "020", "VALUE:N1b" ], [ "97", "125", "020", "VALUE:N1b" ], [ "97", "128", "020", "ERROR:" ], [ "97", "152", "020", "VALUE:N2b" ], [ "97", "153", "020", "VALUE:N2b" ], [ "97", "155", "020", "VALUE:N2b" ], [ "97", "158", "020", "VALUE:N2b" ], [ "98", "010", "020", "ERROR:" ], [ "98", "100,110,115,118", "020", "VALUE:N1b" ], [ "98", "121", "020", "ERROR:" ], [ "98", "122", "020", "VALUE:N1b" ], [ "98", "123", "020", "VALUE:N1b" ], [ "98", "124", "020", "VALUE:N1b" ], [ "98", "125", "020", "VALUE:N1b" ], [ "98", "128", "020", "ERROR:" ], [ "98", "152", "020", "VALUE:N2b" ], [ "98", "153", "020", "VALUE:N2b" ], [ "98", "155", "020", "VALUE:N2b" ], [ "98", "158", "020", "VALUE:N2b" ], [ "99", "010", "020", "VALUE:N1b" ], [ "99", "100,110,115,118", "020", "VALUE:N1b" ], [ "99", "121", "020", "ERROR:" ], [ "99", "122", "020", "VALUE:N1b" ], [ "99", "123", "020", "VALUE:N1b" ], [ "99", "124", "020", "VALUE:N1b" ], [ "99", "125", "020", "VALUE:N1b" ], [ "99", "128", "020", "ERROR:" ], [ "99", "152", "020", "VALUE:N2b" ], [ "99", "153", "020", "VALUE:N2b" ], [ "99", "155", "020", "VALUE:N2b" ], [ "99", "158", "020", "VALUE:N2b" ], [ "00", "010", "043", "ERROR:" ], [ "00", "100,110,115,118", "043", "VALUE:N1b" ], [ "00", "121", "043", "ERROR:" ], [ "00", "122", "043", "VALUE:N1b" ], [ "00", "123", "043", "VALUE:N1b" ], [ "00", "124", "043", "VALUE:N1b" ], [ "00", "125", "043", "VALUE:N1b" ], [ "00", "128", "043", "ERROR:" ], [ "00", "152", "043", "VALUE:N2b" ], [ "00", "153", "043", "VALUE:N2b" ], [ "00", "155", "043", "VALUE:N2b" ], [ "00", "158", "043", "VALUE:N2b" ], [ "01", "010", "043", "VALUE:N1b" ], [ "01", "100,110,115,118", "043", "VALUE:N1b" ], [ "01", "121", "043", "ERROR:" ], [ "01", "122", "043", "VALUE:N1b" ], [ "01", "123", "043", "VALUE:N1b" ], [ "01", "124", "043", "VALUE:N1b" ], [ "01", "125", "043", "VALUE:N1b" ], [ "01", "128", "043", "ERROR:" ], [ "01", "152", "043", "VALUE:N1b" ], [ "01", "153", "043", "VALUE:N1b" ], [ "01", "155", "043", "VALUE:N1b" ], [ "01", "158", "043", "VALUE:N1b" ], [ "02-03", "010", "043", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "043", "VALUE:N2b" ], [ "02-03", "121", "043", "ERROR:" ], [ "02-03", "122", "043", "VALUE:N2b" ], [ "02-03", "123", "043", "VALUE:N2b" ], [ "02-03", "124", "043", "VALUE:N2b" ], [ "02-03", "125", "043", "VALUE:N2b" ], [ "02-03", "128", "043", "ERROR:" ], [ "02-03", "152", "043", "VALUE:N2b" ], [ "02-03", "153", "043", "VALUE:N2b" ], [ "02-03", "155", "043", "VALUE:N2b" ], [ "02-03", "158", "043", "VALUE:N2b" ], [ "04-90", "010", "043", "VALUE:N3" ], [ "04-90", "100,110,115,118", "043", "VALUE:N3" ], [ "04-90", "121", "043", "ERROR:" ], [ "04-90", "122", "043", "VALUE:N3" ], [ "04-90", "123", "043", "VALUE:N3" ], [ "04-90", "124", "043", "VALUE:N3" ], [ "04-90", "125", "043", "VALUE:N3" ], [ "04-90", "128", "043", "ERROR:" ], [ "04-90", "152", "043", "VALUE:N3" ], [ "04-90", "153", "043", "VALUE:N3" ], [ "04-90", "155", "043", "VALUE:N3" ], [ "04-90", "158", "043", "VALUE:N3" ], [ "95", "010", "043", "VALUE:N1b" ], [ "95", "100,110,115,118", "043", "VALUE:N1b" ], [ "95", "121", "043", "ERROR:" ], [ "95", "122", "043", "VALUE:N1b" ], [ "95", "123", "043", "VALUE:N1b" ], [ "95", "124", "043", "VALUE:N1b" ], [ "95", "125", "043", "VALUE:N1b" ], [ "95", "128", "043", "ERROR:" ], [ "95", "152", "043", "VALUE:N2b" ], [ "95", "153", "043", "VALUE:N2b" ], [ "95", "155", "043", "VALUE:N2b" ], [ "95", "158", "043", "VALUE:N2b" ], [ "97", "010", "043", "ERROR:" ], [ "97", "100,110,115,118", "043", "VALUE:N1b" ], [ "97", "121", "043", "ERROR:" ], [ "97", "122", "043", "VALUE:N1b" ], [ "97", "123", "043", "VALUE:N1b" ], [ "97", "124", "043", "VALUE:N1b" ], [ "97", "125", "043", "VALUE:N1b" ], [ "97", "128", "043", "ERROR:" ], [ "97", "152", "043", "VALUE:N2b" ], [ "97", "153", "043", "VALUE:N2b" ], [ "97", "155", "043", "VALUE:N2b" ], [ "97", "158", "043", "VALUE:N2b" ], [ "98", "010", "043", "ERROR:" ], [ "98", "100,110,115,118", "043", "VALUE:N1b" ], [ "98", "121", "043", "ERROR:" ], [ "98", "122", "043", "VALUE:N1b" ], [ "98", "123", "043", "VALUE:N1b" ], [ "98", "124", "043", "VALUE:N1b" ], [ "98", "125", "043", "VALUE:N1b" ], [ "98", "128", "043", "ERROR:" ], [ "98", "152", "043", "VALUE:N2b" ], [ "98", "153", "043", "VALUE:N2b" ], [ "98", "155", "043", "VALUE:N2b" ], [ "98", "158", "043", "VALUE:N2b" ], [ "99", "010", "043", "VALUE:N1b" ], [ "99", "100,110,115,118", "043", "VALUE:N1b" ], [ "99", "121", "043", "ERROR:" ], [ "99", "122", "043", "VALUE:N1b" ], [ "99", "123", "043", "VALUE:N1b" ], [ "99", "124", "043", "VALUE:N1b" ], [ "99", "125", "043", "VALUE:N1b" ], [ "99", "128", "043", "ERROR:" ], [ "99", "152", "043", "VALUE:N2b" ], [ "99", "153", "043", "VALUE:N2b" ], [ "99", "155", "043", "VALUE:N2b" ], [ "99", "158", "043", "VALUE:N2b" ], [ "00", "010", "045", "ERROR:" ], [ "00", "100,110,115,118", "045", "VALUE:N1b" ], [ "00", "121", "045", "ERROR:" ], [ "00", "122", "045", "VALUE:N1b" ], [ "00", "123", "045", "VALUE:N1b" ], [ "00", "124", "045", "VALUE:N1b" ], [ "00", "125", "045", "VALUE:N1b" ], [ "00", "128", "045", "ERROR:" ], [ "00", "152", "045", "VALUE:N2b" ], [ "00", "153", "045", "VALUE:N2b" ], [ "00", "155", "045", "VALUE:N2b" ], [ "00", "158", "045", "VALUE:N2b" ], [ "01", "010", "045", "VALUE:N1b" ], [ "01", "100,110,115,118", "045", "VALUE:N1b" ], [ "01", "121", "045", "ERROR:" ], [ "01", "122", "045", "VALUE:N1b" ], [ "01", "123", "045", "VALUE:N1b" ], [ "01", "124", "045", "VALUE:N1b" ], [ "01", "125", "045", "VALUE:N1b" ], [ "01", "128", "045", "ERROR:" ], [ "01", "152", "045", "VALUE:N1b" ], [ "01", "153", "045", "VALUE:N1b" ], [ "01", "155", "045", "VALUE:N1b" ], [ "01", "158", "045", "VALUE:N1b" ], [ "02-03", "010", "045", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "045", "VALUE:N2b" ], [ "02-03", "121", "045", "ERROR:" ], [ "02-03", "122", "045", "VALUE:N2b" ], [ "02-03", "123", "045", "VALUE:N2b" ], [ "02-03", "124", "045", "VALUE:N2b" ], [ "02-03", "125", "045", "VALUE:N2b" ], [ "02-03", "128", "045", "ERROR:" ], [ "02-03", "152", "045", "VALUE:N2b" ], [ "02-03", "153", "045", "VALUE:N2b" ], [ "02-03", "155", "045", "VALUE:N2b" ], [ "02-03", "158", "045", "VALUE:N2b" ], [ "04-90", "010", "045", "VALUE:N3" ], [ "04-90", "100,110,115,118", "045", "VALUE:N3" ], [ "04-90", "121", "045", "ERROR:" ], [ "04-90", "122", "045", "VALUE:N3" ], [ "04-90", "123", "045", "VALUE:N3" ], [ "04-90", "124", "045", "VALUE:N3" ], [ "04-90", "125", "045", "VALUE:N3" ], [ "04-90", "128", "045", "ERROR:" ], [ "04-90", "152", "045", "VALUE:N3" ], [ "04-90", "153", "045", "VALUE:N3" ], [ "04-90", "155", "045", "VALUE:N3" ], [ "04-90", "158", "045", "VALUE:N3" ], [ "95", "010", "045", "VALUE:N1b" ], [ "95", "100,110,115,118", "045", "VALUE:N1b" ], [ "95", "121", "045", "ERROR:" ], [ "95", "122", "045", "VALUE:N1b" ], [ "95", "123", "045", "VALUE:N1b" ], [ "95", "124", "045", "VALUE:N1b" ], [ "95", "125", "045", "VALUE:N1b" ], [ "95", "128", "045", "ERROR:" ], [ "95", "152", "045", "VALUE:N2b" ], [ "95", "153", "045", "VALUE:N2b" ], [ "95", "155", "045", "VALUE:N2b" ], [ "95", "158", "045", "VALUE:N2b" ], [ "97", "010", "045", "ERROR:" ], [ "97", "100,110,115,118", "045", "VALUE:N2b" ], [ "97", "121", "045", "ERROR:" ], [ "97", "122", "045", "VALUE:N2b" ], [ "97", "123", "045", "VALUE:N2b" ], [ "97", "124", "045", "VALUE:N2b" ], [ "97", "125", "045", "VALUE:N1b" ], [ "97", "128", "045", "ERROR:" ], [ "97", "152", "045", "VALUE:N2b" ], [ "97", "153", "045", "VALUE:N2b" ], [ "97", "155", "045", "VALUE:N2b" ], [ "97", "158", "045", "VALUE:N2b" ], [ "98", "010", "045", "ERROR:" ], [ "98", "100,110,115,118", "045", "VALUE:N1b" ], [ "98", "121", "045", "ERROR:" ], [ "98", "122", "045", "VALUE:N1b" ], [ "98", "123", "045", "VALUE:N1b" ], [ "98", "124", "045", "VALUE:N1b" ], [ "98", "125", "045", "VALUE:N1b" ], [ "98", "128", "045", "ERROR:" ], [ "98", "152", "045", "VALUE:N2b" ], [ "98", "153", "045", "VALUE:N2b" ], [ "98", "155", "045", "VALUE:N2b" ], [ "98", "158", "045", "VALUE:N2b" ], [ "99", "010", "045", "VALUE:N1b" ], [ "99", "100,110,115,118", "045", "VALUE:N2b" ], [ "99", "121", "045", "ERROR:" ], [ "99", "122", "045", "VALUE:N2b" ], [ "99", "123", "045", "VALUE:N2b" ], [ "99", "124", "045", "VALUE:N2b" ], [ "99", "125", "045", "VALUE:N2b" ], [ "99", "128", "045", "ERROR:" ], [ "99", "152", "045", "VALUE:N2b" ], [ "99", "153", "045", "VALUE:N2b" ], [ "99", "155", "045", "VALUE:N2b" ], [ "99", "158", "045", "VALUE:N2b" ], [ "00", "010", "048", "ERROR:" ], [ "00", "100,110,115,118", "048", "VALUE:N1b" ], [ "00", "121", "048", "ERROR:" ], [ "00", "122", "048", "VALUE:N1b" ], [ "00", "123", "048", "VALUE:N1b" ], [ "00", "124", "048", "VALUE:N1b" ], [ "00", "125", "048", "VALUE:N1b" ], [ "00", "128", "048", "ERROR:" ], [ "00", "152", "048", "VALUE:N2b" ], [ "00", "153", "048", "VALUE:N2b" ], [ "00", "155", "048", "VALUE:N2b" ], [ "00", "158", "048", "VALUE:N2b" ], [ "01", "010", "048", "VALUE:N1b" ], [ "01", "100,110,115,118", "048", "VALUE:N1b" ], [ "01", "121", "048", "ERROR:" ], [ "01", "122", "048", "VALUE:N1b" ], [ "01", "123", "048", "VALUE:N1b" ], [ "01", "124", "048", "VALUE:N1b" ], [ "01", "125", "048", "VALUE:N1b" ], [ "01", "128", "048", "ERROR:" ], [ "01", "152", "048", "VALUE:N1b" ], [ "01", "153", "048", "VALUE:N1b" ], [ "01", "155", "048", "VALUE:N1b" ], [ "01", "158", "048", "VALUE:N1b" ], [ "02-03", "010", "048", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "048", "VALUE:N2b" ], [ "02-03", "121", "048", "ERROR:" ], [ "02-03", "122", "048", "VALUE:N2b" ], [ "02-03", "123", "048", "VALUE:N2b" ], [ "02-03", "124", "048", "VALUE:N2b" ], [ "02-03", "125", "048", "VALUE:N2b" ], [ "02-03", "128", "048", "ERROR:" ], [ "02-03", "152", "048", "VALUE:N2b" ], [ "02-03", "153", "048", "VALUE:N2b" ], [ "02-03", "155", "048", "VALUE:N2b" ], [ "02-03", "158", "048", "VALUE:N2b" ], [ "04-90", "010", "048", "VALUE:N3" ], [ "04-90", "100,110,115,118", "048", "VALUE:N3" ], [ "04-90", "121", "048", "ERROR:" ], [ "04-90", "122", "048", "VALUE:N3" ], [ "04-90", "123", "048", "VALUE:N3" ], [ "04-90", "124", "048", "VALUE:N3" ], [ "04-90", "125", "048", "VALUE:N3" ], [ "04-90", "128", "048", "ERROR:" ], [ "04-90", "152", "048", "VALUE:N3" ], [ "04-90", "153", "048", "VALUE:N3" ], [ "04-90", "155", "048", "VALUE:N3" ], [ "04-90", "158", "048", "VALUE:N3" ], [ "95", "010", "048", "VALUE:N1b" ], [ "95", "100,110,115,118", "048", "VALUE:N1b" ], [ "95", "121", "048", "ERROR:" ], [ "95", "122", "048", "VALUE:N1b" ], [ "95", "123", "048", "VALUE:N1b" ], [ "95", "124", "048", "VALUE:N1b" ], [ "95", "125", "048", "VALUE:N1b" ], [ "95", "128", "048", "ERROR:" ], [ "95", "152", "048", "VALUE:N2b" ], [ "95", "153", "048", "VALUE:N2b" ], [ "95", "155", "048", "VALUE:N2b" ], [ "95", "158", "048", "VALUE:N2b" ], [ "97", "010", "048", "ERROR:" ], [ "97", "100,110,115,118", "048", "VALUE:N3" ], [ "97", "121", "048", "ERROR:" ], [ "97", "122", "048", "VALUE:N3" ], [ "97", "123", "048", "VALUE:N3" ], [ "97", "124", "048", "VALUE:N3" ], [ "97", "125", "048", "VALUE:N1b" ], [ "97", "128", "048", "ERROR:" ], [ "97", "152", "048", "VALUE:N2b" ], [ "97", "153", "048", "VALUE:N2b" ], [ "97", "155", "048", "VALUE:N2b" ], [ "97", "158", "048", "VALUE:N2b" ], [ "98", "010", "048", "ERROR:" ], [ "98", "100,110,115,118", "048", "VALUE:N1b" ], [ "98", "121", "048", "ERROR:" ], [ "98", "122", "048", "VALUE:N1b" ], [ "98", "123", "048", "VALUE:N1b" ], [ "98", "124", "048", "VALUE:N1b" ], [ "98", "125", "048", "VALUE:N1b" ], [ "98", "128", "048", "ERROR:" ], [ "98", "152", "048", "VALUE:N2b" ], [ "98", "153", "048", "VALUE:N2b" ], [ "98", "155", "048", "VALUE:N2b" ], [ "98", "158", "048", "VALUE:N2b" ], [ "99", "010", "048", "VALUE:N1b" ], [ "99", "100,110,115,118", "048", "VALUE:N3" ], [ "99", "121", "048", "ERROR:" ], [ "99", "122", "048", "VALUE:N3" ], [ "99", "123", "048", "VALUE:N3" ], [ "99", "124", "048", "VALUE:N3" ], [ "99", "125", "048", "VALUE:N3" ], [ "99", "128", "048", "ERROR:" ], [ "99", "152", "048", "VALUE:N3" ], [ "99", "153", "048", "VALUE:N3" ], [ "99", "155", "048", "VALUE:N3" ], [ "99", "158", "048", "VALUE:N3" ], [ "00", "010", "050", "ERROR:" ], [ "00", "100,110,115,118", "050", "ERROR:" ], [ "00", "121", "050", "ERROR:" ], [ "00", "122", "050", "VALUE:N1b" ], [ "00", "123", "050", "VALUE:N1b" ], [ "00", "124", "050", "VALUE:N1b" ], [ "00", "125", "050", "VALUE:N1b" ], [ "00", "128", "050", "ERROR:" ], [ "00", "152", "050", "VALUE:N2b" ], [ "00", "153", "050", "VALUE:N2b" ], [ "00", "155", "050", "VALUE:N2b" ], [ "00", "158", "050", "VALUE:N2b" ], [ "01", "010", "050", "VALUE:N1b" ], [ "01", "100,110,115,118", "050", "VALUE:N1b" ], [ "01", "121", "050", "ERROR:" ], [ "01", "122", "050", "VALUE:N1b" ], [ "01", "123", "050", "VALUE:N1b" ], [ "01", "124", "050", "VALUE:N1b" ], [ "01", "125", "050", "VALUE:N1b" ], [ "01", "128", "050", "ERROR:" ], [ "01", "152", "050", "VALUE:N1b" ], [ "01", "153", "050", "VALUE:N1b" ], [ "01", "155", "050", "VALUE:N1b" ], [ "01", "158", "050", "VALUE:N1b" ], [ "02-03", "010", "050", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "050", "VALUE:N2b" ], [ "02-03", "121", "050", "ERROR:" ], [ "02-03", "122", "050", "VALUE:N2b" ], [ "02-03", "123", "050", "VALUE:N2b" ], [ "02-03", "124", "050", "ERROR:" ], [ "02-03", "125", "050", "VALUE:N2b" ], [ "02-03", "128", "050", "ERROR:" ], [ "02-03", "152", "050", "VALUE:N2b" ], [ "02-03", "153", "050", "VALUE:N2b" ], [ "02-03", "155", "050", "VALUE:N2b" ], [ "02-03", "158", "050", "VALUE:N2b" ], [ "04-90", "010", "050", "VALUE:N3" ], [ "04-90", "100,110,115,118", "050", "VALUE:N3" ], [ "04-90", "121", "050", "ERROR:" ], [ "04-90", "122", "050", "VALUE:N3" ], [ "04-90", "123", "050", "VALUE:N3" ], [ "04-90", "124", "050", "ERROR:" ], [ "04-90", "125", "050", "VALUE:N3" ], [ "04-90", "128", "050", "ERROR:" ], [ "04-90", "152", "050", "VALUE:N3" ], [ "04-90", "153", "050", "VALUE:N3" ], [ "04-90", "155", "050", "VALUE:N3" ], [ "04-90", "158", "050", "VALUE:N3" ], [ "95", "010", "050", "VALUE:N1b" ], [ "95", "100,110,115,118", "050", "VALUE:N1b" ], [ "95", "121", "050", "ERROR:" ], [ "95", "122", "050", "VALUE:N1b" ], [ "95", "123", "050", "VALUE:N1b" ], [ "95", "124", "050", "VALUE:N1b" ], [ "95", "125", "050", "VALUE:N1b" ], [ "95", "128", "050", "ERROR:" ], [ "95", "152", "050", "VALUE:N2b" ], [ "95", "153", "050", "VALUE:N2b" ], [ "95", "155", "050", "VALUE:N2b" ], [ "95", "158", "050", "VALUE:N2b" ], [ "97", "010", "050", "ERROR:" ], [ "97", "100,110,115,118", "050", "VALUE:N1b" ], [ "97", "121", "050", "ERROR:" ], [ "97", "122", "050", "VALUE:N1b" ], [ "97", "123", "050", "VALUE:N1b" ], [ "97", "124", "050", "VALUE:N1b" ], [ "97", "125", "050", "VALUE:N1b" ], [ "97", "128", "050", "ERROR:" ], [ "97", "152", "050", "VALUE:N2b" ], [ "97", "153", "050", "VALUE:N2b" ], [ "97", "155", "050", "VALUE:N2b" ], [ "97", "158", "050", "VALUE:N2b" ], [ "98", "010", "050", "ERROR:" ], [ "98", "100,110,115,118", "050", "VALUE:N1b" ], [ "98", "121", "050", "ERROR:" ], [ "98", "122", "050", "VALUE:N1b" ], [ "98", "123", "050", "VALUE:N1b" ], [ "98", "124", "050", "ERROR:" ], [ "98", "125", "050", "VALUE:N1b" ], [ "98", "128", "050", "ERROR:" ], [ "98", "152", "050", "VALUE:N2b" ], [ "98", "153", "050", "VALUE:N2b" ], [ "98", "155", "050", "VALUE:N2b" ], [ "98", "158", "050", "VALUE:N2b" ], [ "99", "010", "050", "VALUE:N1b" ], [ "99", "100,110,115,118", "050", "VALUE:N1b" ], [ "99", "121", "050", "ERROR:" ], [ "99", "122", "050", "VALUE:N1b" ], [ "99", "123", "050", "VALUE:N1b" ], [ "99", "124", "050", "VALUE:N1b" ], [ "99", "125", "050", "VALUE:N1b" ], [ "99", "128", "050", "ERROR:" ], [ "99", "152", "050", "VALUE:N2b" ], [ "99", "153", "050", "VALUE:N2b" ], [ "99", "155", "050", "VALUE:N2b" ], [ "99", "158", "050", "VALUE:N2b" ], [ "00", "010", "100", "ERROR:" ], [ "00", "100,110,115,118", "100", "ERROR:" ], [ "00", "121", "100", "ERROR:" ], [ "00", "122", "100", "ERROR:" ], [ "00", "123", "100", "ERROR:" ], [ "00", "124", "100", "ERROR:" ], [ "00", "125", "100", "ERROR:" ], [ "00", "128", "100", "ERROR:" ], [ "00", "152", "100", "ERROR:" ], [ "00", "153", "100", "ERROR:" ], [ "00", "155", "100", "ERROR:" ], [ "00", "158", "100", "ERROR:" ], [ "01", "010", "100", "ERROR:" ], [ "01", "100,110,115,118", "100", "ERROR:" ], [ "01", "121", "100", "ERROR:" ], [ "01", "122", "100", "ERROR:" ], [ "01", "123", "100", "ERROR:" ], [ "01", "124", "100", "ERROR:" ], [ "01", "125", "100", "ERROR:" ], [ "01", "128", "100", "ERROR:" ], [ "01", "152", "100", "ERROR:" ], [ "01", "153", "100", "ERROR:" ], [ "01", "155", "100", "ERROR:" ], [ "01", "158", "100", "ERROR:" ], [ "02-03", "010", "100", "ERROR:" ], [ "02-03", "100,110,115,118", "100", "ERROR:" ], [ "02-03", "121", "100", "ERROR:" ], [ "02-03", "122", "100", "ERROR:" ], [ "02-03", "123", "100", "ERROR:" ], [ "02-03", "124", "100", "ERROR:" ], [ "02-03", "125", "100", "ERROR:" ], [ "02-03", "128", "100", "ERROR:" ], [ "02-03", "152", "100", "ERROR:" ], [ "02-03", "153", "100", "ERROR:" ], [ "02-03", "155", "100", "ERROR:" ], [ "02-03", "158", "100", "ERROR:" ], [ "04-90", "010", "100", "ERROR:" ], [ "04-90", "100,110,115,118", "100", "ERROR:" ], [ "04-90", "121", "100", "ERROR:" ], [ "04-90", "122", "100", "ERROR:" ], [ "04-90", "123", "100", "ERROR:" ], [ "04-90", "124", "100", "ERROR:" ], [ "04-90", "125", "100", "ERROR:" ], [ "04-90", "128", "100", "ERROR:" ], [ "04-90", "152", "100", "ERROR:" ], [ "04-90", "153", "100", "ERROR:" ], [ "04-90", "155", "100", "ERROR:" ], [ "04-90", "158", "100", "ERROR:" ], [ "95", "010", "100", "ERROR:" ], [ "95", "100,110,115,118", "100", "ERROR:" ], [ "95", "121", "100", "ERROR:" ], [ "95", "122", "100", "ERROR:" ], [ "95", "123", "100", "ERROR:" ], [ "95", "124", "100", "ERROR:" ], [ "95", "125", "100", "ERROR:" ], [ "95", "128", "100", "ERROR:" ], [ "95", "152", "100", "ERROR:" ], [ "95", "153", "100", "ERROR:" ], [ "95", "155", "100", "ERROR:" ], [ "95", "158", "100", "ERROR:" ], [ "97", "010", "100", "ERROR:" ], [ "97", "100,110,115,118", "100", "ERROR:" ], [ "97", "121", "100", "ERROR:" ], [ "97", "122", "100", "ERROR:" ], [ "97", "123", "100", "ERROR:" ], [ "97", "124", "100", "ERROR:" ], [ "97", "125", "100", "ERROR:" ], [ "97", "128", "100", "ERROR:" ], [ "97", "152", "100", "ERROR:" ], [ "97", "153", "100", "ERROR:" ], [ "97", "155", "100", "ERROR:" ], [ "97", "158", "100", "ERROR:" ], [ "98", "010", "100", "ERROR:" ], [ "98", "100,110,115,118", "100", "ERROR:" ], [ "98", "121", "100", "ERROR:" ], [ "98", "122", "100", "ERROR:" ], [ "98", "123", "100", "ERROR:" ], [ "98", "124", "100", "ERROR:" ], [ "98", "125", "100", "ERROR:" ], [ "98", "128", "100", "ERROR:" ], [ "98", "152", "100", "ERROR:" ], [ "98", "153", "100", "ERROR:" ], [ "98", "155", "100", "ERROR:" ], [ "98", "158", "100", "ERROR:" ], [ "99", "010", "100", "ERROR:" ], [ "99", "100,110,115,118", "100", "ERROR:" ], [ "99", "121", "100", "ERROR:" ], [ "99", "122", "100", "ERROR:" ], [ "99", "123", "100", "ERROR:" ], [ "99", "124", "100", "ERROR:" ], [ "99", "125", "100", "ERROR:" ], [ "99", "128", "100", "ERROR:" ], [ "99", "152", "100", "ERROR:" ], [ "99", "153", "100", "ERROR:" ], [ "99", "155", "100", "ERROR:" ], [ "99", "158", "100", "ERROR:" ], [ "00", "010", "150", "VALUE:N1b" ], [ "00", "100,110,115,118", "150", "VALUE:N1b" ], [ "00", "121", "150", "ERROR:" ], [ "00", "122", "150", "VALUE:N1b" ], [ "00", "123", "150", "VALUE:N1b" ], [ "00", "124", "150", "VALUE:N1b" ], [ "00", "125", "150", "VALUE:N1b" ], [ "00", "128", "150", "ERROR:" ], [ "00", "152", "150", "VALUE:N2b" ], [ "00", "153", "150", "VALUE:N2b" ], [ "00", "155", "150", "VALUE:N2b" ], [ "00", "158", "150", "VALUE:N2b" ], [ "01", "010", "150", "VALUE:N1b" ], [ "01", "100,110,115,118", "150", "VALUE:N1b" ], [ "01", "121", "150", "ERROR:" ], [ "01", "122", "150", "VALUE:N1b" ], [ "01", "123", "150", "VALUE:N1b" ], [ "01", "124", "150", "VALUE:N1b" ], [ "01", "125", "150", "VALUE:N1b" ], [ "01", "128", "150", "ERROR:" ], [ "01", "152", "150", "VALUE:N2b" ], [ "01", "153", "150", "VALUE:N2b" ], [ "01", "155", "150", "VALUE:N2b" ], [ "01", "158", "150", "VALUE:N2b" ], [ "02-03", "010", "150", "VALUE:N2b" ], [ "02-03", "100,110,115,118", "150", "VALUE:N2b" ], [ "02-03", "121", "150", "ERROR:" ], [ "02-03", "122", "150", "VALUE:N2b" ], [ "02-03", "123", "150", "VALUE:N2b" ], [ "02-03", "124", "150", "VALUE:N2b" ], [ "02-03", "125", "150", "VALUE:N2b" ], [ "02-03", "128", "150", "ERROR:" ], [ "02-03", "152", "150", "VALUE:N2b" ], [ "02-03", "153", "150", "VALUE:N2b" ], [ "02-03", "155", "150", "VALUE:N2b" ], [ "02-03", "158", "150", "VALUE:N2b" ], [ "04-90", "010", "150", "VALUE:N3" ], [ "04-90", "100,110,115,118", "150", "VALUE:N3" ], [ "04-90", "121", "150", "ERROR:" ], [ "04-90", "122", "150", "VALUE:N3" ], [ "04-90", "123", "150", "VALUE:N3" ], [ "04-90", "124", "150", "VALUE:N3" ], [ "04-90", "125", "150", "VALUE:N3" ], [ "04-90", "128", "150", "ERROR:" ], [ "04-90", "152", "150", "VALUE:N3" ], [ "04-90", "153", "150", "VALUE:N3" ], [ "04-90", "155", "150", "VALUE:N3" ], [ "04-90", "158", "150", "VALUE:N3" ], [ "95", "010", "150", "VALUE:N1b" ], [ "95", "100,110,115,118", "150", "VALUE:N1b" ], [ "95", "121", "150", "ERROR:" ], [ "95", "122", "150", "VALUE:N1b" ], [ "95", "123", "150", "VALUE:N1b" ], [ "95", "124", "150", "VALUE:N1b" ], [ "95", "125", "150", "VALUE:N1b" ], [ "95", "128", "150", "ERROR:" ], [ "95", "152", "150", "VALUE:N2b" ], [ "95", "153", "150", "VALUE:N2b" ], [ "95", "155", "150", "VALUE:N2b" ], [ "95", "158", "150", "VALUE:N2b" ], [ "97", "010", "150", "VALUE:N1b" ], [ "97", "100,110,115,118", "150", "VALUE:N1b" ], [ "97", "121", "150", "ERROR:" ], [ "97", "122", "150", "VALUE:N1b" ], [ "97", "123", "150", "VALUE:N1b" ], [ "97", "124", "150", "VALUE:N1b" ], [ "97", "125", "150", "VALUE:N1b" ], [ "97", "128", "150", "ERROR:" ], [ "97", "152", "150", "VALUE:N2b" ], [ "97", "153", "150", "VALUE:N2b" ], [ "97", "155", "150", "VALUE:N2b" ], [ "97", "158", "150", "VALUE:N2b" ], [ "98", "010", "150", "VALUE:N1b" ], [ "98", "100,110,115,118", "150", "VALUE:N1b" ], [ "98", "121", "150", "ERROR:" ], [ "98", "122", "150", "VALUE:N1b" ], [ "98", "123", "150", "VALUE:N1b" ], [ "98", "124", "150", "VALUE:N1b" ], [ "98", "125", "150", "VALUE:N1b" ], [ "98", "128", "150", "ERROR:" ], [ "98", "152", "150", "VALUE:N2b" ], [ "98", "153", "150", "VALUE:N2b" ], [ "98", "155", "150", "VALUE:N2b" ], [ "98", "158", "150", "VALUE:N2b" ], [ "99", "010", "150", "VALUE:N1b" ], [ "99", "100,110,115,118", "150", "VALUE:N1b" ], [ "99", "121", "150", "ERROR:" ], [ "99", "122", "150", "VALUE:N1b" ], [ "99", "123", "150", "VALUE:N1b" ], [ "99", "124", "150", "VALUE:N1b" ], [ "99", "125", "150", "VALUE:N1b" ], [ "99", "128", "150", "ERROR:" ], [ "99", "152", "150", "VALUE:N2b" ], [ "99", "153", "150", "VALUE:N2b" ], [ "99", "155", "150", "VALUE:N2b" ], [ "99", "158", "150", "VALUE:N2b" ], [ "00", "010", "988", "ERROR:" ], [ "00", "100,110,115,118", "988", "ERROR:" ], [ "00", "121", "988", "ERROR:" ], [ "00", "122", "988", "ERROR:" ], [ "00", "123", "988", "ERROR:" ], [ "00", "124", "988", "ERROR:" ], [ "00", "125", "988", "ERROR:" ], [ "00", "128", "988", "ERROR:" ], [ "00", "152", "988", "ERROR:" ], [ "00", "153", "988", "ERROR:" ], [ "00", "155", "988", "ERROR:" ], [ "00", "158", "988", "ERROR:" ], [ "01", "010", "988", "ERROR:" ], [ "01", "100,110,115,118", "988", "ERROR:" ], [ "01", "121", "988", "ERROR:" ], [ "01", "122", "988", "ERROR:" ], [ "01", "123", "988", "ERROR:" ], [ "01", "124", "988", "ERROR:" ], [ "01", "125", "988", "ERROR:" ], [ "01", "128", "988", "ERROR:" ], [ "01", "152", "988", "ERROR:" ], [ "01", "153", "988", "ERROR:" ], [ "01", "155", "988", "ERROR:" ], [ "01", "158", "988", "ERROR:" ], [ "02-03", "010", "988", "ERROR:" ], [ "02-03", "100,110,115,118", "988", "ERROR:" ], [ "02-03", "121", "988", "ERROR:" ], [ "02-03", "122", "988", "ERROR:" ], [ "02-03", "123", "988", "ERROR:" ], [ "02-03", "124", "988", "ERROR:" ], [ "02-03", "125", "988", "ERROR:" ], [ "02-03", "128", "988", "ERROR:" ], [ "02-03", "152", "988", "ERROR:" ], [ "02-03", "153", "988", "ERROR:" ], [ "02-03", "155", "988", "ERROR:" ], [ "02-03", "158", "988", "ERROR:" ], [ "04-90", "010", "988", "ERROR:" ], [ "04-90", "100,110,115,118", "988", "ERROR:" ], [ "04-90", "121", "988", "ERROR:" ], [ "04-90", "122", "988", "ERROR:" ], [ "04-90", "123", "988", "ERROR:" ], [ "04-90", "124", "988", "ERROR:" ], [ "04-90", "125", "988", "ERROR:" ], [ "04-90", "128", "988", "ERROR:" ], [ "04-90", "152", "988", "ERROR:" ], [ "04-90", "153", "988", "ERROR:" ], [ "04-90", "155", "988", "ERROR:" ], [ "04-90", "158", "988", "ERROR:" ], [ "95", "010", "988", "ERROR:" ], [ "95", "100,110,115,118", "988", "ERROR:" ], [ "95", "121", "988", "ERROR:" ], [ "95", "122", "988", "ERROR:" ], [ "95", "123", "988", "ERROR:" ], [ "95", "124", "988", "ERROR:" ], [ "95", "125", "988", "ERROR:" ], [ "95", "128", "988", "ERROR:" ], [ "95", "152", "988", "ERROR:" ], [ "95", "153", "988", "ERROR:" ], [ "95", "155", "988", "ERROR:" ], [ "95", "158", "988", "ERROR:" ], [ "97", "010", "988", "ERROR:" ], [ "97", "100,110,115,118", "988", "ERROR:" ], [ "97", "121", "988", "ERROR:" ], [ "97", "122", "988", "ERROR:" ], [ "97", "123", "988", "ERROR:" ], [ "97", "124", "988", "ERROR:" ], [ "97", "125", "988", "ERROR:" ], [ "97", "128", "988", "ERROR:" ], [ "97", "152", "988", "ERROR:" ], [ "97", "153", "988", "ERROR:" ], [ "97", "155", "988", "ERROR:" ], [ "97", "158", "988", "ERROR:" ], [ "98", "010", "988", "ERROR:" ], [ "98", "100,110,115,118", "988", "ERROR:" ], [ "98", "121", "988", "ERROR:" ], [ "98", "122", "988", "ERROR:" ], [ "98", "123", "988", "ERROR:" ], [ "98", "124", "988", "ERROR:" ], [ "98", "125", "988", "ERROR:" ], [ "98", "128", "988", "ERROR:" ], [ "98", "152", "988", "ERROR:" ], [ "98", "153", "988", "ERROR:" ], [ "98", "155", "988", "ERROR:" ], [ "98", "158", "988", "ERROR:" ], [ "99", "010", "988", "ERROR:" ], [ "99", "100,110,115,118", "988", "ERROR:" ], [ "99", "121", "988", "ERROR:" ], [ "99", "122", "988", "ERROR:" ], [ "99", "123", "988", "ERROR:" ], [ "99", "124", "988", "ERROR:" ], [ "99", "125", "988", "ERROR:" ], [ "99", "128", "988", "ERROR:" ], [ "99", "152", "988", "ERROR:" ], [ "99", "153", "988", "ERROR:" ], [ "99", "155", "988", "ERROR:" ], [ "99", "158", "988", "ERROR:" ], [ "00", "010", "999", "VALUE:N1a" ], [ "00", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "00", "121", "999", "ERROR:" ], [ "00", "122", "999", "VALUE:N1a" ], [ "00", "123", "999", "VALUE:N1b" ], [ "00", "124", "999", "VALUE:N1NOS" ], [ "00", "125", "999", "VALUE:N1NOS" ], [ "00", "128", "999", "ERROR:" ], [ "00", "152", "999", "VALUE:N2a" ], [ "00", "153", "999", "VALUE:N2b" ], [ "00", "155", "999", "VALUE:N2NOS" ], [ "00", "158", "999", "VALUE:N2NOS" ], [ "01", "010", "999", "VALUE:N1a" ], [ "01", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "01", "121", "999", "ERROR:" ], [ "01", "122", "999", "VALUE:N1a" ], [ "01", "123", "999", "VALUE:N1b" ], [ "01", "124", "999", "VALUE:N1NOS" ], [ "01", "125", "999", "VALUE:N1NOS" ], [ "01", "128", "999", "ERROR:" ], [ "01", "152", "999", "VALUE:N2a" ], [ "01", "153", "999", "VALUE:N2b" ], [ "01", "155", "999", "VALUE:N2NOS" ], [ "01", "158", "999", "VALUE:N2NOS" ], [ "02-03", "010", "999", "VALUE:N2a" ], [ "02-03", "100,110,115,118", "999", "VALUE:N2NOS" ], [ "02-03", "121", "999", "ERROR:" ], [ "02-03", "122", "999", "VALUE:N2a" ], [ "02-03", "123", "999", "VALUE:N2b" ], [ "02-03", "124", "999", "VALUE:N2NOS" ], [ "02-03", "125", "999", "VALUE:N2NOS" ], [ "02-03", "128", "999", "ERROR:" ], [ "02-03", "152", "999", "VALUE:N2a" ], [ "02-03", "153", "999", "VALUE:N2b" ], [ "02-03", "155", "999", "VALUE:N2NOS" ], [ "02-03", "158", "999", "VALUE:N2NOS" ], [ "04-90", "010", "999", "VALUE:N3" ], [ "04-90", "100,110,115,118", "999", "VALUE:N3" ], [ "04-90", "121", "999", "ERROR:" ], [ "04-90", "122", "999", "VALUE:N3" ], [ "04-90", "123", "999", "VALUE:N3" ], [ "04-90", "124", "999", "VALUE:N3" ], [ "04-90", "125", "999", "VALUE:N3" ], [ "04-90", "128", "999", "ERROR:" ], [ "04-90", "152", "999", "VALUE:N3" ], [ "04-90", "153", "999", "VALUE:N3" ], [ "04-90", "155", "999", "VALUE:N3" ], [ "04-90", "158", "999", "VALUE:N3" ], [ "95", "010", "999", "VALUE:N1a" ], [ "95", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "95", "121", "999", "ERROR:" ], [ "95", "122", "999", "VALUE:N1a" ], [ "95", "123", "999", "VALUE:N1b" ], [ "95", "124", "999", "VALUE:N1NOS" ], [ "95", "125", "999", "VALUE:N1NOS" ], [ "95", "128", "999", "ERROR:" ], [ "95", "152", "999", "VALUE:N2a" ], [ "95", "153", "999", "VALUE:N2b" ], [ "95", "155", "999", "VALUE:N2NOS" ], [ "95", "158", "999", "VALUE:N2NOS" ], [ "97", "010", "999", "VALUE:N1a" ], [ "97", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "97", "121", "999", "ERROR:" ], [ "97", "122", "999", "VALUE:N1a" ], [ "97", "123", "999", "VALUE:N1b" ], [ "97", "124", "999", "VALUE:N1NOS" ], [ "97", "125", "999", "VALUE:N1NOS" ], [ "97", "128", "999", "ERROR:" ], [ "97", "152", "999", "VALUE:N2a" ], [ "97", "153", "999", "VALUE:N2b" ], [ "97", "155", "999", "VALUE:N2NOS" ], [ "97", "158", "999", "VALUE:N2NOS" ], [ "98", "010", "999", "VALUE:N1a" ], [ "98", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "98", "121", "999", "ERROR:" ], [ "98", "122", "999", "VALUE:N1a" ], [ "98", "123", "999", "VALUE:N1b" ], [ "98", "124", "999", "VALUE:N1NOS" ], [ "98", "125", "999", "VALUE:N1NOS" ], [ "98", "128", "999", "ERROR:" ], [ "98", "152", "999", "VALUE:N2a" ], [ "98", "153", "999", "VALUE:N2b" ], [ "98", "155", "999", "VALUE:N2NOS" ], [ "98", "158", "999", "VALUE:N2NOS" ], [ "99", "010", "999", "VALUE:N1a" ], [ "99", "100,110,115,118", "999", "VALUE:N1NOS" ], [ "99", "121", "999", "ERROR:" ], [ "99", "122", "999", "VALUE:N1a" ], [ "99", "123", "999", "VALUE:N1b" ], [ "99", "124", "999", "VALUE:N1NOS" ], [ "99", "125", "999", "VALUE:N1NOS" ], [ "99", "128", "999", "ERROR:" ], [ "99", "152", "999", "VALUE:N2a" ], [ "99", "153", "999", "VALUE:N2b" ], [ "99", "155", "999", "VALUE:N2NOS" ], [ "99", "158", "999", "VALUE:N2NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdf.json
deleted file mode 100644
index 4a7ee9722..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdf.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval Prior to V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval Prior to V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 1 or 9. The N category for AJCC 7 staging is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.685Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-00", "000", "ERROR:" ], [ "01-03", "000", "ERROR:" ], [ "04-90", "000", "ERROR:" ], [ "95,97", "000", "ERROR:" ], [ "98-99", "000", "ERROR:" ], [ "00-00", "100", "VALUE:N1" ], [ "01-03", "100", "VALUE:N1" ], [ "04-90", "100", "VALUE:N2" ], [ "95,97", "100", "VALUE:N1" ], [ "98-99", "100", "VALUE:N1" ], [ "00-00", "200", "VALUE:N2" ], [ "01-03", "200", "VALUE:N2" ], [ "04-90", "200", "VALUE:N2" ], [ "95,97", "200", "VALUE:N2" ], [ "98-99", "200", "VALUE:N2" ], [ "00-00", "400", "VALUE:N1" ], [ "01-03", "400", "VALUE:N1" ], [ "04-90", "400", "VALUE:N2" ], [ "95,97", "400", "VALUE:N1" ], [ "98-99", "400", "VALUE:N1" ], [ "00-00", "888", "ERROR:" ], [ "01-03", "888", "ERROR:" ], [ "04-90", "888", "ERROR:" ], [ "95,97", "888", "ERROR:" ], [ "98-99", "888", "ERROR:" ], [ "00-00", "988", "ERROR:" ], [ "01-03", "988", "ERROR:" ], [ "04-90", "988", "ERROR:" ], [ "95,97", "988", "ERROR:" ], [ "98-99", "988", "ERROR:" ], [ "00-00", "999", "VALUE:N1" ], [ "01-03", "999", "VALUE:N1" ], [ "04-90", "999", "VALUE:N2" ], [ "95,97", "999", "VALUE:N1" ], [ "98-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdh.json
deleted file mode 100644
index abe1ff3ad..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdh.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xdh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval Prior to V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval Prior to V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 1 or 9 and CS Coding System Original is before CS v02.05. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.736Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-00", "000", "ERROR:" ], [ "01-02", "000", "ERROR:" ], [ "03-06", "000", "ERROR:" ], [ "07-15", "000", "ERROR:" ], [ "16-90", "000", "ERROR:" ], [ "95,97", "000", "ERROR:" ], [ "98-99", "000", "ERROR:" ], [ "00-00", "100", "VALUE:N1" ], [ "01-02", "100", "VALUE:N1" ], [ "03-06", "100", "VALUE:N2" ], [ "07-15", "100", "VALUE:N3a" ], [ "16-90", "100", "VALUE:N3b" ], [ "95,97", "100", "VALUE:N1" ], [ "98-99", "100", "VALUE:N1" ], [ "00-00", "200", "VALUE:N2" ], [ "01-02", "200", "VALUE:N2" ], [ "03-06", "200", "VALUE:N2" ], [ "07-15", "200", "VALUE:N3a" ], [ "16-90", "200", "VALUE:N3b" ], [ "95,97", "200", "VALUE:N2" ], [ "98-99", "200", "VALUE:N2" ], [ "00-00", "300", "VALUE:N3NOS" ], [ "01-02", "300", "VALUE:N3NOS" ], [ "03-06", "300", "VALUE:N3NOS" ], [ "07-15", "300", "VALUE:N3a" ], [ "16-90", "300", "VALUE:N3b" ], [ "95,97", "300", "VALUE:N3NOS" ], [ "98-99", "300", "VALUE:N3NOS" ], [ "00-00", "310", "VALUE:N3a" ], [ "01-02", "310", "VALUE:N3a" ], [ "03-06", "310", "VALUE:N3a" ], [ "07-15", "310", "VALUE:N3b" ], [ "16-90", "310", "VALUE:N3b" ], [ "95,97", "310", "VALUE:N3a" ], [ "98-99", "310", "VALUE:N3a" ], [ "00-00", "320", "VALUE:N3b" ], [ "01-02", "320", "VALUE:N3b" ], [ "03-06", "320", "VALUE:N3b" ], [ "07-15", "320", "VALUE:N3a" ], [ "16-90", "320", "VALUE:N3b" ], [ "95,97", "320", "VALUE:N3b" ], [ "98-99", "320", "VALUE:N3b" ], [ "00-00", "400", "VALUE:N1" ], [ "01-02", "400", "VALUE:N1" ], [ "03-06", "400", "VALUE:N2" ], [ "07-15", "400", "VALUE:N3a" ], [ "16-90", "400", "VALUE:N3b" ], [ "95,97", "400", "VALUE:N1" ], [ "98-99", "400", "VALUE:N1" ], [ "00-00", "888", "ERROR:" ], [ "01-02", "888", "ERROR:" ], [ "03-06", "888", "ERROR:" ], [ "07-15", "888", "ERROR:" ], [ "16-90", "888", "ERROR:" ], [ "95,97", "888", "ERROR:" ], [ "98-99", "888", "ERROR:" ], [ "00-00", "988", "ERROR:" ], [ "01-02", "988", "ERROR:" ], [ "03-06", "988", "ERROR:" ], [ "07-15", "988", "ERROR:" ], [ "16-90", "988", "ERROR:" ], [ "95,97", "988", "ERROR:" ], [ "98-99", "988", "ERROR:" ], [ "00-00", "999", "VALUE:N1" ], [ "01-02", "999", "VALUE:N1" ], [ "03-06", "999", "VALUE:N2" ], [ "07-15", "999", "VALUE:N3a" ], [ "16-90", "999", "VALUE:N3b" ], [ "95,97", "999", "VALUE:N1" ], [ "98-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xee.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xee.json
deleted file mode 100644
index 09101f7e3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xee.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xee",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval Prior to V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval Prior to V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 1 or 9 and CS Coding System Original is before CS V02.05. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.792Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "000", "ERROR:" ], [ "04-90", "000", "ERROR:" ], [ "95,97-99", "000", "ERROR:" ], [ "00-03", "100", "VALUE:N1" ], [ "04-90", "100", "VALUE:N2" ], [ "95,97-99", "100", "VALUE:N1" ], [ "00-03", "200", "VALUE:N2" ], [ "04-90", "200", "VALUE:N2" ], [ "95,97-99", "200", "VALUE:N2" ], [ "00-03", "400", "VALUE:N1" ], [ "04-90", "400", "VALUE:N2" ], [ "95,97-99", "400", "VALUE:N1" ], [ "00-03", "888", "ERROR:" ], [ "04-90", "888", "ERROR:" ], [ "95,97-99", "888", "ERROR:" ], [ "00-03", "988,999", "VALUE:N1" ], [ "04-90", "988,999", "VALUE:N2" ], [ "95,97-99", "988,999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfq.json
deleted file mode 100644
index 8044f8047..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfq.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval Prior to V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval Prior to V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 1 or 9 and CS Coding System Original is before CS v02.05. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.840Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "ERROR:" ], [ "01-02", "000", "ERROR:" ], [ "03-06", "000", "ERROR:" ], [ "07-90", "000", "ERROR:" ], [ "95,97", "000", "ERROR:" ], [ "98-99", "000", "ERROR:" ], [ "00", "100", "VALUE:N1" ], [ "01-02", "100", "VALUE:N1" ], [ "03-06", "100", "VALUE:N2" ], [ "07-90", "100", "VALUE:N3" ], [ "95,97", "100", "VALUE:N1" ], [ "98-99", "100", "VALUE:N1" ], [ "00", "200", "VALUE:N2" ], [ "01-02", "200", "VALUE:N2" ], [ "03-06", "200", "VALUE:N2" ], [ "07-90", "200", "VALUE:N3" ], [ "95,97", "200", "VALUE:N2" ], [ "98-99", "200", "VALUE:N2" ], [ "00", "300", "VALUE:N3" ], [ "01-02", "300", "VALUE:N3" ], [ "03-06", "300", "VALUE:N2" ], [ "07-90", "300", "VALUE:N3" ], [ "95,97", "300", "VALUE:N3" ], [ "98-99", "300", "VALUE:N3" ], [ "00", "400", "VALUE:N1" ], [ "01-02", "400", "VALUE:N1" ], [ "03-06", "400", "VALUE:N2" ], [ "07-90", "400", "VALUE:N3" ], [ "95,97", "400", "VALUE:N1" ], [ "98-99", "400", "VALUE:N1" ], [ "00", "888", "ERROR:" ], [ "01-02", "888", "ERROR:" ], [ "03-06", "888", "ERROR:" ], [ "07-90", "888", "ERROR:" ], [ "95,97", "888", "ERROR:" ], [ "98-99", "888", "ERROR:" ], [ "00", "988", "ERROR:" ], [ "01-02", "988", "ERROR:" ], [ "03-06", "988", "ERROR:" ], [ "07-90", "988", "ERROR:" ], [ "95,97", "988", "ERROR:" ], [ "98-99", "988", "ERROR:" ], [ "00", "999", "VALUE:N1" ], [ "01-02", "999", "VALUE:N1" ], [ "03-06", "999", "VALUE:N2" ], [ "07-90", "999", "VALUE:N3" ], [ "95,97", "999", "VALUE:N1" ], [ "98-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfs.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfs.json
deleted file mode 100644
index 2fb0978ba..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfs.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xfs",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval Prior to V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval Prior to V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-400, 450, and 500 ONLY and CS Lymph Nodes Eval is 1 or 9 and CS Coding System Original is before CS v02.05. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.892Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "ERROR:" ], [ "01-02", "000", "ERROR:" ], [ "03-06", "000", "ERROR:" ], [ "07-90", "000", "ERROR:" ], [ "95,97", "000", "ERROR:" ], [ "98-99", "000", "ERROR:" ], [ "00", "100", "VALUE:N1" ], [ "01-02", "100", "VALUE:N1" ], [ "03-06", "100", "VALUE:N2" ], [ "07-90", "100", "VALUE:N3" ], [ "95,97", "100", "VALUE:N1" ], [ "98-99", "100", "VALUE:N1" ], [ "00", "200", "VALUE:N2" ], [ "01-02", "200", "VALUE:N2" ], [ "03-06", "200", "VALUE:N2" ], [ "07-90", "200", "VALUE:N3" ], [ "95,97", "200", "VALUE:N2" ], [ "98-99", "200", "VALUE:N2" ], [ "00", "300", "VALUE:N3" ], [ "01-02", "300", "VALUE:N3" ], [ "03-06", "300", "VALUE:N3" ], [ "07-90", "300", "VALUE:N3" ], [ "95,97", "300", "VALUE:N3" ], [ "98-99", "300", "VALUE:N3" ], [ "00", "400", "VALUE:N1" ], [ "01-02", "400", "VALUE:N1" ], [ "03-06", "400", "VALUE:N2" ], [ "07-90", "400", "VALUE:N3" ], [ "95,97", "400", "VALUE:N1" ], [ "98-99", "400", "VALUE:N1" ], [ "00", "888", "ERROR:" ], [ "01-02", "888", "ERROR:" ], [ "03-06", "888", "ERROR:" ], [ "07-90", "888", "ERROR:" ], [ "95,97", "888", "ERROR:" ], [ "98-99", "888", "ERROR:" ], [ "00", "988", "ERROR:" ], [ "01-02", "988", "ERROR:" ], [ "03-06", "988", "ERROR:" ], [ "07-90", "988", "ERROR:" ], [ "95,97", "988", "ERROR:" ], [ "98-99", "988", "ERROR:" ], [ "00", "999", "VALUE:N1" ], [ "01-02", "999", "VALUE:N1" ], [ "03-06", "999", "VALUE:N2" ], [ "07-90", "999", "VALUE:N3" ], [ "95,97", "999", "VALUE:N1" ], [ "98-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh.json
deleted file mode 100644
index cd294e436..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_priorto_v0205_ajcc7_xqh",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval Prior to V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval Prior to V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 1 or 9 and CS Coding System Original is before CS V02.05. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.940Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "ERROR:" ], [ "01", "000", "ERROR:" ], [ "02-03", "000", "ERROR:" ], [ "04-06", "000", "ERROR:" ], [ "07-90", "000", "ERROR:" ], [ "95,97-99", "000", "ERROR:" ], [ "00", "010", "VALUE:N1a" ], [ "01", "010", "VALUE:N1a" ], [ "02-03", "010", "VALUE:N1b" ], [ "04-06", "010", "VALUE:N2a" ], [ "07-90", "010", "VALUE:N2b" ], [ "95,97-99", "010", "VALUE:N1a" ], [ "00", "020", "VALUE:N1b" ], [ "01", "020", "VALUE:N1b" ], [ "02-03", "020", "VALUE:N1b" ], [ "04-06", "020", "VALUE:N2a" ], [ "07-90", "020", "VALUE:N2b" ], [ "95,97-99", "020", "VALUE:N1b" ], [ "00", "030", "ERROR:" ], [ "01", "030", "ERROR:" ], [ "02-03", "030", "ERROR:" ], [ "04-06", "030", "ERROR:" ], [ "07-90", "030", "ERROR:" ], [ "95,97-99", "030", "ERROR:" ], [ "00", "100", "VALUE:N1NOS" ], [ "01", "100", "VALUE:N1a" ], [ "02-03", "100", "VALUE:N1b" ], [ "04-06", "100", "VALUE:N2a" ], [ "07-90", "100", "VALUE:N2b" ], [ "95,97-99", "100", "VALUE:N1NOS" ], [ "00", "110", "VALUE:N2a" ], [ "01", "110", "VALUE:N2a" ], [ "02-03", "110", "VALUE:N2a" ], [ "04-06", "110", "VALUE:N2a" ], [ "07-90", "110", "VALUE:N2b " ], [ "95,97-99", "110", "VALUE:N2a " ], [ "00", "120", "VALUE:N2b" ], [ "01", "120", "VALUE:N2b" ], [ "02-03", "120", "VALUE:N2b" ], [ "04-06", "120", "VALUE:N2b" ], [ "07-90", "120", "VALUE:N2b" ], [ "95,97-99", "120", "VALUE:N2b" ], [ "00", "200", "VALUE:N2NOS" ], [ "01", "200", "VALUE:N2NOS" ], [ "02-03", "200", "VALUE:N2NOS" ], [ "04-06", "200", "VALUE:N2a" ], [ "07-90", "200", "VALUE:N2b" ], [ "95,97-99", "200", "VALUE:N2NOS" ], [ "00", "400", "VALUE:N1NOS" ], [ "01", "400", "VALUE:N1a" ], [ "02-03", "400", "VALUE:N1b" ], [ "04-06", "400", "VALUE:N2a" ], [ "07-90", "400", "VALUE:N2b" ], [ "95,97-99", "400", "VALUE:N1NOS" ], [ "00", "888", "ERROR:" ], [ "01", "888", "ERROR:" ], [ "02-03", "888", "ERROR:" ], [ "04-06", "888", "ERROR:" ], [ "07-90", "888", "ERROR:" ], [ "95,97-99", "888", "ERROR:" ], [ "00", "988", "VALUE:N1NOS" ], [ "01", "988", "VALUE:N1a" ], [ "02-03", "988", "VALUE:N1b" ], [ "04-06", "988", "VALUE:N2a" ], [ "07-90", "988", "VALUE:N2b" ], [ "95,97-99", "988", "VALUE:N1NOS" ], [ "00", "999", "VALUE:N1NOS" ], [ "01", "999", "VALUE:N1a" ], [ "02-03", "999", "VALUE:N1b" ], [ "04-06", "999", "VALUE:N2a" ], [ "07-90", "999", "VALUE:N2b" ], [ "95,97-99", "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xaj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xaj.json
deleted file mode 100644
index 223a26d9e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xaj.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_v0205_ajcc7_xaj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and (CS Lymph Nodes Eval = 0, 5 OR (CS Lymph Nodes Eval is 1, 9 and CS Coding System Original at least V02.05)). The N category is determined based on the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.989Z",
- "definition" : [ {
- "key" : "ssf2",
- "name" : "CS SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "010", "VALUE:N1a" ], [ "020", "VALUE:N1b" ], [ "030", "ERROR:" ], [ "100", "VALUE:N1NOS" ], [ "110", "VALUE:N2a" ], [ "120", "VALUE:N2b" ], [ "200", "VALUE:N2NOS" ], [ "400", "VALUE:N1NOS" ], [ "888", "ERROR:" ], [ "988", "VALUE:N1NOS" ], [ "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xam.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xam.json
deleted file mode 100644
index 6ebf2dbfc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xam.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_v0205_ajcc7_xam",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and (CS Lymph Nodes Eval = 0, 5 OR (CS Lymph Nodes Eval is 1,9 and CS Coding System Original at least V02.05)). The N category is determined based on the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:24.034Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "100", "VALUE:N1" ], [ "200", "VALUE:N2" ], [ "300", "VALUE:N3NOS" ], [ "310", "VALUE:N3a" ], [ "320", "VALUE:N3b" ], [ "400", "VALUE:N1" ], [ "888", "ERROR:" ], [ "988", "ERROR:" ], [ "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xao.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xao.json
deleted file mode 100644
index b2c1dfbfc..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xao.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_v0205_ajcc7_xao",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and (CS Lymph Nodes Eval = 0, 5 OR (CS Lymph Nodes Eval is 1,9 and CS Coding System Original at least V02.05)). The N category is determined based on the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:24.078Z",
- "definition" : [ {
- "key" : "ssf2",
- "name" : "CS SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "100", "VALUE:N1" ], [ "200", "VALUE:N2" ], [ "400", "VALUE:N1" ], [ "888", "ERROR:" ], [ "988", "ERROR:" ], [ "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xaw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xaw.json
deleted file mode 100644
index c676039f1..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xaw.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_v0205_ajcc7_xaw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and [CS Lymph Nodes Eval = 0, 5 OR (CS Lymph Nodes Eval is 1, 9 and CS Coding System Original at least v02.05)]. The N category is determined based on the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:24.125Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "100", "VALUE:N1" ], [ "200", "VALUE:N2" ], [ "300", "VALUE:N3" ], [ "400", "VALUE:N1" ], [ "888", "ERROR:" ], [ "988", "ERROR:" ], [ "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xax.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xax.json
deleted file mode 100644
index d32d0f18d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xax.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_v0205_ajcc7_xax",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-400, 450, and 500 ONLY and [CS Lymph Nodes Eval = 0,5 OR (CS Lymph Nodes Eval is 1,9 and CS Coding System Original is at least V02.05)]. The N category is determined based on the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:24.173Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "100", "VALUE:N1" ], [ "200", "VALUE:N2" ], [ "300", "VALUE:N3" ], [ "400", "VALUE:N1" ], [ "888", "ERROR:" ], [ "988", "ERROR:" ], [ "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xcd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xcd.json
deleted file mode 100644
index 9c018cfa6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xcd.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_v0205_ajcc7_xcd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and (CS Lymph Nodes = 0, 5 OR (CS Lymph Nodes Eval is 1, 9 and CS Coding System Original is at least V02.05)). The N category is determined based on the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:24.220Z",
- "definition" : [ {
- "key" : "ssf2",
- "name" : "CS SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "100", "VALUE:N1" ], [ "200", "VALUE:N2" ], [ "400", "VALUE:N1" ], [ "888", "ERROR:" ], [ "988", "VALUE:N1" ], [ "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xch.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xch.json
deleted file mode 100644
index 141d38488..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_v0205_ajcc7_xch.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_v0205_ajcc7_xch",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval V0205 AJCC7",
- "title" : "Lymph Nodes Clinical Eval V02.05 AJCC 7 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 110-300 and (CS Lymph Nodes Eval = 0, 5 OR (CS Lymph Nodes Eval is 1,9 and CS Coding System Original at least V02.05)). The N category is determined based on the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:24.273Z",
- "definition" : [ {
- "key" : "ssf2",
- "name" : "CS SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "010", "VALUE:N1a" ], [ "020", "VALUE:N1b" ], [ "030", "ERROR:" ], [ "100", "VALUE:N1NOS" ], [ "110", "VALUE:N2a" ], [ "120", "VALUE:N2b" ], [ "200", "VALUE:N2NOS" ], [ "400", "VALUE:N1NOS" ], [ "888", "ERROR:" ], [ "988", "VALUE:N1NOS" ], [ "999", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_xgt.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_xgt.json
deleted file mode 100644
index 1ea11af8b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_eval_xgt.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_eval_xgt",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Eval",
- "title" : "Lymph Nodes Clinical Eval Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes Eval is coded 0 (c), 1(c), 5 (c), or 9 (c) and CS Lymph Nodes is coded 100-500 ONLY. The N category is assigned based on the value of CS Site-Specific Factor 5, Size of Metastasis in Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:24.318Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf5",
- "name" : "CS SSF 5",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000-003", "ERROR:", "ERROR:" ], [ "200", "000-003", "ERROR:", "ERROR:" ], [ "300", "000-003", "ERROR:", "ERROR:" ], [ "350", "000-003", "ERROR:", "ERROR:" ], [ "400", "000-003", "ERROR:", "ERROR:" ], [ "500", "000-003", "ERROR:", "ERROR:" ], [ "100", "010", "VALUE:N1", "VALUE:N1" ], [ "200", "010", "VALUE:N1", "VALUE:N1" ], [ "300", "010", "VALUE:N1", "VALUE:N1" ], [ "350", "010", "VALUE:N1", "VALUE:N1" ], [ "400", "010", "VALUE:N1", "VALUE:N1" ], [ "500", "010", "VALUE:N1", "VALUE:N1" ], [ "100", "020", "VALUE:N2", "VALUE:N2" ], [ "200", "020", "VALUE:N2", "VALUE:N2" ], [ "300", "020", "VALUE:N2", "VALUE:N2" ], [ "350", "020", "VALUE:N2", "VALUE:N2" ], [ "400", "020", "VALUE:N2", "VALUE:N2" ], [ "500", "020", "VALUE:N2", "VALUE:N2" ], [ "100", "030", "VALUE:N3", "VALUE:N3" ], [ "200", "030", "VALUE:N3", "VALUE:N3" ], [ "300", "030", "VALUE:N3", "VALUE:N3" ], [ "350", "030", "VALUE:N3", "VALUE:N3" ], [ "400", "030", "VALUE:N3", "VALUE:N3" ], [ "500", "030", "VALUE:N3", "VALUE:N3" ], [ "100", "988", "ERROR:", "ERROR:" ], [ "200", "988", "ERROR:", "ERROR:" ], [ "300", "988", "ERROR:", "ERROR:" ], [ "350", "988", "ERROR:", "ERROR:" ], [ "400", "988", "ERROR:", "ERROR:" ], [ "500", "988", "ERROR:", "ERROR:" ], [ "100", "998", "ERROR:", "ERROR:" ], [ "200", "998", "ERROR:", "ERROR:" ], [ "300", "998", "ERROR:", "ERROR:" ], [ "350", "998", "ERROR:", "ERROR:" ], [ "400", "998", "ERROR:", "ERROR:" ], [ "500", "998", "ERROR:", "ERROR:" ], [ "100", "999", "VALUE:N1", "VALUE:N1" ], [ "200", "999", "VALUE:N1", "VALUE:N1" ], [ "300", "999", "VALUE:N1", "VALUE:N1" ], [ "350", "999", "VALUE:N1", "VALUE:N1" ], [ "400", "999", "VALUE:N1", "VALUE:N1" ], [ "500", "999", "VALUE:N1", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation0or5_ajcc6_xbg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation0or5_ajcc6_xbg.json
deleted file mode 100644
index 25bb638dd..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation0or5_ajcc6_xbg.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation0or5_ajcc6_xbg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation 0 or 5 AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation 0 or 5 AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 0 or 5. The N category is determined based on the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.204Z",
- "definition" : [ {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "ERROR:" ], [ "100", "VALUE:N1" ], [ "200", "VALUE:N2" ], [ "300", "VALUE:N3" ], [ "400", "VALUE:N1" ], [ "888", "ERROR:" ], [ "988", "VALUE:N1" ], [ "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation1or9_ajcc6_xbf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation1or9_ajcc6_xbf.json
deleted file mode 100644
index b752cac90..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation1or9_ajcc6_xbf.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation1or9_ajcc6_xbf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation 1 or 9 AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation 1 or 9 AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 1 or 9. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.251Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1 000",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "ERROR:" ], [ "01-06", "000", "ERROR:" ], [ "07-15", "000", "ERROR:" ], [ "16-90", "000", "ERROR:" ], [ "95,97", "000", "ERROR:" ], [ "98-99", "000", "ERROR:" ], [ "00", "100", "VALUE:N1" ], [ "01-06", "100", "VALUE:N1" ], [ "07-15", "100", "VALUE:N2" ], [ "16-90", "100", "VALUE:N3" ], [ "95,97", "100", "VALUE:N1" ], [ "98-99", "100", "VALUE:N1" ], [ "00", "200", "VALUE:N2" ], [ "01-06", "200", "VALUE:N2" ], [ "07-15", "200", "VALUE:N2" ], [ "16-90", "200", "VALUE:N3" ], [ "95,97", "200", "VALUE:N2" ], [ "98-99", "200", "VALUE:N2" ], [ "00", "300", "VALUE:N3" ], [ "01-06", "300", "VALUE:N3" ], [ "07-15", "300", "VALUE:N3" ], [ "16-90", "300", "VALUE:N3" ], [ "95,97", "300", "VALUE:N3" ], [ "98-99", "300", "VALUE:N3" ], [ "00", "400", "VALUE:N1" ], [ "01-06", "400", "VALUE:N1" ], [ "07-15", "400", "VALUE:N2" ], [ "16-90", "400", "VALUE:N3" ], [ "95,97", "400", "VALUE:N1" ], [ "98-99", "400", "VALUE:N1" ], [ "00", "888", "ERROR:" ], [ "01-06", "888", "ERROR:" ], [ "07-15", "888", "ERROR:" ], [ "16-90", "888", "ERROR:" ], [ "95,97", "888", "ERROR:" ], [ "98-99", "888", "ERROR:" ], [ "00", "988", "VALUE:N1" ], [ "01-06", "988", "VALUE:N1" ], [ "07-15", "988", "VALUE:N2" ], [ "16-90", "988", "VALUE:N3" ], [ "95,97", "988", "VALUE:N1" ], [ "98-99", "988", "VALUE:N1" ], [ "00", "999", "VALUE:N1" ], [ "01-06", "999", "VALUE:N1" ], [ "07-15", "999", "VALUE:N2" ], [ "16-90", "999", "VALUE:N3" ], [ "95,97", "999", "VALUE:N1" ], [ "98-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation6th_xqf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation6th_xqf.json
deleted file mode 100644
index eaab9fb63..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation6th_xqf.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation6th_xqf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation 6th",
- "title" : "Lymph Nodes Clinical Evaluation 6th Table",
- "notes" : "**Note**: When CS Lymph Nodes is 050-300 and CS Regional Nodes Eval is 0, 1, 5, or 9, the N category for AJCC 6 staging is assigned based on the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes, and the number of positive nodes coded in Regional Nodes Positive as shown in this table.",
- "last_modified" : "2015-05-27T16:19:23.301Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "000", "VALUE:N1" ], [ "04-90", "000", "VALUE:N2" ], [ "95,97-99", "000", "VALUE:N1" ], [ "00-03", "100", "VALUE:N1" ], [ "04-90", "100", "VALUE:N2" ], [ "95,97-99", "100", "VALUE:N1" ], [ "00-03", "200", "VALUE:N2" ], [ "04-90", "200", "VALUE:N2" ], [ "95,97-99", "200", "VALUE:N2" ], [ "00-03", "400", "VALUE:N1" ], [ "04-90", "400", "VALUE:N2" ], [ "95,97-99", "400", "VALUE:N1" ], [ "00-03", "888", "ERROR:" ], [ "04-90", "888", "ERROR:" ], [ "95,97-99", "888", "ERROR:" ], [ "00-03", "988,999", "VALUE:N1" ], [ "04-90", "988,999", "VALUE:N2" ], [ "95,97-99", "988,999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbe.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbe.json
deleted file mode 100644
index fbc736ac9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbe.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation_ajcc6_xbe",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 0, 1, 5 or 9. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.346Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-00", "000", "ERROR:" ], [ "01-06", "000", "ERROR:" ], [ "07-15", "000", "ERROR:" ], [ "16-90", "000", "ERROR:" ], [ "95,97", "000", "ERROR:" ], [ "98-99", "000", "ERROR:" ], [ "00-00", "100", "VALUE:N1" ], [ "01-06", "100", "VALUE:N1" ], [ "07-15", "100", "VALUE:N2" ], [ "16-90", "100", "VALUE:N3" ], [ "95,97", "100", "VALUE:N1" ], [ "98-99", "100", "VALUE:N1" ], [ "00-00", "200", "VALUE:N2" ], [ "01-06", "200", "VALUE:N2" ], [ "07-15", "200", "VALUE:N2" ], [ "16-90", "200", "VALUE:N3" ], [ "95,97", "200", "VALUE:N2" ], [ "98-99", "200", "VALUE:N2" ], [ "00-00", "300,310,320", "VALUE:N3" ], [ "01-06", "300,310,320", "VALUE:N3" ], [ "07-15", "300,310,320", "VALUE:N3" ], [ "16-90", "300,310,320", "VALUE:N3" ], [ "95,97", "300,310,320", "VALUE:N3" ], [ "98-99", "300,310,320", "VALUE:N3" ], [ "00-00", "400", "VALUE:N1" ], [ "01-06", "400", "VALUE:N1" ], [ "07-15", "400", "VALUE:N2" ], [ "16-90", "400", "VALUE:N3" ], [ "95,97", "400", "VALUE:N1" ], [ "98-99", "400", "VALUE:N1" ], [ "00-00", "888", "ERROR:" ], [ "01-06", "888", "ERROR:" ], [ "07-15", "888", "ERROR:" ], [ "16-90", "888", "ERROR:" ], [ "95,97", "888", "ERROR:" ], [ "98-99", "888", "ERROR:" ], [ "00-00", "988", "VALUE:N1" ], [ "01-06", "988", "VALUE:N1" ], [ "07-15", "988", "VALUE:N2" ], [ "16-90", "988", "VALUE:N3" ], [ "95,97", "988", "VALUE:N1" ], [ "98-99", "988", "VALUE:N1" ], [ "00-00", "999", "VALUE:N1" ], [ "01-06", "999", "VALUE:N1" ], [ "07-15", "999", "VALUE:N2" ], [ "16-90", "999", "VALUE:N3" ], [ "95,97", "999", "VALUE:N1" ], [ "98-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbi.json
deleted file mode 100644
index 5f8a4615c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbi.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation_ajcc6_xbi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 0, 1, 5, or 9. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.398Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "000", "ERROR:" ], [ "04-90", "000", "ERROR:" ], [ "95,97-99", "000", "ERROR:" ], [ "00-03", "010", "VALUE:N1" ], [ "04-90", "010", "VALUE:N2" ], [ "95,97-99", "010", "VALUE:N1" ], [ "00-03", "020", "VALUE:N1" ], [ "04-90", "020", "VALUE:N2" ], [ "95,97-99", "020", "VALUE:N1" ], [ "00-03", "030", "ERROR:" ], [ "04-90", "030", "ERROR:" ], [ "95,97-99", "030", "ERROR:" ], [ "00-03", "100", "VALUE:N1" ], [ "04-90", "100", "VALUE:N2" ], [ "95,97-99", "100", "VALUE:N1" ], [ "00-03", "110", "VALUE:N2" ], [ "04-90", "110", "VALUE:N2" ], [ "95,97-99", "110", "VALUE:N2" ], [ "00-03", "120", "VALUE:N2" ], [ "04-90", "120", "VALUE:N2" ], [ "95,97-99", "120", "VALUE:N2" ], [ "00-03", "200", "VALUE:N2" ], [ "04-90", "200", "VALUE:N2" ], [ "95,97-99", "200", "VALUE:N2" ], [ "00-03", "400", "VALUE:N1" ], [ "04-90", "400", "VALUE:N2" ], [ "95,97-99", "400", "VALUE:N1" ], [ "00-03", "888", "ERROR:" ], [ "04-90", "888", "ERROR:" ], [ "95,97-99", "888", "ERROR:" ], [ "00-03", "988", "VALUE:N1" ], [ "04-90", "988", "VALUE:N2" ], [ "95,97-99", "988", "VALUE:N1" ], [ "00-03", "999", "VALUE:N1" ], [ "04-90", "999", "VALUE:N2" ], [ "95,97-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbj.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbj.json
deleted file mode 100644
index 5dcf76f62..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbj.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation_ajcc6_xbj",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 0, 1, 5, or 9. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.444Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "000", "ERROR:" ], [ "04-90", "000", "ERROR:" ], [ "95,97-99", "000", "ERROR:" ], [ "00-03", "010", "VALUE:N1" ], [ "04-90", "010", "VALUE:N2" ], [ "95,97-99", "010", "VALUE:N1" ], [ "00-03", "020", "VALUE:N1" ], [ "04-90", "020", "VALUE:N2" ], [ "95,97-99", "020", "VALUE:N1" ], [ "00-03", "030", "ERROR:" ], [ "04-90", "030", "ERROR:" ], [ "95,97-99", "030", "ERROR:" ], [ "00-03", "100", "VALUE:N1" ], [ "04-90", "100", "VALUE:N2" ], [ "95,97-99", "100", "VALUE:N1" ], [ "00-03", "110", "VALUE:N2" ], [ "04-90", "110", "VALUE:N2" ], [ "95,97-99", "110", "VALUE:N2" ], [ "00-03", "120", "VALUE:N2" ], [ "04-90", "120", "VALUE:N2" ], [ "95,97-99", "120", "VALUE:N2" ], [ "00-03", "200", "VALUE:N2" ], [ "04-90", "200", "VALUE:N2" ], [ "95,97-99", "200", "VALUE:N2" ], [ "00-03", "400", "VALUE:N1" ], [ "04-90", "400", "VALUE:N2" ], [ "95,97-99", "400", "VALUE:N1" ], [ "00-03", "888", "ERROR:" ], [ "04-90", "888", "ERROR:" ], [ "95,97-99", "888", "ERROR:" ], [ "00-03", "988", "VALUE:N1" ], [ "04-90", "988", "VALUE:N2" ], [ "95,97-99", "988", "VALUE:N1" ], [ "00-03", "999", "VALUE:N1" ], [ "04-90", "999", "VALUE:N2" ], [ "95,97-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbk.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbk.json
deleted file mode 100644
index 91ebf0f9d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xbk.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation_ajcc6_xbk",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 0, 1, 5 or 9. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.498Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "000", "ERROR:" ], [ "04-90", "000", "ERROR:" ], [ "95,97-99", "000", "ERROR:" ], [ "00-03", "100", "VALUE:N1" ], [ "04-90", "100", "VALUE:N2" ], [ "95,97-99", "100", "VALUE:N1" ], [ "00-03", "200", "VALUE:N2" ], [ "04-90", "200", "VALUE:N2" ], [ "95,97-99", "200", "VALUE:N2" ], [ "00-03", "400", "VALUE:N1" ], [ "04-90", "400", "VALUE:N2" ], [ "95,97-99", "400", "VALUE:N1" ], [ "00-03", "888", "ERROR:" ], [ "04-90", "888", "ERROR:" ], [ "95,97-99", "888", "ERROR:" ], [ "00-03", "988", "VALUE:N1" ], [ "04-90", "988", "VALUE:N2" ], [ "95,97-99", "988", "VALUE:N1" ], [ "00-03", "999", "VALUE:N1" ], [ "04-90", "999", "VALUE:N2" ], [ "95,97-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xpo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xpo.json
deleted file mode 100644
index 047e20955..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xpo.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation_ajcc6_xpo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 1 or 9. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 1, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.545Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "ERROR:" ], [ "01-06", "000", "ERROR:" ], [ "07-15", "000", "ERROR:" ], [ "16-90", "000", "ERROR:" ], [ "95,97", "000", "ERROR:" ], [ "98-99", "000", "ERROR:" ], [ "00", "100", "VALUE:N1" ], [ "01-06", "100", "VALUE:N1" ], [ "07-15", "100", "VALUE:N2" ], [ "16-90", "100", "VALUE:N3" ], [ "95,97", "100", "VALUE:N1" ], [ "98-99", "100", "VALUE:N1" ], [ "00", "200", "VALUE:N2" ], [ "01-06", "200", "VALUE:N2" ], [ "07-15", "200", "VALUE:N2" ], [ "16-90", "200", "VALUE:N3" ], [ "95,97", "200", "VALUE:N2" ], [ "98-99", "200", "VALUE:N2" ], [ "00", "300", "VALUE:N3" ], [ "01-06", "300", "VALUE:N3" ], [ "07-15", "300", "VALUE:N3" ], [ "16-90", "300", "VALUE:N3" ], [ "95,97", "300", "VALUE:N3" ], [ "98-99", "300", "VALUE:N3" ], [ "00", "400", "VALUE:N1" ], [ "01-06", "400", "VALUE:N1" ], [ "07-15", "400", "VALUE:N2" ], [ "16-90", "400", "VALUE:N3" ], [ "95,97", "400", "VALUE:N1" ], [ "98-99", "400", "VALUE:N1" ], [ "00", "888", "ERROR:" ], [ "01-06", "888", "ERROR:" ], [ "07-15", "888", "ERROR:" ], [ "16-90", "888", "ERROR:" ], [ "95,97", "888", "ERROR:" ], [ "98-99", "888", "ERROR:" ], [ "00", "988", "VALUE:N1" ], [ "01-06", "988", "VALUE:N1" ], [ "07-15", "988", "VALUE:N2" ], [ "16-90", "988", "VALUE:N3" ], [ "95,97", "988", "VALUE:N1" ], [ "98-99", "988", "VALUE:N1" ], [ "00", "999", "VALUE:N1" ], [ "01-06", "999", "VALUE:N1" ], [ "07-15", "999", "VALUE:N2" ], [ "16-90", "999", "VALUE:N3" ], [ "95,97", "999", "VALUE:N1" ], [ "98-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xpq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xpq.json
deleted file mode 100644
index 33a4133ae..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_ajcc6_xpq.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation_ajcc6_xpq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation AJCC6",
- "title" : "Lymph Nodes Clinical Evaluation AJCC 6 Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 0, 1, 5, or 9. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive and the value of CS Site-Specific Factor 2, Clinical Assessment of Regional Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.593Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "000", "VALUE:N1" ], [ "04-90", "000", "VALUE:N2" ], [ "95,97-99", "000", "VALUE:N1" ], [ "00-03", "100", "VALUE:N1" ], [ "04-90", "100", "VALUE:N2" ], [ "95,97-99", "100", "VALUE:N1" ], [ "00-03", "200", "VALUE:N2" ], [ "04-90", "200", "VALUE:N2" ], [ "95,97-99", "200", "VALUE:N2" ], [ "00-03", "400", "VALUE:N1" ], [ "04-90", "400", "VALUE:N2" ], [ "95,97-99", "400", "VALUE:N1" ], [ "00-03", "888", "ERROR:" ], [ "04-90", "888", "ERROR:" ], [ "95,97-99", "888", "ERROR:" ], [ "00-03", "988", "VALUE:N1" ], [ "04-90", "988", "VALUE:N2" ], [ "95,97-99", "988", "VALUE:N1" ], [ "00-03", "999", "VALUE:N1" ], [ "04-90", "999", "VALUE:N2" ], [ "95,97-99", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_xcx.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_xcx.json
deleted file mode 100644
index f7c9f4da6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_clinical_evaluation_xcx.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_clinical_evaluation_xcx",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Clinical Evaluation",
- "title" : "Lymph Nodes Clinical Evaluation Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes Eval is coded 0 (c), 1 (c), 5 (c), or 9 (c) and CS Lymph Nodes is coded 250, 258, 260, 280, 500, 510, 520, 600, 610, 620, 630, 720, or 748 ONLY. The N category is assigned based on the value of CS Lymph Nodes and the value of CS Site-Specific Factor 3, Number of Positive Ipsilateral Axillary Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:23.639Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "250", "000-090,095,097-099", "ERROR:", "ERROR:" ], [ "258", "000-090,095,097-099", "ERROR:", "ERROR:" ], [ "260", "000-090,095,097-099", "VALUE:N1", "VALUE:N1" ], [ "280", "000-090,095,097-099", "ERROR:", "VALUE:N2NOS" ], [ "500", "000-090,095,097-099", "ERROR:", "VALUE:N2a" ], [ "510", "000-090,095,097-099", "VALUE:N2a", "VALUE:N2a" ], [ "520", "000-090,095,097-099", "ERROR:", "ERROR:" ], [ "600", "000-090,095,097-099", "VALUE:N1", "VALUE:N1" ], [ "610", "000-090,095,097-099", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "000-090,095,097-099", "ERROR:", "ERROR:" ], [ "630", "000-090,095,097-099", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "000-090,095,097-099", "ERROR:", "ERROR:" ], [ "748", "000-090,095,097-099", "VALUE:N2b", "VALUE:N2b" ], [ "250", "988", "ERROR:", "ERROR:" ], [ "258", "988", "ERROR:", "ERROR:" ], [ "260", "988", "ERROR:", "ERROR:" ], [ "280", "988", "ERROR:", "ERROR:" ], [ "500", "988", "ERROR:", "ERROR:" ], [ "510", "988", "ERROR:", "ERROR:" ], [ "520", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "610", "988", "ERROR:", "ERROR:" ], [ "620", "988", "ERROR:", "ERROR:" ], [ "630", "988", "ERROR:", "ERROR:" ], [ "720", "988", "ERROR:", "ERROR:" ], [ "748", "988", "ERROR:", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xew.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xew.json
deleted file mode 100644
index 7094efb2f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xew.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xew",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Mets at DX codes 00 and 99, the M category for AJCC 6 staging is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.367Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000,100", "00", "VALUE:M0" ], [ "200,300", "00", "VALUE:M1" ], [ "350,800,805,999", "00", "VALUE:M0" ], [ "000,100", "99", "VALUE:MX" ], [ "200,300", "99", "VALUE:M1" ], [ "350,800,805,999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfh_m.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfh_m.json
deleted file mode 100644
index 4cd0d98cb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfh_m.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xfh_m",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6 - returning M",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table - returning M",
- "notes" : "**Note 1**: For CS Lymph Nodes codes 200 and 250 ONLY, the N and M categories for AJCC 6 staging and the 'c' and 'p' descriptors for N and M are assigned based on the values in CS Lymph Nodes, CS Nodes Eval, CS Mets at DX, and CS Mets Eval as shown in this table.\n\n**Note 2**: Not all users of Collaborative Stage collect the evaluation fields. Each empty cell in the table represents a \"blank\" or invalid code in the respective CS Nodes Eval or CS Mets Eval field.\n\n**Note 3**: If CS Nodes Eval and/or CS Mets Eval is \"blank\" or invalid (empty cell in the table), the N and M categories where CS Lymph Nodes = 200 or 250 are derived as if CS Nodes Eval and/or CS Mets Eval were coded as unknown or \"9\". No values are derived for the CS Lymph Nodes Eval and CS Mets Eval fields if both are \"blank\" or invalid; ERROR is derived for both CS Lymph Nodes Eval and CS Mets Eval if one is completed with a valid code and the other is invalid or empty.",
- "last_modified" : "2015-05-27T16:19:24.419Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "nodes_eval",
- "name" : "CS Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_mdescriptor",
- "name" : "M Staging Basis",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_m",
- "name" : "M Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "200", "0,1,5,9", "0,1,2,3,5,6,8,9", "00", "VALUE:c", "VALUE:M1" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "00", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", ", 4, 7", "00", "ERROR:", "VALUE:M1" ], [ "200", "2,3,6,8", "0,1,2,3,5,6,8,9", "00", "VALUE:p", "VALUE:M1b" ], [ "200", "2,3,6,8", ", 4, 7", "00", "ERROR:", "VALUE:M1b" ], [ "200", ", 4, 7", ", 4, 7", "00", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", "0,1,5,9", "20,30,35", "VALUE:c", "VALUE:M1" ], [ "200", ", 4, 7", "0,1,5,9", "20,30,35", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", ", 4, 7", "20,30,35", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", "2,3,6,8", "20,30,35", "VALUE:p", "VALUE:M1b" ], [ "200", ", 4, 7", "2,3,6,8", "20,30,35", "ERROR:", "VALUE:M1b" ], [ "200", "2,3,6,8", "0,1,5,9", "20,30,35", "VALUE:p", "VALUE:M1b" ], [ "200", "2,3,6,8", ", 4, 7", "20,30,35", "ERROR:", "VALUE:M1b" ], [ "200", "2,3,6,8", "2,3,6,8", "20,30,35", "VALUE:p", "VALUE:M1b" ], [ "200", ", 4, 7", ", 4, 7", "20,30,35", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", "0,1,5,9", "45", "VALUE:c", "VALUE:M1" ], [ "200", ", 4, 7", "0,1,5,9", "45", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", ", 4, 7", "45", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", "2,3,6,8", "45", "VALUE:p", "VALUE:M1b" ], [ "200", ", 4, 7", "2,3,6,8", "45", "ERROR:", "VALUE:M1b" ], [ "200", "2,3,6,8", "0,1,5,9", "45", "VALUE:p", "VALUE:M1b" ], [ "200", "2,3,6,8", ", 4, 7", "45", "ERROR:", "VALUE:M1b" ], [ "200", "2,3,6,8", "2,3,6,8", "45", "VALUE:p", "VALUE:M1b" ], [ "200", ", 4, 7", ", 4, 7", "45", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", "0,1,5,9", "60,65,70,75,80", "VALUE:c", "VALUE:M1" ], [ "200", ", 4, 7", "0,1,5,9", "60,65,70,75,80", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", "2,3,6,8", "60,65,70,75,80", "VALUE:p", "VALUE:M1b" ], [ "200", ", 4, 7", "2,3,6,8", "60,65,70,75,80", "ERROR:", "VALUE:M1b" ], [ "200", "2,3,6,8", "0,1,5,9", "60,65,70,75,80", "VALUE:p", "VALUE:M1b" ], [ "200", "2,3,6,8", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:M1b" ], [ "200", "2,3,6,8", "2,3,6,8", "60,65,70,75,80", "VALUE:p", "VALUE:M1b" ], [ "200", ", 4, 7", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", "0,1,2,3,5,6,8,9", "99", "VALUE:c", "VALUE:M1" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "99", "ERROR:", "VALUE:M1" ], [ "200", "0,1,5,9", ", 4, 7", "99", "ERROR:", "VALUE:M1" ], [ "200", "2,3,6,8", "0,1,2,3,5,6,8,9", "99", "VALUE:p", "VALUE:M1b" ], [ "200", "2,3,6,8", ", 4, 7", "99", "ERROR:", "VALUE:M1b" ], [ "200", ", 4, 7", ", 4, 7", "99", "ERROR:", "VALUE:M1" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "250", "0,1,5,9", "0,1,2,3,5,6,8,9", "00", "VALUE:c", "VALUE:M1" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "00", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", ", 4, 7", "00", "ERROR:", "VALUE:M1" ], [ "250", "2,3,6,8", "0,1,2,3,5,6,8,9", "00", "VALUE:p", "VALUE:M1b" ], [ "250", "2,3,6,8", ", 4, 7", "00", "ERROR:", "VALUE:M1b" ], [ "250", ", 4, 7", ", 4, 7", "00", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", "0,1,5,9", "20,30,35", "VALUE:c", "VALUE:M1" ], [ "250", ", 4, 7", "0,1,5,9", "20,30,35", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", ", 4, 7", "20,30,35", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", "2,3,6,8", "20,30,35", "VALUE:p", "VALUE:M1b" ], [ "250", ", 4, 7", "2,3,6,8", "20,30,35", "ERROR:", "VALUE:M1b" ], [ "250", "2,3,6,8", "0,1,5,9", "20,30,35", "VALUE:p", "VALUE:M1b" ], [ "250", "2,3,6,8", ", 4, 7", "20,30,35", "ERROR:", "VALUE:M1b" ], [ "250", "2,3,6,8", "2,3,6,8", "20,30,35", "VALUE:p", "VALUE:M1b" ], [ "250", ", 4, 7", ", 4, 7", "20,30,35", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", "0,1,5,9", "45", "VALUE:c", "VALUE:M1" ], [ "250", ", 4, 7", "0,1,5,9", "45", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", ", 4, 7", "45", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", "2,3,6,8", "45", "VALUE:p", "VALUE:M1b" ], [ "250", ", 4, 7", "2,3,6,8", "45", "ERROR:", "VALUE:M1b" ], [ "250", "2,3,6,8", "0,1,5,9", "45", "VALUE:p", "VALUE:M1b" ], [ "250", "2,3,6,8", ", 4, 7", "45", "ERROR:", "VALUE:M1b" ], [ "250", "2,3,6,8", "2,3,6,8", "45", "VALUE:p", "VALUE:M1b" ], [ "250", ", 4, 7", ", 4, 7", "45", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", "0,1,5,9", "60,65,70,75,80", "VALUE:c", "VALUE:M1" ], [ "250", ", 4, 7", "0,1,5,9", "60,65,70,75,80", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", "2,3,6,8", "60,65,70,75,80", "VALUE:p", "VALUE:M1b" ], [ "250", ", 4, 7", "2,3,6,8", "60,65,70,75,80", "ERROR:", "VALUE:M1b" ], [ "250", "2,3,6,8", "0,1,5,9", "60,65,70,75,80", "VALUE:p", "VALUE:M1b" ], [ "250", "2,3,6,8", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:M1b" ], [ "250", "2,3,6,8", "2,3,6,8", "60,65,70,75,80", "VALUE:p", "VALUE:M1b" ], [ "250", ", 4, 7", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", "0,1,2,3,5,6,8,9", "99", "VALUE:c", "VALUE:M1" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "99", "ERROR:", "VALUE:M1" ], [ "250", "0,1,5,9", ", 4, 7", "99", "ERROR:", "VALUE:M1" ], [ "250", "2,3,6,8", "0,1,2,3,5,6,8,9", "99", "VALUE:p", "VALUE:M1b" ], [ "250", "2,3,6,8", ", 4, 7", "99", "ERROR:", "VALUE:M1b" ], [ "250", ", 4, 7", ", 4, 7", "99", "ERROR:", "VALUE:M1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfh_n.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfh_n.json
deleted file mode 100644
index 3d8bf84ca..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfh_n.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xfh_n",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6 - returning N",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table - returning N",
- "notes" : "**Note 1**: For CS Lymph Nodes codes 200 and 250 ONLY, the N and M categories for AJCC 6 staging and the 'c' and 'p' descriptors for N and M are assigned based on the values in CS Lymph Nodes, CS Nodes Eval, CS Mets at DX, and CS Mets Eval as shown in this table.\n\n**Note 2**: Not all users of Collaborative Stage collect the evaluation fields. Each empty cell in the table represents a \"blank\" or invalid code in the respective CS Nodes Eval or CS Mets Eval field.\n\n**Note 3**: If CS Nodes Eval and/or CS Mets Eval is \"blank\" or invalid (empty cell in the table), the N and M categories where CS Lymph Nodes = 200 or 250 are derived as if CS Nodes Eval and/or CS Mets Eval were coded as unknown or \"9\". No values are derived for the CS Lymph Nodes Eval and CS Mets Eval fields if both are \"blank\" or invalid; ERROR is derived for both CS Lymph Nodes Eval and CS Mets Eval if one is completed with a valid code and the other is invalid or empty.",
- "last_modified" : "2015-05-27T16:19:24.498Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "nodes_eval",
- "name" : "CS Nodes Eval",
- "type" : "INPUT"
- }, {
- "key" : "mets_eval",
- "name" : "CS Mets Eval",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_ndescriptor",
- "name" : "N Staging Basis",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "N Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "200", "0,1,2,3,5,6,8,9", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "200", ", 4, 7", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "200", "0,1,5,9", "0,1,2,3,5,6,8,9", "00", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "00", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", ", 4, 7", "00", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "0,1,2,3,5,6,8,9", "00", "VALUE:c", "VALUE:N0" ], [ "200", "2,3,6,8", ", 4, 7", "00", "ERROR:", "VALUE:N0" ], [ "200", ", 4, 7", ", 4, 7", "00", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", "0,1,5,9", "20,30,35", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "0,1,5,9", "20,30,35", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", ", 4, 7", "20,30,35", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", "2,3,6,8", "20,30,35", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "2,3,6,8", "20,30,35", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "0,1,5,9", "20,30,35", "VALUE:c", "VALUE:N0" ], [ "200", "2,3,6,8", ", 4, 7", "20,30,35", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "2,3,6,8", "20,30,35", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", ", 4, 7", "20,30,35", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", "0,1,5,9", "45", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "0,1,5,9", "45", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", ", 4, 7", "45", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", "2,3,6,8", "45", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "2,3,6,8", "45", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "0,1,5,9", "45", "VALUE:c", "VALUE:N0" ], [ "200", "2,3,6,8", ", 4, 7", "45", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "2,3,6,8", "45", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", ", 4, 7", "45", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", "0,1,5,9", "60,65,70,75,80", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "0,1,5,9", "60,65,70,75,80", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", "2,3,6,8", "60,65,70,75,80", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "2,3,6,8", "60,65,70,75,80", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "0,1,5,9", "60,65,70,75,80", "VALUE:c", "VALUE:N0" ], [ "200", "2,3,6,8", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "2,3,6,8", "60,65,70,75,80", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", "0,1,2,3,5,6,8,9", "99", "VALUE:c", "VALUE:N0" ], [ "200", ", 4, 7", "0,1,2,3,5,6,8,9", "99", "ERROR:", "VALUE:N0" ], [ "200", "0,1,5,9", ", 4, 7", "99", "ERROR:", "VALUE:N0" ], [ "200", "2,3,6,8", "0,1,2,3,5,6,8,9", "99", "VALUE:c", "VALUE:N0" ], [ "200", "2,3,6,8", ", 4, 7", "99", "ERROR:", "VALUE:N0" ], [ "200", ", 4, 7", ", 4, 7", "99", "ERROR:", "VALUE:N0" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "10", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "10", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "40", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "40", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "50", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "50", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "55", "ERROR:", "ERROR:" ], [ "250", "0,1,2,3,5,6,8,9", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "250", ", 4, 7", ", 4, 7", "55", "ERROR:", "ERROR:" ], [ "250", "0,1,5,9", "0,1,2,3,5,6,8,9", "00", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "00", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", ", 4, 7", "00", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "0,1,2,3,5,6,8,9", "00", "VALUE:c", "VALUE:N1" ], [ "250", "2,3,6,8", ", 4, 7", "00", "ERROR:", "VALUE:N1" ], [ "250", ", 4, 7", ", 4, 7", "00", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", "0,1,5,9", "20,30,35", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "0,1,5,9", "20,30,35", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", ", 4, 7", "20,30,35", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", "2,3,6,8", "20,30,35", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "2,3,6,8", "20,30,35", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "0,1,5,9", "20,30,35", "VALUE:c", "VALUE:N1" ], [ "250", "2,3,6,8", ", 4, 7", "20,30,35", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "2,3,6,8", "20,30,35", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", ", 4, 7", "20,30,35", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", "0,1,5,9", "45", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "0,1,5,9", "45", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", ", 4, 7", "45", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", "2,3,6,8", "45", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "2,3,6,8", "45", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "0,1,5,9", "45", "VALUE:c", "VALUE:N1" ], [ "250", "2,3,6,8", ", 4, 7", "45", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "2,3,6,8", "45", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", ", 4, 7", "45", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", "0,1,5,9", "60,65,70,75,80", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "0,1,5,9", "60,65,70,75,80", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", "2,3,6,8", "60,65,70,75,80", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "2,3,6,8", "60,65,70,75,80", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "0,1,5,9", "60,65,70,75,80", "VALUE:c", "VALUE:N1" ], [ "250", "2,3,6,8", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "2,3,6,8", "60,65,70,75,80", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", ", 4, 7", "60,65,70,75,80", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", "0,1,2,3,5,6,8,9", "99", "VALUE:c", "VALUE:N1" ], [ "250", ", 4, 7", "0,1,2,3,5,6,8,9", "99", "ERROR:", "VALUE:N1" ], [ "250", "0,1,5,9", ", 4, 7", "99", "ERROR:", "VALUE:N1" ], [ "250", "2,3,6,8", "0,1,2,3,5,6,8,9", "99", "VALUE:c", "VALUE:N1" ], [ "250", "2,3,6,8", ", 4, 7", "99", "ERROR:", "VALUE:N1" ], [ "250", ", 4, 7", ", 4, 7", "99", "ERROR:", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfm.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfm.json
deleted file mode 100644
index a9e188132..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfm.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xfm",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "For CS Lymph Nodes codes 000 and 999, the N category for AJCC 6 staging is assigned based on the coding of CS Mets at DX as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.573Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "VALUE:N0" ], [ "05", "000", "VALUE:N1" ], [ "10", "000", "VALUE:N0" ], [ "20", "000", "VALUE:N1" ], [ "40", "000", "VALUE:N0" ], [ "45", "000", "VALUE:N1" ], [ "50", "000", "VALUE:N0" ], [ "55", "000", "VALUE:N0" ], [ "60", "000", "VALUE:N1" ], [ "99", "000", "VALUE:N0" ], [ "00", "999", "VALUE:NX" ], [ "05", "999", "VALUE:N1" ], [ "10", "999", "VALUE:NX" ], [ "20", "999", "VALUE:N1" ], [ "40", "999", "VALUE:NX" ], [ "45", "999", "VALUE:N1" ], [ "50", "999", "VALUE:NX" ], [ "55", "999", "VALUE:NX" ], [ "60", "999", "VALUE:N1" ], [ "99", "999", "VALUE:NX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfo.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfo.json
deleted file mode 100644
index deac987af..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xfo.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xfo",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Mets at DX codes 00 and 99, the M category for AJCC 6 staging is determined by the code in CS Lymph Nodes as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.634Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "00", "VALUE:M0" ], [ "150", "00", "VALUE:M0" ], [ "200", "00", "VALUE:M0" ], [ "350", "00", "VALUE:M0" ], [ "400", "00", "VALUE:M1" ], [ "450", "00", "VALUE:M1" ], [ "750", "00", "VALUE:M0" ], [ "800", "00", "VALUE:M0" ], [ "999", "00", "VALUE:M0" ], [ "000", "99", "VALUE:MX" ], [ "150", "99", "VALUE:MX" ], [ "200", "99", "VALUE:MX" ], [ "350", "99", "VALUE:MX" ], [ "400", "99", "VALUE:M1" ], [ "450", "99", "VALUE:M1" ], [ "750", "99", "VALUE:MX" ], [ "800", "99", "VALUE:MX" ], [ "999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xgq_m.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xgq_m.json
deleted file mode 100644
index cb351233f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xgq_m.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xgq_m",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6 - returning M",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table - returning M",
- "notes" : "**Note**: For CS Lymph Nodes codes 000-999, and CS Mets at DX codes 00-99, the N and M categories for AJCC 6 staging are assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.681Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "VALUE:M0" ], [ "07", "000", "VALUE:M0" ], [ "10-13, 16-18, 40, 51-52, 58,60", "000", "VALUE:M1" ], [ "15, 50", "000", "VALUE:M1" ], [ "14, 20, 55", "000", "VALUE:M1" ], [ "99", "000", "VALUE:MX" ], [ "00", "100,110", "VALUE:M0" ], [ "07", "100,110", "VALUE:M0" ], [ "10-13, 16-18, 40, 51-52, 58,60", "100,110", "VALUE:M1" ], [ "15, 50", "100,110", "VALUE:M1" ], [ "14, 20, 55", "100,110", "VALUE:M1" ], [ "99", "100,110", "VALUE:MX" ], [ "00", "120,130,140,200", "VALUE:M1" ], [ "07", "120,130,140,200", "VALUE:M1" ], [ "10-13, 16-18, 40, 51-52, 58,60", "120,130,140,200", "VALUE:M1" ], [ "15, 50", "120,130,140,200", "VALUE:M1" ], [ "14, 20, 55", "120,130,140,200", "VALUE:M1" ], [ "99", "120,130,140,200", "VALUE:M1" ], [ "00", "300,310", "VALUE:M1" ], [ "07", "300,310", "VALUE:M1" ], [ "10-13, 16-18, 40, 51-52, 58,60", "300,310", "VALUE:M1" ], [ "15, 50", "300,310", "VALUE:M1" ], [ "14, 20, 55", "300,310", "VALUE:M1" ], [ "99", "300,310", "VALUE:M1" ], [ "00", "500,800", "VALUE:M0" ], [ "07", "500,800", "VALUE:M0" ], [ "10-13, 16-18, 40, 51-52, 58,60", "500,800", "VALUE:M1" ], [ "15, 50", "500,800", "VALUE:M1" ], [ "14, 20, 55", "500,800", "VALUE:M1" ], [ "99", "500,800", "VALUE:MX" ], [ "00", "999", "VALUE:MX" ], [ "07", "999", "VALUE:MX" ], [ "10-13, 16-18, 40, 51-52, 58,60", "999", "VALUE:M1" ], [ "15, 50", "999", "VALUE:M1" ], [ "14, 20, 55", "999", "VALUE:M1" ], [ "99", "999", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xgq_n.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xgq_n.json
deleted file mode 100644
index 858fa36a6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xgq_n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xgq_n",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6 - returning N",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table - returning N",
- "notes" : "**Note**: For CS Lymph Nodes codes 000-999, and CS Mets at DX codes 00-99, the N and M categories for AJCC 6 staging are assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.734Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "VALUE:N0" ], [ "07", "000", "VALUE:N1" ], [ "10-13, 16-18, 40, 51-52, 58,60", "000", "VALUE:N0" ], [ "15, 50", "000", "VALUE:N0" ], [ "14, 20, 55", "000", "VALUE:N1" ], [ "99", "000", "VALUE:NX" ], [ "00", "100,110", "VALUE:N1" ], [ "07", "100,110", "VALUE:N1" ], [ "10-13, 16-18, 40, 51-52, 58,60", "100,110", "VALUE:N1" ], [ "15, 50", "100,110", "VALUE:N0" ], [ "14, 20, 55", "100,110", "VALUE:N1" ], [ "99", "100,110", "VALUE:N1" ], [ "00", "120,130,140,200", "VALUE:N0" ], [ "07", "120,130,140,200", "VALUE:N1" ], [ "10-13, 16-18, 40, 51-52, 58,60", "120,130,140,200", "VALUE:N0" ], [ "15, 50", "120,130,140,200", "VALUE:N0" ], [ "14, 20, 55", "120,130,140,200", "VALUE:N1" ], [ "99", "120,130,140,200", "VALUE:N0" ], [ "00", "300,310", "VALUE:N1" ], [ "07", "300,310", "VALUE:N1" ], [ "10-13, 16-18, 40, 51-52, 58,60", "300,310", "VALUE:N1" ], [ "15, 50", "300,310", "VALUE:N0" ], [ "14, 20, 55", "300,310", "VALUE:N1" ], [ "99", "300,310", "VALUE:N1" ], [ "00", "500,800", "VALUE:N1" ], [ "07", "500,800", "VALUE:N1" ], [ "10-13, 16-18, 40, 51-52, 58,60", "500,800", "VALUE:N1" ], [ "15, 50", "500,800", "VALUE:N0" ], [ "14, 20, 55", "500,800", "VALUE:N1" ], [ "99", "500,800", "VALUE:N1" ], [ "00", "999", "VALUE:NX" ], [ "07", "999", "VALUE:NX" ], [ "10-13, 16-18, 40, 51-52, 58,60", "999", "VALUE:NX" ], [ "15, 50", "999", "VALUE:N0" ], [ "14, 20, 55", "999", "VALUE:N1" ], [ "99", "999", "VALUE:NX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xhv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xhv.json
deleted file mode 100644
index 21ba0f844..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xhv.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xhv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Mets at DX codes 00 and 99, the M category for AJCC 6 staging is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.784Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "00", "VALUE:M0" ], [ "100", "00", "VALUE:M0" ], [ "110", "00", "VALUE:M0" ], [ "120", "00", "VALUE:M0" ], [ "150", "00", "VALUE:M0" ], [ "200", "00", "ERROR:" ], [ "210", "00", "ERROR:" ], [ "250", "00", "ERROR:" ], [ "300", "00", "VALUE:M0" ], [ "500", "00", "VALUE:M0" ], [ "600", "00", "VALUE:M0" ], [ "610", "00", "VALUE:M0" ], [ "620", "00", "VALUE:M1" ], [ "630", "00", "ERROR:" ], [ "635", "00", "VALUE:M1" ], [ "650", "00", "VALUE:M0" ], [ "800", "00", "VALUE:M0" ], [ "999", "00", "VALUE:M0" ], [ "000", "99", "VALUE:MX" ], [ "100", "99", "VALUE:MX" ], [ "110", "99", "VALUE:MX" ], [ "120", "99", "VALUE:MX" ], [ "150", "99", "VALUE:MX" ], [ "200", "99", "ERROR:" ], [ "210", "99", "ERROR:" ], [ "250", "99", "ERROR:" ], [ "300", "99", "VALUE:MX" ], [ "500", "99", "VALUE:MX" ], [ "600", "99", "VALUE:MX" ], [ "610", "99", "VALUE:MX" ], [ "620", "99", "VALUE:M1" ], [ "630", "99", "ERROR:" ], [ "635", "99", "VALUE:M1" ], [ "650", "99", "VALUE:MX" ], [ "800", "99", "VALUE:MX" ], [ "999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjc.json
deleted file mode 100644
index 9c1a77621..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjc.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xjc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 000-999, the N category for AJCC 6 staging is determined by the value in CS Mets at DX as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.831Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "VALUE:N0" ], [ "07", "000", "VALUE:N1" ], [ "10", "000", "VALUE:N0" ], [ "20", "000", "VALUE:N1" ], [ "40", "000", "VALUE:N0" ], [ "45", "000", "VALUE:N1" ], [ "50", "000", "VALUE:N0" ], [ "60", "000", "VALUE:N0" ], [ "99", "000", "VALUE:NX" ], [ "00", "999", "VALUE:NX" ], [ "07", "999", "VALUE:N1" ], [ "10", "999", "VALUE:NX" ], [ "20", "999", "VALUE:N1" ], [ "40", "999", "VALUE:NX" ], [ "45", "999", "VALUE:N1" ], [ "50", "999", "VALUE:NX" ], [ "60", "999", "VALUE:NX" ], [ "99", "999", "VALUE:NX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjd.json
deleted file mode 100644
index 0ebe03b43..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjd.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xjd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Mets at DX codes 00 and 99, the M category for AJCC 6 staging is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.880Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "00", "VALUE:M0" ], [ "100", "00", "VALUE:M0" ], [ "120", "00", "VALUE:M0" ], [ "150", "00", "VALUE:M0" ], [ "200", "00", "VALUE:M0" ], [ "300", "00", "ERROR:" ], [ "310", "00", "ERROR:" ], [ "315", "00", "VALUE:M0" ], [ "350", "00", "VALUE:M0" ], [ "355", "00", "VALUE:M1" ], [ "360", "00", "VALUE:M0" ], [ "370", "00", "VALUE:M1" ], [ "400", "00", "VALUE:M0" ], [ "800", "00", "VALUE:M0" ], [ "999", "00", "VALUE:M0" ], [ "000", "99", "VALUE:MX" ], [ "100", "99", "VALUE:MX" ], [ "120", "99", "VALUE:MX" ], [ "150", "99", "VALUE:MX" ], [ "200", "99", "VALUE:MX" ], [ "300", "99", "ERROR:" ], [ "310", "99", "ERROR:" ], [ "315", "99", "VALUE:MX" ], [ "350", "99", "VALUE:MX" ], [ "355", "99", "VALUE:M1" ], [ "360", "99", "VALUE:MX" ], [ "370", "99", "VALUE:M1" ], [ "400", "99", "VALUE:MX" ], [ "800", "99", "VALUE:MX" ], [ "999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xje.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xje.json
deleted file mode 100644
index 824c647b3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xje.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xje",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 000 and 999, the N category for AJCC 6 staging is determined by the value in CS Mets at DX as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.928Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "VALUE:N0" ], [ "07", "000", "VALUE:N1" ], [ "10", "000", "VALUE:N0" ], [ "20", "000", "VALUE:N1" ], [ "40", "000", "VALUE:N0" ], [ "45", "000", "VALUE:N1" ], [ "50", "000", "VALUE:N0" ], [ "60", "000", "VALUE:N0" ], [ "99", "000", "VALUE:NX" ], [ "00", "999", "VALUE:NX" ], [ "07", "999", "VALUE:N1" ], [ "10", "999", "VALUE:NX" ], [ "20", "999", "VALUE:N1" ], [ "40", "999", "VALUE:NX" ], [ "45", "999", "VALUE:N1" ], [ "50", "999", "VALUE:NX" ], [ "60", "999", "VALUE:NX" ], [ "99", "999", "VALUE:NX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjf.json
deleted file mode 100644
index e61e1f0ba..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xjf.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xjf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 000 and 999, the N category for AJCC 6 staging is determined by the value in CS Mets at DX as shown in this table.",
- "last_modified" : "2015-05-27T16:19:24.975Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000", "VALUE:N0" ], [ "05", "000", "VALUE:N1" ], [ "07", "000", "VALUE:N1" ], [ "10", "000", "VALUE:N0" ], [ "20", "000", "VALUE:N1" ], [ "40", "000", "VALUE:N0" ], [ "45", "000", "VALUE:N1" ], [ "50", "000", "VALUE:N0" ], [ "60", "000", "VALUE:N0" ], [ "99", "000", "VALUE:NX" ], [ "00", "999", "VALUE:NX" ], [ "05", "999", "VALUE:N1" ], [ "07", "999", "VALUE:N1" ], [ "10", "999", "VALUE:NX" ], [ "20", "999", "VALUE:N1" ], [ "40", "999", "VALUE:NX" ], [ "45", "999", "VALUE:N1" ], [ "50", "999", "VALUE:NX" ], [ "60", "999", "VALUE:NX" ], [ "99", "999", "VALUE:NX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xki.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xki.json
deleted file mode 100644
index fac6be660..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xki.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xki",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "last_modified" : "2015-05-27T16:19:25.029Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000,100,110,200,210", "00", "VALUE:M0" ], [ "220,230", "00", "VALUE:M1" ], [ "250,500,700,800,999", "00", "VALUE:M0" ], [ "000,100,110,200,210", "99", "VALUE:MX" ], [ "220,230", "99", "VALUE:M1" ], [ "250,500,700,800,999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xlf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xlf.json
deleted file mode 100644
index 9cf279e59..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxajcc6_xlf.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxajcc6_xlf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX AJCC6",
- "title" : "Lymph Nodes Mets at DX AJCC 6 Table",
- "notes" : "**Note**: For CS Mets at DX codes 00 and 99, the M category for AJCC 6 staging is assigned as shown in this table.",
- "last_modified" : "2015-05-27T16:19:25.078Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "00", "VALUE:M0" ], [ "010", "00", "VALUE:M0" ], [ "100", "00", "VALUE:M0" ], [ "105", "00", "VALUE:M0" ], [ "106", "00", "VALUE:M1" ], [ "107", "00", "VALUE:M1" ], [ "108", "00", "VALUE:M1" ], [ "109", "00", "VALUE:M1" ], [ "110", "00", "ERROR:" ], [ "114", "00", "VALUE:M0" ], [ "115", "00", "VALUE:M0" ], [ "120", "00", "VALUE:M0" ], [ "125", "00", "VALUE:M0" ], [ "130", "00", "VALUE:M0" ], [ "500", "00", "VALUE:M0" ], [ "510", "00", "VALUE:M0" ], [ "520", "00", "VALUE:M0" ], [ "540", "00", "VALUE:M0" ], [ "550", "00", "VALUE:M1" ], [ "560", "00", "VALUE:M1" ], [ "570", "00", "VALUE:M1" ], [ "580", "00", "VALUE:M1" ], [ "600", "00", "VALUE:M0" ], [ "650", "00", "VALUE:M0" ], [ "700", "00", "VALUE:M0" ], [ "800", "00", "VALUE:M0" ], [ "999", "00", "VALUE:MX" ], [ "000", "99", "VALUE:MX" ], [ "010", "99", "VALUE:MX" ], [ "100", "99", "VALUE:MX" ], [ "105", "99", "VALUE:MX" ], [ "106", "99", "VALUE:M1" ], [ "107", "99", "VALUE:M1" ], [ "108", "99", "VALUE:M1" ], [ "109", "99", "VALUE:M1" ], [ "110", "99", "ERROR:" ], [ "114", "99", "VALUE:MX" ], [ "115", "99", "VALUE:MX" ], [ "120", "99", "VALUE:MX" ], [ "125", "99", "VALUE:MX" ], [ "130", "99", "VALUE:MX" ], [ "500", "99", "VALUE:MX" ], [ "510", "99", "VALUE:MX" ], [ "520", "99", "VALUE:MX" ], [ "540", "99", "VALUE:MX" ], [ "550", "99", "VALUE:M1" ], [ "560", "99", "VALUE:M1" ], [ "570", "99", "VALUE:M1" ], [ "580", "99", "VALUE:M1" ], [ "600", "99", "VALUE:MX" ], [ "650", "99", "VALUE:MX" ], [ "700", "99", "VALUE:MX" ], [ "800", "99", "VALUE:MX" ], [ "999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxtable_ajcc6_xfv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxtable_ajcc6_xfv.json
deleted file mode 100644
index c4d22cfc6..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_metsat_dxtable_ajcc6_xfv.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_metsat_dxtable_ajcc6_xfv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Mets at DX Table AJCC6",
- "title" : "Lymph Nodes Mets at DX Table AJCC 6",
- "notes" : "**Note**: When CS Mets at DX is coded 00 or 99, the N and M categories for AJCC 6 staging are determined by the CS Lymph Nodes code as shown in this table.",
- "last_modified" : "2015-05-27T16:19:25.130Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "mets",
- "name" : "CS Mets at DX",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "000", "00", "VALUE:M0" ], [ "100", "00", "VALUE:M0" ], [ "200", "00", "VALUE:M0" ], [ "220", "00", "VALUE:M0" ], [ "250", "00", "VALUE:M1a" ], [ "255", "00", "VALUE:M1a" ], [ "260", "00", "ERROR:" ], [ "265", "00", "VALUE:M1b" ], [ "270", "00", "VALUE:M1b" ], [ "275", "00", "VALUE:M1b" ], [ "280", "00", "VALUE:M1b" ], [ "300", "00", "ERROR:" ], [ "305", "00", "VALUE:M0" ], [ "310", "00", "VALUE:M1a" ], [ "320", "00", "VALUE:M1b" ], [ "330", "00", "VALUE:M1b" ], [ "500", "00", "VALUE:M0" ], [ "560", "00", "VALUE:M0" ], [ "600", "00", "ERROR:" ], [ "610", "00", "VALUE:M0" ], [ "700", "00", "ERROR:" ], [ "710", "00", "VALUE:M0" ], [ "800", "00", "VALUE:M0" ], [ "999", "00", "VALUE:M0" ], [ "000", "99", "VALUE:MX" ], [ "100", "99", "VALUE:MX" ], [ "200", "99", "VALUE:MX" ], [ "220", "99", "VALUE:MX" ], [ "250", "99", "VALUE:M1a" ], [ "255", "99", "VALUE:M1a" ], [ "260", "99", "ERROR:" ], [ "265", "99", "VALUE:M1b" ], [ "270", "99", "VALUE:M1b" ], [ "275", "99", "VALUE:M1b" ], [ "280", "99", "VALUE:M1b" ], [ "300", "99", "ERROR:" ], [ "305", "99", "VALUE:MX" ], [ "310", "99", "VALUE:M1a" ], [ "320", "99", "VALUE:M1b" ], [ "330", "99", "VALUE:M1b" ], [ "500", "99", "VALUE:MX" ], [ "560", "99", "VALUE:MX" ], [ "600", "99", "ERROR:" ], [ "610", "99", "VALUE:MX" ], [ "700", "99", "ERROR:" ], [ "710", "99", "VALUE:MX" ], [ "800", "99", "VALUE:MX" ], [ "999", "99", "VALUE:MX" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_eval_xgu.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_eval_xgu.json
deleted file mode 100644
index 6bb3802d8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_eval_xgu.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_eval_xgu",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Eval",
- "title" : "Lymph Nodes Pathologic Eval Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes Eval is coded 2 (p), 3 (p), 6 (yp), or 8 (a) and CS Lymph Nodes is coded 100-500 ONLY. The N category is assigned based on the values of CS Site-Specific Factor 5, Size of Metastasis in Lymph Nodes, and Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.651Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf5",
- "name" : "CS SSF 5",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000-003", "ERROR:", "ERROR:" ], [ "01-05", "000-003", "ERROR:", "ERROR:" ], [ "06-90", "000-003", "ERROR:", "ERROR:" ], [ "95", "000-003", "ERROR:", "ERROR:" ], [ "97", "000-003", "ERROR:", "ERROR:" ], [ "98", "000-003", "ERROR:", "ERROR:" ], [ "99", "000-003", "ERROR:", "ERROR:" ], [ "00", "010", "ERROR:", "ERROR:" ], [ "01-05", "010", "VALUE:N1", "VALUE:N1" ], [ "06-90", "010", "VALUE:N2", "VALUE:N2" ], [ "95", "010", "VALUE:N1", "VALUE:N1" ], [ "97", "010", "VALUE:N1", "VALUE:N1" ], [ "98", "010", "ERROR:", "ERROR:" ], [ "99", "010", "ERROR:", "ERROR:" ], [ "00", "020", "ERROR:", "ERROR:" ], [ "01-05", "020", "VALUE:N2", "VALUE:N2" ], [ "06-90", "020", "VALUE:N2", "VALUE:N2" ], [ "95", "020", "VALUE:N2", "VALUE:N2" ], [ "97", "020", "VALUE:N2", "VALUE:N2" ], [ "98", "020", "ERROR:", "ERROR:" ], [ "99", "020", "ERROR:", "ERROR:" ], [ "00", "030", "ERROR:", "ERROR:" ], [ "01-05", "030", "VALUE:N3", "VALUE:N3" ], [ "06-90", "030", "VALUE:N3", "VALUE:N3" ], [ "95", "030", "VALUE:N3", "VALUE:N3" ], [ "97", "030", "VALUE:N3", "VALUE:N3" ], [ "98", "030", "ERROR:", "ERROR:" ], [ "99", "030", "ERROR:", "ERROR:" ], [ "00", "988", "ERROR:", "ERROR:" ], [ "01-05", "988", "ERROR:", "ERROR:" ], [ "06-90", "988", "ERROR:", "ERROR:" ], [ "95", "988", "ERROR:", "ERROR:" ], [ "97", "988", "ERROR:", "ERROR:" ], [ "98", "988", "ERROR:", "ERROR:" ], [ "99", "988", "ERROR:", "ERROR:" ], [ "00", "998", "ERROR:", "ERROR:" ], [ "01-05", "998", "ERROR:", "ERROR:" ], [ "06-90", "998", "ERROR:", "ERROR:" ], [ "95", "998", "ERROR:", "ERROR:" ], [ "97", "998", "ERROR:", "ERROR:" ], [ "98", "998", "ERROR:", "ERROR:" ], [ "99", "998", "ERROR:", "ERROR:" ], [ "00", "999", "ERROR:", "ERROR:" ], [ "01-05", "999", "VALUE:N1", "VALUE:N1" ], [ "06-90", "999", "VALUE:N2", "VALUE:N2" ], [ "95", "999", "VALUE:N1", "VALUE:N1" ], [ "97", "999", "VALUE:N1", "VALUE:N1" ], [ "98", "999", "ERROR:", "ERROR:" ], [ "99", "999", "ERROR:", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp.json
deleted file mode 100644
index d57622575..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xpp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation 6th Table Also Used When CS Reg Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation 6th Table Also Used When CS Reg Nodes Eval is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 2, 3, 6, 8, or not coded. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.180Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "N Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-06", "VALUE:N1" ], [ "07-15", "VALUE:N2" ], [ "16-90", "VALUE:N3" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg.json
deleted file mode 100644
index a0c905c1b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation6th_table_also_used_when_csreg_nodes_evalis_not_coded_xqg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation 6th Table Also Used When CS Reg Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation 6th Table Also Used When CS Reg Nodes Eval is Not Coded",
- "notes" : "**Note**: When CS Lymph Nodes is 050-300 and CS Regional Nodes Eval is 2, 3, 6, 8, or not coded, the N category is assigned based on the number of positive nodes coded in Regional Nodes Positive, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:25.229Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "N Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "VALUE:N1" ], [ "04-90", "VALUE:N2" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft.json
deleted file mode 100644
index 590dede08..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation7th_table_also_used_when_csreg_nodes_evalis_not_coded_xft",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation 7th Table Also Used When CS Reg Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation 7th Table Also Used When CS Reg Nodes Eval is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-400, 450, and 500 ONLY and CS Lymph Nodes Eval is 2, 3, 6, 8, or not coded. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.273Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-02", "VALUE:N1" ], [ "03-06", "VALUE:N2" ], [ "07-90", "VALUE:N3" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr.json
deleted file mode 100644
index 632fd38f7..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation_ajcc6_table_also_used_when_cslymph_nodes_eval_is_not_coded_xpr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation AJCC6 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation AJCC 6 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes code is 100-300 and CS Lymph Nodes Eval is 2, 3, 6, 8, or not coded. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.320Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "VALUE:N1" ], [ "04-90", "VALUE:N2" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xdg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xdg.json
deleted file mode 100644
index 2c608c074..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xdg.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xdg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation AJCC7 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation AJCC 7 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Lymph Nodes Eval is 2, 3, 6, 8, or not coded. The N category for AJCC 7 staging is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.453Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "VALUE:N1" ], [ "04-90", "VALUE:N2" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr.json
deleted file mode 100644
index 9005d6dff..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_eval_is_not_coded_xfr",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation AJCC7 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation AJCC 7 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 2, 3, 6, 8, or not coded. The N category for AJCC 7 staging is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.498Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-02", "VALUE:N1" ], [ "03-06", "VALUE:N2" ], [ "07-90", "VALUE:N3" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg.json
deleted file mode 100644
index c75518000..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xeg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation AJCC7 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation AJCC7 Table Also Used When CS Lymph Nodes Eval is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300and CS Lymph Nodes Eval is 2, 3, 6, 8, or not coded. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.363Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-03", "VALUE:N1" ], [ "04-90", "VALUE:N2" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi.json
deleted file mode 100644
index 8f54fda28..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_cslymph_nodes_evalis_not_coded_xqi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation AJCC7 Table Also Used When CS Lymph Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation AJCC 7 Table Also Used When CS Lymph Nodes Eval is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-300 and CS Regional Nodes Eval is 2, 3, 6, 8, or not coded. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.407Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-00", "VALUE:N1NOS" ], [ "01-01", "VALUE:N1a" ], [ "02-03", "VALUE:N1b" ], [ "04-06", "VALUE:N2a" ], [ "07-90", "VALUE:N2b" ], [ "95,97-99", "VALUE:N1NOS" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi.json
deleted file mode 100644
index 842a1feae..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation_ajcc7_table_also_used_when_csreg_nodes_evalis_not_coded_xdi",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation AJCC7 Table Also Used When CS Reg Nodes Eval Is Not Coded",
- "title" : "Lymph Nodes Pathologic Evaluation AJCC 7 Table Also Used When CS Reg Nodes Eval is Not Coded",
- "notes" : "**Note**: This table is used when CS Lymph Nodes is 100-500 and CS Lymph Nodes Eval is 2, 3, 6, 8, or not coded. The N category is determined based on the number of positive regional nodes in Regional Nodes Positive.",
- "last_modified" : "2015-05-27T16:19:25.542Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "N Category",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00-02", "VALUE:N1" ], [ "03-06", "VALUE:N2" ], [ "07-15", "VALUE:N3a" ], [ "16-90", "VALUE:N3b" ], [ "95,97-99", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_xcw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_xcw.json
deleted file mode 100644
index c049d304b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_pathologic_evaluation_xcw.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_pathologic_evaluation_xcw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Pathologic Evaluation",
- "title" : "Lymph Nodes Pathologic Evaluation Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes Eval is coded 2 (p), 3 (p), 6 (yp), or 8 (a) and CS Lymph Nodes is coded 250, 258, 260, 280, 500, 510, 520, 600, 610, 620, 630, 720, or 748 ONLY. The N category is assigned based on the value of CS Lymph Nodes and the value of CS Site-Specific Factor 3, Number of Positive Ipsilateral Axillary Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:25.589Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "250", "000", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "258", "000", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "000", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "000", "ERROR:", "VALUE:N2NOS" ], [ "500", "000", "ERROR:", "VALUE:N1NOS" ], [ "510", "000", "ERROR:", "ERROR:" ], [ "520", "000", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "600", "000", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "610", "000", "ERROR:", "ERROR:" ], [ "620", "000", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "000", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "000", "VALUE:N1c", "VALUE:N1c" ], [ "748", "000", "VALUE:N2b", "VALUE:N2b" ], [ "250", "001-003", "VALUE:N1a", "VALUE:N1a" ], [ "258", "001-003", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "001-003", "VALUE:N1a", "VALUE:N1a" ], [ "280", "001-003", "ERROR:", "VALUE:N2NOS" ], [ "500", "001-003", "ERROR:", "VALUE:N1a" ], [ "510", "001-003", "ERROR:", "ERROR:" ], [ "520", "001-003", "VALUE:N1a", "VALUE:N1a" ], [ "600", "001-003", "VALUE:N1a", "VALUE:N1a" ], [ "610", "001-003", "ERROR:", "ERROR:" ], [ "620", "001-003", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "001-003", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "001-003", "VALUE:N1c", "VALUE:N1c" ], [ "748", "001-003", "VALUE:N2b", "VALUE:N2b" ], [ "250", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "258", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "260", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "280", "004-009", "ERROR:", "VALUE:N2NOS" ], [ "500", "004-009", "ERROR:", "VALUE:N2a" ], [ "510", "004-009", "ERROR:", "ERROR:" ], [ "520", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "600", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "610", "004-009", "ERROR:", "ERROR:" ], [ "620", "004-009", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "004-009", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "004-009", "VALUE:N3b", "VALUE:N3b" ], [ "748", "004-009", "VALUE:N2b", "VALUE:N2b" ], [ "250", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "258", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "260", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "280", "010-090", "ERROR:", "VALUE:N3a" ], [ "500", "010-090", "ERROR:", "VALUE:N3a" ], [ "510", "010-090", "ERROR:", "ERROR:" ], [ "520", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "600", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "610", "010-090", "ERROR:", "ERROR:" ], [ "620", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "630", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "720", "010-090", "VALUE:N3b", "VALUE:N3b" ], [ "748", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "250", "095", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "258", "095", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "095", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "095", "ERROR:", "VALUE:N2NOS" ], [ "500", "095", "ERROR:", "VALUE:N1NOS" ], [ "510", "095", "ERROR:", "ERROR:" ], [ "520", "095", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "600", "095", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "610", "095", "ERROR:", "ERROR:" ], [ "620", "095", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "095", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "095", "VALUE:N1c", "VALUE:N1c" ], [ "748", "095", "VALUE:N2b", "VALUE:N2b" ], [ "250", "097", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "258", "097", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "097", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "097", "ERROR:", "VALUE:N2NOS" ], [ "500", "097", "ERROR:", "VALUE:N1NOS" ], [ "510", "097", "ERROR:", "ERROR:" ], [ "520", "097", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "600", "097", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "610", "097", "ERROR:", "ERROR:" ], [ "620", "097", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "097", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "097", "VALUE:N1c", "VALUE:N1c" ], [ "748", "097", "VALUE:N2b", "VALUE:N2b" ], [ "250", "098", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "258", "098", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "098", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "098", "ERROR:", "VALUE:N2NOS" ], [ "500", "098", "ERROR:", "VALUE:N1NOS" ], [ "510", "098", "ERROR:", "ERROR:" ], [ "520", "098", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "600", "098", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "610", "098", "ERROR:", "ERROR:" ], [ "620", "098", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "098", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "098", "VALUE:N1c", "VALUE:N1c" ], [ "748", "098", "VALUE:N2b", "VALUE:N2b" ], [ "250", "099", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "258", "099", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "099", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "099", "ERROR:", "VALUE:N2NOS" ], [ "500", "099", "ERROR:", "VALUE:N1NOS" ], [ "510", "099", "ERROR:", "ERROR:" ], [ "520", "099", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "600", "099", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "610", "099", "ERROR:", "ERROR:" ], [ "620", "099", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "099", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "099", "VALUE:N1c", "VALUE:N1c" ], [ "748", "099", "VALUE:N2b", "VALUE:N2b" ], [ "250", "988", "ERROR:", "ERROR:" ], [ "258", "988", "ERROR:", "ERROR:" ], [ "260", "988", "ERROR:", "ERROR:" ], [ "280", "988", "ERROR:", "ERROR:" ], [ "500", "988", "ERROR:", "ERROR:" ], [ "510", "988", "ERROR:", "ERROR:" ], [ "520", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "610", "988", "ERROR:", "ERROR:" ], [ "620", "988", "ERROR:", "ERROR:" ], [ "630", "988", "ERROR:", "ERROR:" ], [ "720", "988", "ERROR:", "ERROR:" ], [ "748", "988", "ERROR:", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_positive_axillary_node_xcy.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_positive_axillary_node_xcy.json
deleted file mode 100644
index f960affaa..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_positive_axillary_node_xcy.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_positive_axillary_node_xcy",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Positive Axillary Node",
- "title" : "Lymph Nodes Positive Axillary Node Table",
- "notes" : "**Note**: This table is used when CS Reg Nodes Eval is not coded and CS Lymph Nodes is coded 250, 258, 260, 280, 500, 510, 520, 600, 610, 620, 630, 720, or 748 ONLY. The N category is assigned based on the value of CS Lymph Nodes and the value of CS Site-Specific Factor 3, Number of Positive Ipsilateral Axillary Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:25.711Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf3",
- "name" : "CS SSF 3",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "250", "000", "VALUE:N1", "VALUE:N1" ], [ "258", "000", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "000", "VALUE:N1", "VALUE:N1" ], [ "280", "000", "ERROR:", "VALUE:N2NOS" ], [ "500", "000", "ERROR:", "VALUE:N2a" ], [ "510", "000", "VALUE:N2a", "VALUE:N2a" ], [ "520", "000", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "600", "000", "VALUE:N1", "VALUE:N1" ], [ "610", "000", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "000", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "000", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "000", "VALUE:N1c", "VALUE:N1c" ], [ "748", "000", "VALUE:N2b", "VALUE:N2b" ], [ "250", "001-003", "VALUE:N1a", "VALUE:N1a" ], [ "258", "001-003", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "001-003", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "001-003", "ERROR:", "VALUE:N2NOS" ], [ "500", "001-003", "ERROR:", "VALUE:N1a" ], [ "510", "001-003", "VALUE:N2a", "VALUE:N2a" ], [ "520", "001-003", "VALUE:N1a", "VALUE:N1a" ], [ "600", "001-003", "VALUE:N1a", "VALUE:N1a" ], [ "610", "001-003", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "001-003", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "001-003", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "001-003", "VALUE:N1c", "VALUE:N1c" ], [ "748", "001-003", "VALUE:N2b", "VALUE:N2b" ], [ "250", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "258", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "260", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "280", "004-009", "ERROR:", "VALUE:N2NOS" ], [ "500", "004-009", "ERROR:", "VALUE:N2a" ], [ "510", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "520", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "600", "004-009", "VALUE:N2a", "VALUE:N2a" ], [ "610", "004-009", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "004-009", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "004-009", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "004-009", "VALUE:N3b", "VALUE:N3b" ], [ "748", "004-009", "VALUE:N3b", "VALUE:N3b" ], [ "250", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "258", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "260", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "280", "010-090", "ERROR:", "VALUE:N3a" ], [ "500", "010-090", "ERROR:", "VALUE:N3a" ], [ "510", "010-090", "VALUE:N2a", "VALUE:N2a" ], [ "520", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "600", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "610", "010-090", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "630", "010-090", "VALUE:N3a", "VALUE:N3a" ], [ "720", "010-090", "VALUE:N3b", "VALUE:N3b" ], [ "748", "010-090", "VALUE:N3b", "VALUE:N3b" ], [ "250", "095", "VALUE:N1a", "VALUE:N1a" ], [ "258", "095", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "095", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "095", "ERROR:", "VALUE:N2NOS" ], [ "500", "095", "ERROR:", "VALUE:N1a" ], [ "510", "095", "VALUE:N2a", "VALUE:N2a" ], [ "520", "095", "VALUE:N1a", "VALUE:N1a" ], [ "600", "095", "VALUE:N1", "VALUE:N1" ], [ "610", "095", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "095", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "095", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "095", "VALUE:N1c", "VALUE:N1c" ], [ "748", "095", "VALUE:N2b", "VALUE:N2b" ], [ "250", "097", "VALUE:N1a", "VALUE:N1a" ], [ "258", "097", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "097", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "097", "ERROR:", "VALUE:N2NOS" ], [ "500", "097", "ERROR:", "VALUE:N1a" ], [ "510", "097", "VALUE:N2a", "VALUE:N2a" ], [ "520", "097", "VALUE:N1a", "VALUE:N1a" ], [ "600", "097", "VALUE:N1a", "VALUE:N1a" ], [ "610", "097", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "097", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "097", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "097", "VALUE:N1c", "VALUE:N1c" ], [ "748", "097", "VALUE:N2b", "VALUE:N2b" ], [ "250", "098", "VALUE:N1", "VALUE:N1" ], [ "258", "098", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "098", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "098", "ERROR:", "VALUE:N2NOS" ], [ "500", "098", "ERROR:", "VALUE:N2a" ], [ "510", "098", "VALUE:N2a", "VALUE:N2a" ], [ "520", "098", "VALUE:N1a", "VALUE:N1a" ], [ "600", "098", "VALUE:N1", "VALUE:N1" ], [ "610", "098", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "098", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "098", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "098", "VALUE:N1c", "VALUE:N1c" ], [ "748", "098", "VALUE:N2b", "VALUE:N2b" ], [ "250", "099", "VALUE:N1", "VALUE:N1" ], [ "258", "099", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "260", "099", "VALUE:N1NOS", "VALUE:N1NOS" ], [ "280", "099", "ERROR:", "VALUE:N2NOS" ], [ "500", "099", "ERROR:", "VALUE:N2a" ], [ "510", "099", "VALUE:N2a", "VALUE:N2a" ], [ "520", "099", "VALUE:N1a", "VALUE:N1a" ], [ "600", "099", "VALUE:N1", "VALUE:N1" ], [ "610", "099", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "620", "099", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "630", "099", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "720", "099", "VALUE:N1c", "VALUE:N1c" ], [ "748", "099", "VALUE:N2b", "VALUE:N2b" ], [ "250", "988", "ERROR:", "ERROR:" ], [ "258", "988", "ERROR:", "ERROR:" ], [ "260", "988", "ERROR:", "ERROR:" ], [ "280", "988", "ERROR:", "ERROR:" ], [ "500", "988", "ERROR:", "ERROR:" ], [ "510", "988", "ERROR:", "ERROR:" ], [ "520", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "610", "988", "ERROR:", "ERROR:" ], [ "620", "988", "ERROR:", "ERROR:" ], [ "630", "988", "ERROR:", "ERROR:" ], [ "720", "988", "ERROR:", "ERROR:" ], [ "748", "988", "ERROR:", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_positive_eval_blank_xgv.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_positive_eval_blank_xgv.json
deleted file mode 100644
index 85e62802e..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_positive_eval_blank_xgv.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_positive_eval_blank_xgv",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Positive Eval Blank",
- "title" : "Lymph Nodes Positive Eval Blank Table",
- "notes" : "**Note**: This table is used when CS Lymph Nodes Eval is not coded and CS Lymph Nodes is coded 100-500 ONLY. The N category is assigned based on the values of CS Site-Specific Factor 5, Size of Metastasis in Lymph Nodes, and Regional Nodes Positive. The N category is based on the clinical definition except when Regional Nodes Positive is greater than 05; then the N category is based on the pathologic definition.",
- "last_modified" : "2015-05-27T16:19:25.774Z",
- "definition" : [ {
- "key" : "nodes_pos",
- "name" : "Regional Nodes Positive",
- "type" : "INPUT"
- }, {
- "key" : "ssf5",
- "name" : "CS SSF 5",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "000-003", "ERROR:", "ERROR:" ], [ "01-05", "000-003", "ERROR:", "ERROR:" ], [ "06-90", "000-003", "ERROR:", "ERROR:" ], [ "95", "000-003", "ERROR:", "ERROR:" ], [ "97", "000-003", "ERROR:", "ERROR:" ], [ "98", "000-003", "ERROR:", "ERROR:" ], [ "99", "000-003", "ERROR:", "ERROR:" ], [ "00", "010", "VALUE:N1", "VALUE:N1" ], [ "01-05", "010", "VALUE:N1", "VALUE:N1" ], [ "06-90", "010", "VALUE:N2", "VALUE:N2" ], [ "95", "010", "VALUE:N1", "VALUE:N1" ], [ "97", "010", "VALUE:N1", "VALUE:N1" ], [ "98", "010", "VALUE:N1", "VALUE:N1" ], [ "99", "010", "VALUE:N1", "VALUE:N1" ], [ "00", "020", "VALUE:N2", "VALUE:N2" ], [ "01-05", "020", "VALUE:N2", "VALUE:N2" ], [ "06-90", "020", "VALUE:N2", "VALUE:N2" ], [ "95", "020", "VALUE:N2", "VALUE:N2" ], [ "97", "020", "VALUE:N2", "VALUE:N2" ], [ "98", "020", "VALUE:N2", "VALUE:N2" ], [ "99", "020", "VALUE:N2", "VALUE:N2" ], [ "00", "030", "VALUE:N3", "VALUE:N3" ], [ "01-05", "030", "VALUE:N3", "VALUE:N3" ], [ "06-90", "030", "VALUE:N3", "VALUE:N3" ], [ "95", "030", "VALUE:N3", "VALUE:N3" ], [ "97", "030", "VALUE:N3", "VALUE:N3" ], [ "98", "030", "VALUE:N3", "VALUE:N3" ], [ "99", "030", "VALUE:N3", "VALUE:N3" ], [ "00", "988", "ERROR:", "ERROR:" ], [ "01-05", "988", "ERROR:", "ERROR:" ], [ "06-90", "988", "ERROR:", "ERROR:" ], [ "95", "988", "ERROR:", "ERROR:" ], [ "97", "988", "ERROR:", "ERROR:" ], [ "98", "988", "ERROR:", "ERROR:" ], [ "99", "988", "ERROR:", "ERROR:" ], [ "00", "998", "ERROR:", "ERROR:" ], [ "01-05", "998", "ERROR:", "ERROR:" ], [ "06-90", "998", "ERROR:", "ERROR:" ], [ "95", "998", "ERROR:", "ERROR:" ], [ "97", "998", "ERROR:", "ERROR:" ], [ "98", "998", "ERROR:", "ERROR:" ], [ "99", "998", "ERROR:", "ERROR:" ], [ "00", "999", "VALUE:N1", "VALUE:N1" ], [ "01-05", "999", "VALUE:N1", "VALUE:N1" ], [ "06-90", "999", "VALUE:N2", "VALUE:N2" ], [ "95", "999", "VALUE:N1", "VALUE:N1" ], [ "97", "999", "VALUE:N1", "VALUE:N1" ], [ "98", "999", "VALUE:N1", "VALUE:N1" ], [ "99", "999", "VALUE:N1", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc6_table_csv1_xex.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc6_table_csv1_xex.json
deleted file mode 100644
index f033c27fb..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc6_table_csv1_xex.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_ajcc6_table_csv1_xex",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size AJCC 6 Table CSv1",
- "title" : "Lymph Nodes Size AJCC 6 Table CSv1",
- "notes" : "**Note**: For OBSOLETE CS Lymph Node codes ONLY, the N category for cases coded in CSv1 is determined by the size of involved nodes coded in CS Site-Specific Factor 1, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:25.835Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1 Size of Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "220", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "510", "000", "ERROR:" ], [ "520", "000", "ERROR:" ], [ "100", "001-060", "VALUE:N1" ], [ "110", "001-060", "VALUE:N1" ], [ "120", "001-060", "VALUE:N1" ], [ "200", "001-060", "VALUE:N1" ], [ "210", "001-060", "VALUE:N1" ], [ "220", "001-060", "VALUE:N1" ], [ "300", "001-060", "VALUE:N1" ], [ "310", "001-060", "VALUE:N1" ], [ "320", "001-060", "VALUE:N1" ], [ "400", "001-060", "VALUE:N2" ], [ "410", "001-060", "VALUE:N2" ], [ "420", "001-060", "VALUE:N2" ], [ "500", "001-060", "VALUE:N1" ], [ "510", "001-060", "VALUE:N1" ], [ "520", "001-060", "VALUE:N1" ], [ "100", "061-980", "VALUE:N3a" ], [ "110", "061-980", "VALUE:N3a" ], [ "120", "061-980", "VALUE:N3a" ], [ "200", "061-980", "VALUE:N3a" ], [ "210", "061-980", "VALUE:N3a" ], [ "220", "061-980", "VALUE:N3a" ], [ "300", "061-980", "VALUE:N3a" ], [ "310", "061-980", "VALUE:N3a" ], [ "320", "061-980", "VALUE:N3a" ], [ "400", "061-980", "VALUE:N3a" ], [ "410", "061-980", "VALUE:N3a" ], [ "420", "061-980", "VALUE:N3a" ], [ "500", "061-980", "VALUE:N3a" ], [ "510", "061-980", "VALUE:N3a" ], [ "520", "061-980", "VALUE:N3a" ], [ "100", "981-987", "ERROR:" ], [ "110", "981-987", "ERROR:" ], [ "120", "981-987", "ERROR:" ], [ "200", "981-987", "ERROR:" ], [ "210", "981-987", "ERROR:" ], [ "220", "981-987", "ERROR:" ], [ "300", "981-987", "ERROR:" ], [ "310", "981-987", "ERROR:" ], [ "320", "981-987", "ERROR:" ], [ "400", "981-987", "ERROR:" ], [ "410", "981-987", "ERROR:" ], [ "420", "981-987", "ERROR:" ], [ "500", "981-987", "ERROR:" ], [ "510", "981-987", "ERROR:" ], [ "520", "981-987", "ERROR:" ], [ "100", "988", "ERROR:" ], [ "110", "988", "ERROR:" ], [ "120", "988", "ERROR:" ], [ "200", "988", "ERROR:" ], [ "210", "988", "ERROR:" ], [ "220", "988", "ERROR:" ], [ "300", "988", "ERROR:" ], [ "310", "988", "ERROR:" ], [ "320", "988", "ERROR:" ], [ "400", "988", "ERROR:" ], [ "410", "988", "ERROR:" ], [ "420", "988", "ERROR:" ], [ "500", "988", "ERROR:" ], [ "510", "988", "ERROR:" ], [ "520", "988", "ERROR:" ], [ "100", "989", "ERROR:" ], [ "110", "989", "ERROR:" ], [ "120", "989", "ERROR:" ], [ "200", "989", "ERROR:" ], [ "210", "989", "ERROR:" ], [ "220", "989", "ERROR:" ], [ "300", "989", "ERROR:" ], [ "310", "989", "ERROR:" ], [ "320", "989", "ERROR:" ], [ "400", "989", "ERROR:" ], [ "410", "989", "ERROR:" ], [ "420", "989", "ERROR:" ], [ "500", "989", "ERROR:" ], [ "510", "989", "ERROR:" ], [ "520", "989", "ERROR:" ], [ "100", "990-996", "VALUE:N1" ], [ "110", "990-996", "VALUE:N1" ], [ "120", "990-996", "VALUE:N1" ], [ "200", "990-996", "VALUE:N1" ], [ "210", "990-996", "VALUE:N1" ], [ "220", "990-996", "VALUE:N1" ], [ "300", "990-996", "VALUE:N1" ], [ "310", "990-996", "VALUE:N1" ], [ "320", "990-996", "VALUE:N1" ], [ "400", "990-996", "VALUE:N2" ], [ "410", "990-996", "VALUE:N2" ], [ "420", "990-996", "VALUE:N2" ], [ "500", "990-996", "VALUE:N1" ], [ "510", "990-996", "VALUE:N1" ], [ "520", "990-996", "VALUE:N1" ], [ "100", "997", "VALUE:N3a" ], [ "110", "997", "VALUE:N3a" ], [ "120", "997", "VALUE:N3a" ], [ "200", "997", "VALUE:N3a" ], [ "210", "997", "VALUE:N3a" ], [ "220", "997", "VALUE:N3a" ], [ "300", "997", "VALUE:N3a" ], [ "310", "997", "VALUE:N3a" ], [ "320", "997", "VALUE:N3a" ], [ "400", "997", "VALUE:N3a" ], [ "410", "997", "VALUE:N3a" ], [ "420", "997", "VALUE:N3a" ], [ "500", "997", "VALUE:N3a" ], [ "510", "997", "VALUE:N3a" ], [ "520", "997", "VALUE:N3a" ], [ "100", "999", "VALUE:N1" ], [ "110", "999", "VALUE:N1" ], [ "120", "999", "VALUE:N1" ], [ "200", "999", "VALUE:N1" ], [ "210", "999", "VALUE:N1" ], [ "220", "999", "VALUE:N1" ], [ "300", "999", "VALUE:N1" ], [ "310", "999", "VALUE:N1" ], [ "320", "999", "VALUE:N1" ], [ "400", "999", "VALUE:N2" ], [ "410", "999", "VALUE:N2" ], [ "420", "999", "VALUE:N2" ], [ "500", "999", "VALUE:N1" ], [ "510", "999", "VALUE:N1" ], [ "520", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc7_xfb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc7_xfb.json
deleted file mode 100644
index 28e4814c5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc7_xfb.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_ajcc7_xfb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size AJCC7",
- "title" : "Lymph Nodes Size AJCC 7 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 150-700 ONLY, the N category for AJCC 7 staging is determined by the size of involved nodes as coded in CS Site-Specific Factor 16, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:25.890Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf16",
- "name" : "CS SSF16",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "ERROR:" ], [ "180", "000", "ERROR:" ], [ "190", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "290", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "490", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "700", "000", "ERROR:" ], [ "150", "001-030", "VALUE:N1" ], [ "180", "001-030", "VALUE:N1" ], [ "190", "001-030", "VALUE:N1" ], [ "250", "001-030", "VALUE:N2b" ], [ "290", "001-030", "VALUE:N2b" ], [ "350", "001-030", "VALUE:N1" ], [ "450", "001-030", "VALUE:N2c" ], [ "490", "001-030", "VALUE:N2c" ], [ "550", "001-030", "VALUE:N1" ], [ "600", "001-030", "VALUE:N1" ], [ "700", "001-030", "VALUE:N1" ], [ "150", "031-060", "VALUE:N2a" ], [ "180", "031-060", "VALUE:N2a" ], [ "190", "031-060", "VALUE:N2a" ], [ "250", "031-060", "VALUE:N2b" ], [ "290", "031-060", "VALUE:N2b" ], [ "350", "031-060", "VALUE:N2a" ], [ "450", "031-060", "VALUE:N2c" ], [ "490", "031-060", "VALUE:N2c" ], [ "550", "031-060", "VALUE:N2NOS" ], [ "600", "031-060", "VALUE:N2NOS" ], [ "700", "031-060", "VALUE:N2NOS" ], [ "150", "061-980", "VALUE:N3" ], [ "180", "061-980", "VALUE:N3" ], [ "190", "061-980", "VALUE:N3" ], [ "250", "061-980", "VALUE:N3" ], [ "290", "061-980", "VALUE:N3" ], [ "350", "061-980", "VALUE:N3" ], [ "450", "061-980", "VALUE:N3" ], [ "490", "061-980", "VALUE:N3" ], [ "550", "061-980", "VALUE:N3" ], [ "600", "061-980", "VALUE:N3" ], [ "700", "061-980", "VALUE:N3" ], [ "150", "988", "VALUE:N1" ], [ "180", "988", "VALUE:N1" ], [ "190", "988", "VALUE:N2a" ], [ "250", "988", "VALUE:N2b" ], [ "290", "988", "VALUE:N2b" ], [ "350", "988", "VALUE:N1" ], [ "450", "988", "VALUE:N2c" ], [ "490", "988", "VALUE:N2c" ], [ "550", "988", "VALUE:N1" ], [ "600", "988", "VALUE:N2NOS" ], [ "700", "988", "VALUE:N3" ], [ "150", "990", "VALUE:N1" ], [ "180", "990", "VALUE:N1" ], [ "190", "990", "VALUE:N1" ], [ "250", "990", "VALUE:N2b" ], [ "290", "990", "VALUE:N2b" ], [ "350", "990", "VALUE:N1" ], [ "450", "990", "VALUE:N2c" ], [ "490", "990", "VALUE:N2c" ], [ "550", "990", "VALUE:N1" ], [ "600", "990", "VALUE:N1" ], [ "700", "990", "VALUE:N1" ], [ "150", "991-993", "VALUE:N1" ], [ "180", "991-993", "VALUE:N1" ], [ "190", "991-993", "VALUE:N1" ], [ "250", "991-993", "VALUE:N2b" ], [ "290", "991-993", "VALUE:N2b" ], [ "350", "991-993", "VALUE:N1" ], [ "450", "991-993", "VALUE:N2c" ], [ "490", "991-993", "VALUE:N2c" ], [ "550", "991-993", "VALUE:N1" ], [ "600", "991-993", "VALUE:N1" ], [ "700", "991-993", "VALUE:N1" ], [ "150", "994-996", "VALUE:N2a" ], [ "180", "994-996", "VALUE:N2a" ], [ "190", "994-996", "VALUE:N2a" ], [ "250", "994-996", "VALUE:N2b" ], [ "290", "994-996", "VALUE:N2b" ], [ "350", "994-996", "VALUE:N2a" ], [ "450", "994-996", "VALUE:N2c" ], [ "490", "994-996", "VALUE:N2c" ], [ "550", "994-996", "VALUE:N2NOS" ], [ "600", "994-996", "VALUE:N2NOS" ], [ "700", "994-996", "VALUE:N2NOS" ], [ "150", "997", "VALUE:N3" ], [ "180", "997", "VALUE:N3" ], [ "190", "997", "VALUE:N3" ], [ "250", "997", "VALUE:N3" ], [ "290", "997", "VALUE:N3" ], [ "350", "997", "VALUE:N3" ], [ "450", "997", "VALUE:N3" ], [ "490", "997", "VALUE:N3" ], [ "550", "997", "VALUE:N3" ], [ "600", "997", "VALUE:N3" ], [ "700", "997", "VALUE:N3" ], [ "150", "999", "VALUE:N1" ], [ "180", "999", "VALUE:N1" ], [ "190", "999", "VALUE:N2a" ], [ "250", "999", "VALUE:N2b" ], [ "290", "999", "VALUE:N2b" ], [ "350", "999", "VALUE:N1" ], [ "450", "999", "VALUE:N2c" ], [ "490", "999", "VALUE:N2c" ], [ "550", "999", "VALUE:N1" ], [ "600", "999", "VALUE:N2NOS" ], [ "700", "999", "VALUE:N3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc7_xfz.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc7_xfz.json
deleted file mode 100644
index fc81212cf..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_ajcc7_xfz.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_ajcc7_xfz",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size AJCC7",
- "title" : "Lymph Nodes Size AJCC 7 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 150-700 ONLY, the N category for AJCC 7 staging is determined by the size of involved nodes as coded in CS Site-Specific Factor 16, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:25.947Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf16",
- "name" : "CS SSF16",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "ERROR:" ], [ "160", "000", "ERROR:" ], [ "180", "000", "ERROR:" ], [ "190", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "260", "000", "ERROR:" ], [ "270", "000", "ERROR:" ], [ "290", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "360", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "460", "000", "ERROR:" ], [ "470", "000", "ERROR:" ], [ "490", "000", "ERROR:" ], [ "550", "000", "ERROR:" ], [ "560", "000", "ERROR:" ], [ "570", "000", "ERROR:" ], [ "600", "000", "ERROR:" ], [ "700", "000", "ERROR:" ], [ "150", "001-030", "VALUE:N1" ], [ "160", "001-030", "VALUE:N1" ], [ "180", "001-030", "VALUE:N1" ], [ "190", "001-030", "VALUE:N1" ], [ "250", "001-030", "VALUE:N2b" ], [ "260", "001-030", "VALUE:N2b" ], [ "270", "001-030", "VALUE:N2b" ], [ "290", "001-030", "VALUE:N2b" ], [ "350", "001-030", "VALUE:N1" ], [ "360", "001-030", "VALUE:N1" ], [ "450", "001-030", "VALUE:N2c" ], [ "460", "001-030", "VALUE:N2c" ], [ "470", "001-030", "VALUE:N2c" ], [ "490", "001-030", "VALUE:N2c" ], [ "550", "001-030", "VALUE:N1" ], [ "560", "001-030", "VALUE:N1" ], [ "570", "001-030", "VALUE:N1" ], [ "600", "001-030", "VALUE:N1" ], [ "700", "001-030", "VALUE:N1" ], [ "150", "031-060", "VALUE:N2a" ], [ "160", "031-060", "VALUE:N2a" ], [ "180", "031-060", "VALUE:N2a" ], [ "190", "031-060", "VALUE:N2a" ], [ "250", "031-060", "VALUE:N2b" ], [ "260", "031-060", "VALUE:N2b" ], [ "270", "031-060", "VALUE:N2b" ], [ "290", "031-060", "VALUE:N2b" ], [ "350", "031-060", "VALUE:N2a" ], [ "360", "031-060", "VALUE:N2a" ], [ "450", "031-060", "VALUE:N2c" ], [ "460", "031-060", "VALUE:N2c" ], [ "470", "031-060", "VALUE:N2c" ], [ "490", "031-060", "VALUE:N2c" ], [ "550", "031-060", "VALUE:N2NOS" ], [ "560", "031-060", "VALUE:N2NOS" ], [ "570", "031-060", "VALUE:N2NOS" ], [ "600", "031-060", "VALUE:N2NOS" ], [ "700", "031-060", "VALUE:N2NOS" ], [ "150", "061-980", "VALUE:N3" ], [ "160", "061-980", "VALUE:N3" ], [ "180", "061-980", "VALUE:N3" ], [ "190", "061-980", "VALUE:N3" ], [ "250", "061-980", "VALUE:N3" ], [ "260", "061-980", "VALUE:N3" ], [ "270", "061-980", "VALUE:N3" ], [ "290", "061-980", "VALUE:N3" ], [ "350", "061-980", "VALUE:N3" ], [ "360", "061-980", "VALUE:N3" ], [ "450", "061-980", "VALUE:N3" ], [ "460", "061-980", "VALUE:N3" ], [ "470", "061-980", "VALUE:N3" ], [ "490", "061-980", "VALUE:N3" ], [ "550", "061-980", "VALUE:N3" ], [ "560", "061-980", "VALUE:N3" ], [ "570", "061-980", "VALUE:N3" ], [ "600", "061-980", "VALUE:N3" ], [ "700", "061-980", "VALUE:N3" ], [ "150", "988", "ERROR:" ], [ "160", "988", "ERROR:" ], [ "180", "988", "ERROR:" ], [ "190", "988", "ERROR:" ], [ "250", "988", "ERROR:" ], [ "260", "988", "ERROR:" ], [ "270", "988", "ERROR:" ], [ "290", "988", "ERROR:" ], [ "350", "988", "ERROR:" ], [ "360", "988", "ERROR:" ], [ "450", "988", "ERROR:" ], [ "460", "988", "ERROR:" ], [ "470", "988", "ERROR:" ], [ "490", "988", "ERROR:" ], [ "550", "988", "ERROR:" ], [ "560", "988", "ERROR:" ], [ "570", "988", "ERROR:" ], [ "600", "988", "ERROR:" ], [ "700", "988", "ERROR:" ], [ "150", "990", "VALUE:N1" ], [ "160", "990", "VALUE:N1" ], [ "180", "990", "VALUE:N1" ], [ "190", "990", "VALUE:N1" ], [ "250", "990", "VALUE:N2b" ], [ "260", "990", "VALUE:N2b" ], [ "270", "990", "VALUE:N2b" ], [ "290", "990", "VALUE:N2b" ], [ "350", "990", "VALUE:N1" ], [ "360", "990", "VALUE:N1" ], [ "450", "990", "VALUE:N2c" ], [ "460", "990", "VALUE:N2c" ], [ "470", "990", "VALUE:N2c" ], [ "490", "990", "VALUE:N2c" ], [ "550", "990", "VALUE:N1" ], [ "560", "990", "VALUE:N1" ], [ "570", "990", "VALUE:N1" ], [ "600", "990", "VALUE:N1" ], [ "700", "990", "VALUE:N1" ], [ "150", "991-993", "VALUE:N1" ], [ "160", "991-993", "VALUE:N1" ], [ "180", "991-993", "VALUE:N1" ], [ "190", "991-993", "VALUE:N1" ], [ "250", "991-993", "VALUE:N2b" ], [ "260", "991-993", "VALUE:N2b" ], [ "270", "991-993", "VALUE:N2b" ], [ "290", "991-993", "VALUE:N2b" ], [ "350", "991-993", "VALUE:N1" ], [ "360", "991-993", "VALUE:N1" ], [ "450", "991-993", "VALUE:N2c" ], [ "460", "991-993", "VALUE:N2c" ], [ "470", "991-993", "VALUE:N2c" ], [ "490", "991-993", "VALUE:N2c" ], [ "550", "991-993", "VALUE:N1" ], [ "560", "991-993", "VALUE:N1" ], [ "570", "991-993", "VALUE:N1" ], [ "600", "991-993", "VALUE:N1" ], [ "700", "991-993", "VALUE:N1" ], [ "150", "994-996", "VALUE:N2a" ], [ "160", "994-996", "VALUE:N2a" ], [ "180", "994-996", "VALUE:N2a" ], [ "190", "994-996", "VALUE:N2a" ], [ "250", "994-996", "VALUE:N2b" ], [ "260", "994-996", "VALUE:N2b" ], [ "270", "994-996", "VALUE:N2b" ], [ "290", "994-996", "VALUE:N2b" ], [ "350", "994-996", "VALUE:N2a" ], [ "360", "994-996", "VALUE:N2a" ], [ "450", "994-996", "VALUE:N2c" ], [ "460", "994-996", "VALUE:N2c" ], [ "470", "994-996", "VALUE:N2c" ], [ "490", "994-996", "VALUE:N2c" ], [ "550", "994-996", "VALUE:N2NOS" ], [ "560", "994-996", "VALUE:N2NOS" ], [ "570", "994-996", "VALUE:N2NOS" ], [ "600", "994-996", "VALUE:N2NOS" ], [ "700", "994-996", "VALUE:N2NOS" ], [ "150", "997", "VALUE:N3" ], [ "160", "997", "VALUE:N3" ], [ "180", "997", "VALUE:N3" ], [ "190", "997", "VALUE:N3" ], [ "250", "997", "VALUE:N3" ], [ "260", "997", "VALUE:N3" ], [ "270", "997", "VALUE:N3" ], [ "290", "997", "VALUE:N3" ], [ "350", "997", "VALUE:N3" ], [ "360", "997", "VALUE:N3" ], [ "450", "997", "VALUE:N3" ], [ "460", "997", "VALUE:N3" ], [ "470", "997", "VALUE:N3" ], [ "490", "997", "VALUE:N3" ], [ "550", "997", "VALUE:N3" ], [ "560", "997", "VALUE:N3" ], [ "570", "997", "VALUE:N3" ], [ "600", "997", "VALUE:N3" ], [ "700", "997", "VALUE:N3" ], [ "150", "999", "VALUE:N1" ], [ "160", "999", "VALUE:N1" ], [ "180", "999", "VALUE:N1" ], [ "190", "999", "VALUE:N2a" ], [ "250", "999", "VALUE:N2b" ], [ "260", "999", "VALUE:N2b" ], [ "270", "999", "VALUE:N2b" ], [ "290", "999", "VALUE:N2b" ], [ "350", "999", "VALUE:N1" ], [ "360", "999", "VALUE:N1" ], [ "450", "999", "VALUE:N2c" ], [ "460", "999", "VALUE:N2c" ], [ "470", "999", "VALUE:N2c" ], [ "490", "999", "VALUE:N2c" ], [ "550", "999", "VALUE:N1" ], [ "560", "999", "VALUE:N1" ], [ "570", "999", "VALUE:N1" ], [ "600", "999", "VALUE:N2NOS" ], [ "700", "999", "VALUE:N3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_csv1_xix.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_csv1_xix.json
deleted file mode 100644
index af9d2a773..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_csv1_xix.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_csv1_xix",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size CSv1",
- "title" : "Lymph Nodes Size CSv1 Table",
- "notes" : "**Note**: For OBSOLETE CS Lymph Node codes 100, 110, 120, 200, 210, 220, 300, 310, 320, 400, 410, 420, 500, 510, 520, and 750 ONLY, the N category is determined by the size of involved nodes as coded in CS Site-Specific Factor 1, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.007Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:" ], [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "200", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "220", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "310", "000", "ERROR:" ], [ "320", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "410", "000", "ERROR:" ], [ "420", "000", "ERROR:" ], [ "500", "000", "ERROR:" ], [ "510", "000", "ERROR:" ], [ "520", "000", "ERROR:" ], [ "750", "000", "ERROR:" ], [ "100", "001-030", "VALUE:N1" ], [ "110", "001-030", "VALUE:N1" ], [ "120", "001-030", "VALUE:N1" ], [ "200", "001-030", "VALUE:N2b" ], [ "210", "001-030", "VALUE:N2b" ], [ "220", "001-030", "VALUE:N2b" ], [ "300", "001-030", "VALUE:N1" ], [ "310", "001-030", "VALUE:N1" ], [ "320", "001-030", "VALUE:N1" ], [ "400", "001-030", "VALUE:N2c" ], [ "410", "001-030", "VALUE:N2c" ], [ "420", "001-030", "VALUE:N2c" ], [ "500", "001-030", "VALUE:N1" ], [ "510", "001-030", "VALUE:N1" ], [ "520", "001-030", "VALUE:N1" ], [ "750", "001-030", "VALUE:N1" ], [ "100", "031-060", "VALUE:N2a" ], [ "110", "031-060", "VALUE:N2a" ], [ "120", "031-060", "VALUE:N2a" ], [ "200", "031-060", "VALUE:N2b" ], [ "210", "031-060", "VALUE:N2b" ], [ "220", "031-060", "VALUE:N2b" ], [ "300", "031-060", "VALUE:N2a" ], [ "310", "031-060", "VALUE:N2a" ], [ "320", "031-060", "VALUE:N2a" ], [ "400", "031-060", "VALUE:N2c" ], [ "410", "031-060", "VALUE:N2c" ], [ "420", "031-060", "VALUE:N2c" ], [ "500", "031-060", "VALUE:N2NOS" ], [ "510", "031-060", "VALUE:N2NOS" ], [ "520", "031-060", "VALUE:N2NOS" ], [ "750", "031-060", "VALUE:N2NOS" ], [ "100", "061-980", "VALUE:N3" ], [ "110", "061-980", "VALUE:N3" ], [ "120", "061-980", "VALUE:N3" ], [ "200", "061-980", "VALUE:N3" ], [ "210", "061-980", "VALUE:N3" ], [ "220", "061-980", "VALUE:N3" ], [ "300", "061-980", "VALUE:N3" ], [ "310", "061-980", "VALUE:N3" ], [ "320", "061-980", "VALUE:N3" ], [ "400", "061-980", "VALUE:N3" ], [ "410", "061-980", "VALUE:N3" ], [ "420", "061-980", "VALUE:N3" ], [ "500", "061-980", "VALUE:N3" ], [ "510", "061-980", "VALUE:N3" ], [ "520", "061-980", "VALUE:N3" ], [ "750", "061-980", "VALUE:N3" ], [ "100", "981-987", "ERROR:" ], [ "110", "981-987", "ERROR:" ], [ "120", "981-987", "ERROR:" ], [ "200", "981-987", "ERROR:" ], [ "210", "981-987", "ERROR:" ], [ "220", "981-987", "ERROR:" ], [ "300", "981-987", "ERROR:" ], [ "310", "981-987", "ERROR:" ], [ "320", "981-987", "ERROR:" ], [ "400", "981-987", "ERROR:" ], [ "410", "981-987", "ERROR:" ], [ "420", "981-987", "ERROR:" ], [ "500", "981-987", "ERROR:" ], [ "510", "981-987", "ERROR:" ], [ "520", "981-987", "ERROR:" ], [ "750", "981-987", "ERROR:" ], [ "100", "988", "ERROR:" ], [ "110", "988", "ERROR:" ], [ "120", "988", "ERROR:" ], [ "200", "988", "ERROR:" ], [ "210", "988", "ERROR:" ], [ "220", "988", "ERROR:" ], [ "300", "988", "ERROR:" ], [ "310", "988", "ERROR:" ], [ "320", "988", "ERROR:" ], [ "400", "988", "ERROR:" ], [ "410", "988", "ERROR:" ], [ "420", "988", "ERROR:" ], [ "500", "988", "ERROR:" ], [ "510", "988", "ERROR:" ], [ "520", "988", "ERROR:" ], [ "750", "988", "ERROR:" ], [ "100", "989", "ERROR:" ], [ "110", "989", "ERROR:" ], [ "120", "989", "ERROR:" ], [ "200", "989", "ERROR:" ], [ "210", "989", "ERROR:" ], [ "220", "989", "ERROR:" ], [ "300", "989", "ERROR:" ], [ "310", "989", "ERROR:" ], [ "320", "989", "ERROR:" ], [ "400", "989", "ERROR:" ], [ "410", "989", "ERROR:" ], [ "420", "989", "ERROR:" ], [ "500", "989", "ERROR:" ], [ "510", "989", "ERROR:" ], [ "520", "989", "ERROR:" ], [ "750", "989", "ERROR:" ], [ "100", "990", "VALUE:N1" ], [ "110", "990", "VALUE:N1" ], [ "120", "990", "VALUE:N1" ], [ "200", "990", "VALUE:N2b" ], [ "210", "990", "VALUE:N2b" ], [ "220", "990", "VALUE:N2b" ], [ "300", "990", "VALUE:N1" ], [ "310", "990", "VALUE:N1" ], [ "320", "990", "VALUE:N1" ], [ "400", "990", "VALUE:N2c" ], [ "410", "990", "VALUE:N2c" ], [ "420", "990", "VALUE:N2c" ], [ "500", "990", "VALUE:N1" ], [ "510", "990", "VALUE:N1" ], [ "520", "990", "VALUE:N1" ], [ "750", "990", "VALUE:N1" ], [ "100", "991-993", "VALUE:N1" ], [ "110", "991-993", "VALUE:N1" ], [ "120", "991-993", "VALUE:N1" ], [ "200", "991-993", "VALUE:N2b" ], [ "210", "991-993", "VALUE:N2b" ], [ "220", "991-993", "VALUE:N2b" ], [ "300", "991-993", "VALUE:N1" ], [ "310", "991-993", "VALUE:N1" ], [ "320", "991-993", "VALUE:N1" ], [ "400", "991-993", "VALUE:N2c" ], [ "410", "991-993", "VALUE:N2c" ], [ "420", "991-993", "VALUE:N2c" ], [ "500", "991-993", "VALUE:N1" ], [ "510", "991-993", "VALUE:N1" ], [ "520", "991-993", "VALUE:N1" ], [ "750", "991-993", "VALUE:N1" ], [ "100", "994-996", "VALUE:N2a" ], [ "110", "994-996", "VALUE:N2a" ], [ "120", "994-996", "VALUE:N2a" ], [ "200", "994-996", "VALUE:N2b" ], [ "210", "994-996", "VALUE:N2b" ], [ "220", "994-996", "VALUE:N2b" ], [ "300", "994-996", "VALUE:N2a" ], [ "310", "994-996", "VALUE:N2a" ], [ "320", "994-996", "VALUE:N2a" ], [ "400", "994-996", "VALUE:N2c" ], [ "410", "994-996", "VALUE:N2c" ], [ "420", "994-996", "VALUE:N2c" ], [ "500", "994-996", "VALUE:N2NOS" ], [ "510", "994-996", "VALUE:N2NOS" ], [ "520", "994-996", "VALUE:N2NOS" ], [ "750", "994-996", "VALUE:N2NOS" ], [ "100", "997", "VALUE:N3" ], [ "110", "997", "VALUE:N3" ], [ "120", "997", "VALUE:N3" ], [ "200", "997", "VALUE:N3" ], [ "210", "997", "VALUE:N3" ], [ "220", "997", "VALUE:N3" ], [ "300", "997", "VALUE:N3" ], [ "310", "997", "VALUE:N3" ], [ "320", "997", "VALUE:N3" ], [ "400", "997", "VALUE:N3" ], [ "410", "997", "VALUE:N3" ], [ "420", "997", "VALUE:N3" ], [ "500", "997", "VALUE:N3" ], [ "510", "997", "VALUE:N3" ], [ "520", "997", "VALUE:N3" ], [ "750", "997", "VALUE:N3" ], [ "100", "999", "VALUE:N1" ], [ "110", "999", "VALUE:N1" ], [ "120", "999", "VALUE:N1" ], [ "200", "999", "VALUE:N2b" ], [ "210", "999", "VALUE:N2b" ], [ "220", "999", "VALUE:N2b" ], [ "300", "999", "VALUE:N1" ], [ "310", "999", "VALUE:N1" ], [ "320", "999", "VALUE:N1" ], [ "400", "999", "VALUE:N2c" ], [ "410", "999", "VALUE:N2c" ], [ "420", "999", "VALUE:N2c" ], [ "500", "999", "VALUE:N1" ], [ "510", "999", "VALUE:N1" ], [ "520", "999", "VALUE:N1" ], [ "750", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_csv2_xiw.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_csv2_xiw.json
deleted file mode 100644
index c671a9dff..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_csv2_xiw.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_csv2_xiw",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size CSv2",
- "title" : "Lymph Nodes Size CSv2 Table",
- "notes" : "**Note**: For CS Lymph Node codes 105, 115, 125-190, 205, 215, 225, 290, 305, 315, 325, 405, 415, 425, 490, 505, 515, and 525-700 ONLY, the N category is determined by the size of involved nodes coded CS Site-Specific Factor 1, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.065Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF 1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "105", "000", "ERROR:", "ERROR:" ], [ "115", "000", "ERROR:", "ERROR:" ], [ "125", "000", "ERROR:", "ERROR:" ], [ "180", "000", "ERROR:", "ERROR:" ], [ "190", "000", "ERROR:", "ERROR:" ], [ "205", "000", "ERROR:", "ERROR:" ], [ "215", "000", "ERROR:", "ERROR:" ], [ "225", "000", "ERROR:", "ERROR:" ], [ "290", "000", "ERROR:", "ERROR:" ], [ "305", "000", "ERROR:", "ERROR:" ], [ "315", "000", "ERROR:", "ERROR:" ], [ "325", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "425", "000", "ERROR:", "ERROR:" ], [ "490", "000", "ERROR:", "ERROR:" ], [ "505", "000", "ERROR:", "ERROR:" ], [ "515", "000", "ERROR:", "ERROR:" ], [ "525", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "700", "000", "ERROR:", "ERROR:" ], [ "105", "001-030", "VALUE:N1", "VALUE:N1" ], [ "115", "001-030", "VALUE:N1", "VALUE:N1" ], [ "125", "001-030", "VALUE:N1", "VALUE:N1" ], [ "180", "001-030", "VALUE:N1", "VALUE:N1" ], [ "190", "001-030", "VALUE:N1", "VALUE:N1" ], [ "205", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "215", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "225", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "290", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "305", "001-030", "VALUE:N1", "VALUE:N1" ], [ "315", "001-030", "VALUE:N1", "VALUE:N1" ], [ "325", "001-030", "VALUE:N1", "VALUE:N1" ], [ "405", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "415", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "425", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "490", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "505", "001-030", "VALUE:N1", "VALUE:N1" ], [ "515", "001-030", "VALUE:N1", "VALUE:N1" ], [ "525", "001-030", "VALUE:N1", "VALUE:N1" ], [ "600", "001-030", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "001-030", "VALUE:N1", "VALUE:N1" ], [ "105", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "115", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "125", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "180", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "190", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "205", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "215", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "225", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "290", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "305", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "315", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "325", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "405", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "415", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "425", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "490", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "505", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "515", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "525", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "105", "061-980", "VALUE:N3", "VALUE:N3" ], [ "115", "061-980", "VALUE:N3", "VALUE:N3" ], [ "125", "061-980", "VALUE:N3", "VALUE:N3" ], [ "180", "061-980", "VALUE:N3", "VALUE:N3" ], [ "190", "061-980", "VALUE:N3", "VALUE:N3" ], [ "205", "061-980", "VALUE:N3", "VALUE:N3" ], [ "215", "061-980", "VALUE:N3", "VALUE:N3" ], [ "225", "061-980", "VALUE:N3", "VALUE:N3" ], [ "290", "061-980", "VALUE:N3", "VALUE:N3" ], [ "305", "061-980", "VALUE:N3", "VALUE:N3" ], [ "315", "061-980", "VALUE:N3", "VALUE:N3" ], [ "325", "061-980", "VALUE:N3", "VALUE:N3" ], [ "405", "061-980", "VALUE:N3", "VALUE:N3" ], [ "415", "061-980", "VALUE:N3", "VALUE:N3" ], [ "425", "061-980", "VALUE:N3", "VALUE:N3" ], [ "490", "061-980", "VALUE:N3", "VALUE:N3" ], [ "505", "061-980", "VALUE:N3", "VALUE:N3" ], [ "515", "061-980", "VALUE:N3", "VALUE:N3" ], [ "525", "061-980", "VALUE:N3", "VALUE:N3" ], [ "600", "061-980", "VALUE:N3", "VALUE:N3" ], [ "700", "061-980", "VALUE:N3", "VALUE:N3" ], [ "105", "981-987", "ERROR:", "ERROR:" ], [ "115", "981-987", "ERROR:", "ERROR:" ], [ "125", "981-987", "ERROR:", "ERROR:" ], [ "180", "981-987", "ERROR:", "ERROR:" ], [ "190", "981-987", "ERROR:", "ERROR:" ], [ "205", "981-987", "ERROR:", "ERROR:" ], [ "215", "981-987", "ERROR:", "ERROR:" ], [ "225", "981-987", "ERROR:", "ERROR:" ], [ "290", "981-987", "ERROR:", "ERROR:" ], [ "305", "981-987", "ERROR:", "ERROR:" ], [ "315", "981-987", "ERROR:", "ERROR:" ], [ "325", "981-987", "ERROR:", "ERROR:" ], [ "405", "981-987", "ERROR:", "ERROR:" ], [ "415", "981-987", "ERROR:", "ERROR:" ], [ "425", "981-987", "ERROR:", "ERROR:" ], [ "490", "981-987", "ERROR:", "ERROR:" ], [ "505", "981-987", "ERROR:", "ERROR:" ], [ "515", "981-987", "ERROR:", "ERROR:" ], [ "525", "981-987", "ERROR:", "ERROR:" ], [ "600", "981-987", "ERROR:", "ERROR:" ], [ "700", "981-987", "ERROR:", "ERROR:" ], [ "105", "988", "ERROR:", "ERROR:" ], [ "115", "988", "ERROR:", "ERROR:" ], [ "125", "988", "ERROR:", "ERROR:" ], [ "180", "988", "ERROR:", "ERROR:" ], [ "190", "988", "ERROR:", "ERROR:" ], [ "205", "988", "ERROR:", "ERROR:" ], [ "215", "988", "ERROR:", "ERROR:" ], [ "225", "988", "ERROR:", "ERROR:" ], [ "290", "988", "ERROR:", "ERROR:" ], [ "305", "988", "ERROR:", "ERROR:" ], [ "315", "988", "ERROR:", "ERROR:" ], [ "325", "988", "ERROR:", "ERROR:" ], [ "405", "988", "ERROR:", "ERROR:" ], [ "415", "988", "ERROR:", "ERROR:" ], [ "425", "988", "ERROR:", "ERROR:" ], [ "490", "988", "ERROR:", "ERROR:" ], [ "505", "988", "ERROR:", "ERROR:" ], [ "515", "988", "ERROR:", "ERROR:" ], [ "525", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "700", "988", "ERROR:", "ERROR:" ], [ "105", "989", "ERROR:", "ERROR:" ], [ "115", "989", "ERROR:", "ERROR:" ], [ "125", "989", "ERROR:", "ERROR:" ], [ "180", "989", "ERROR:", "ERROR:" ], [ "190", "989", "ERROR:", "ERROR:" ], [ "205", "989", "ERROR:", "ERROR:" ], [ "215", "989", "ERROR:", "ERROR:" ], [ "225", "989", "ERROR:", "ERROR:" ], [ "290", "989", "ERROR:", "ERROR:" ], [ "305", "989", "ERROR:", "ERROR:" ], [ "315", "989", "ERROR:", "ERROR:" ], [ "325", "989", "ERROR:", "ERROR:" ], [ "405", "989", "ERROR:", "ERROR:" ], [ "415", "989", "ERROR:", "ERROR:" ], [ "425", "989", "ERROR:", "ERROR:" ], [ "490", "989", "ERROR:", "ERROR:" ], [ "505", "989", "ERROR:", "ERROR:" ], [ "515", "989", "ERROR:", "ERROR:" ], [ "525", "989", "ERROR:", "ERROR:" ], [ "600", "989", "ERROR:", "ERROR:" ], [ "700", "989", "ERROR:", "ERROR:" ], [ "105", "990", "VALUE:N1", "VALUE:N1" ], [ "115", "990", "VALUE:N1", "VALUE:N1" ], [ "125", "990", "VALUE:N1", "VALUE:N1" ], [ "180", "990", "VALUE:N1", "VALUE:N1" ], [ "190", "990", "VALUE:N1", "VALUE:N1" ], [ "205", "990", "VALUE:N2b", "VALUE:N2b" ], [ "215", "990", "VALUE:N2b", "VALUE:N2b" ], [ "225", "990", "VALUE:N2b", "VALUE:N2b" ], [ "290", "990", "VALUE:N2b", "VALUE:N2b" ], [ "305", "990", "VALUE:N1", "VALUE:N1" ], [ "315", "990", "VALUE:N1", "VALUE:N1" ], [ "325", "990", "VALUE:N1", "VALUE:N1" ], [ "405", "990", "VALUE:N2c", "VALUE:N2c" ], [ "415", "990", "VALUE:N2c", "VALUE:N2c" ], [ "425", "990", "VALUE:N2c", "VALUE:N2c" ], [ "490", "990", "VALUE:N2c", "VALUE:N2c" ], [ "505", "990", "VALUE:N1", "VALUE:N1" ], [ "515", "990", "VALUE:N1", "VALUE:N1" ], [ "525", "990", "VALUE:N1", "VALUE:N1" ], [ "600", "990", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "990", "VALUE:N1", "VALUE:N1" ], [ "105", "991-993", "VALUE:N1", "VALUE:N1" ], [ "115", "991-993", "VALUE:N1", "VALUE:N1" ], [ "125", "991-993", "VALUE:N1", "VALUE:N1" ], [ "180", "991-993", "VALUE:N1", "VALUE:N1" ], [ "190", "991-993", "VALUE:N1", "VALUE:N1" ], [ "205", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "215", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "225", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "290", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "305", "991-993", "VALUE:N1", "VALUE:N1" ], [ "315", "991-993", "VALUE:N1", "VALUE:N1" ], [ "325", "991-993", "VALUE:N1", "VALUE:N1" ], [ "405", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "415", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "425", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "490", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "505", "991-993", "VALUE:N1", "VALUE:N1" ], [ "515", "991-993", "VALUE:N1", "VALUE:N1" ], [ "525", "991-993", "VALUE:N1", "VALUE:N1" ], [ "600", "991-993", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "991-993", "VALUE:N1", "VALUE:N1" ], [ "105", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "115", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "125", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "180", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "190", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "205", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "215", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "225", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "290", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "305", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "315", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "325", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "405", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "415", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "425", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "490", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "505", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "515", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "525", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "105", "997", "VALUE:N3", "VALUE:N3" ], [ "115", "997", "VALUE:N3", "VALUE:N3" ], [ "125", "997", "VALUE:N3", "VALUE:N3" ], [ "180", "997", "VALUE:N3", "VALUE:N3" ], [ "190", "997", "VALUE:N3", "VALUE:N3" ], [ "205", "997", "VALUE:N3", "VALUE:N3" ], [ "215", "997", "VALUE:N3", "VALUE:N3" ], [ "225", "997", "VALUE:N3", "VALUE:N3" ], [ "290", "997", "VALUE:N3", "VALUE:N3" ], [ "305", "997", "VALUE:N3", "VALUE:N3" ], [ "315", "997", "VALUE:N3", "VALUE:N3" ], [ "325", "997", "VALUE:N3", "VALUE:N3" ], [ "405", "997", "VALUE:N3", "VALUE:N3" ], [ "415", "997", "VALUE:N3", "VALUE:N3" ], [ "425", "997", "VALUE:N3", "VALUE:N3" ], [ "490", "997", "VALUE:N3", "VALUE:N3" ], [ "505", "997", "VALUE:N3", "VALUE:N3" ], [ "515", "997", "VALUE:N3", "VALUE:N3" ], [ "525", "997", "VALUE:N3", "VALUE:N3" ], [ "600", "997", "VALUE:N3", "VALUE:N3" ], [ "700", "997", "VALUE:N3", "VALUE:N3" ], [ "105", "999", "VALUE:N1", "VALUE:N1" ], [ "115", "999", "VALUE:N1", "VALUE:N1" ], [ "125", "999", "VALUE:N1", "VALUE:N1" ], [ "180", "999", "VALUE:N1", "VALUE:N1" ], [ "190", "999", "VALUE:N2a", "VALUE:N2a" ], [ "205", "999", "VALUE:N2b", "VALUE:N2b" ], [ "215", "999", "VALUE:N2b", "VALUE:N2b" ], [ "225", "999", "VALUE:N2b", "VALUE:N2b" ], [ "290", "999", "VALUE:N2b", "VALUE:N2b" ], [ "305", "999", "VALUE:N1", "VALUE:N1" ], [ "315", "999", "VALUE:N1", "VALUE:N1" ], [ "325", "999", "VALUE:N1", "VALUE:N1" ], [ "405", "999", "VALUE:N2c", "VALUE:N2c" ], [ "415", "999", "VALUE:N2c", "VALUE:N2c" ], [ "425", "999", "VALUE:N2c", "VALUE:N2c" ], [ "490", "999", "VALUE:N2c", "VALUE:N2c" ], [ "505", "999", "VALUE:N1", "VALUE:N1" ], [ "515", "999", "VALUE:N1", "VALUE:N1" ], [ "525", "999", "VALUE:N1", "VALUE:N1" ], [ "600", "999", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "999", "VALUE:N3", "VALUE:N3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets00_ajcc6_xdo_m.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets00_ajcc6_xdo_m.json
deleted file mode 100644
index f05ef9612..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets00_ajcc6_xdo_m.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets00_ajcc6_xdo_m",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 00 AJCC6 - For M",
- "title" : "Lymph Nodes Size Mets 00 AJCC 6 Table - For M",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 00, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table. A CS Site-Specific Factor 2 code takes precedence over a CS Lymph Nodes code for \"stated as N\"; however, if CS Site-Specific Factor 2 is coded as unknown, the N category may be assigned based on \"stated as N\" recorded in CS Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:26.139Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "result_m",
- "name" : "Result for M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "VALUE:", "ERROR:" ], [ "250", "000", "VALUE:", "ERROR:" ], [ "350", "000", "VALUE:", "ERROR:" ], [ "400", "000", "VALUE:", "ERROR:" ], [ "450", "000", "VALUE:", "ERROR:" ], [ "505", "000", "VALUE:", "ERROR:" ], [ "150", "001-020", "VALUE:M0", "MATCH:" ], [ "250", "001-020", "VALUE:M0", "MATCH:" ], [ "350", "001-020", "VALUE:M1", "MATCH:" ], [ "400", "001-020", "VALUE:M1", "MATCH:" ], [ "450", "001-020", "VALUE:M1", "MATCH:" ], [ "505", "001-020", "VALUE:M0", "MATCH:" ], [ "150", "021-050", "VALUE:M0", "MATCH:" ], [ "250", "021-050", "VALUE:M0", "MATCH:" ], [ "350", "021-050", "VALUE:M1", "MATCH:" ], [ "400", "021-050", "VALUE:M1", "MATCH:" ], [ "450", "021-050", "VALUE:M1", "MATCH:" ], [ "505", "021-050", "VALUE:M0", "MATCH:" ], [ "150", "051-980", "VALUE:M0", "MATCH:" ], [ "250", "051-980", "VALUE:M0", "MATCH:" ], [ "350", "051-980", "VALUE:M1", "MATCH:" ], [ "400", "051-980", "VALUE:M1", "MATCH:" ], [ "450", "051-980", "VALUE:M1", "MATCH:" ], [ "505", "051-980", "VALUE:M0", "MATCH:" ], [ "150", "988", "VALUE:M0", "MATCH:" ], [ "250", "988", "VALUE:M0", "MATCH:" ], [ "350", "988", "VALUE:M1", "MATCH:" ], [ "400", "988", "VALUE:M1", "MATCH:" ], [ "450", "988", "VALUE:M1", "MATCH:" ], [ "505", "988", "VALUE:M0", "MATCH:" ], [ "150", "990-992", "VALUE:M0", "MATCH:" ], [ "250", "990-992", "VALUE:M0", "MATCH:" ], [ "350", "990-992", "VALUE:M1", "MATCH:" ], [ "400", "990-992", "VALUE:M1", "MATCH:" ], [ "450", "990-992", "VALUE:M1", "MATCH:" ], [ "505", "990-992", "VALUE:M0", "MATCH:" ], [ "150", "993-995", "VALUE:M0", "MATCH:" ], [ "250", "993-995", "VALUE:M0", "MATCH:" ], [ "350", "993-995", "VALUE:M1", "MATCH:" ], [ "400", "993-995", "VALUE:M1", "MATCH:" ], [ "450", "993-995", "VALUE:M1", "MATCH:" ], [ "505", "993-995", "VALUE:M0", "MATCH:" ], [ "150", "996-997", "VALUE:M0", "MATCH:" ], [ "250", "996-997", "VALUE:M0", "MATCH:" ], [ "350", "996-997", "VALUE:M1", "MATCH:" ], [ "400", "996-997", "VALUE:M1", "MATCH:" ], [ "450", "996-997", "VALUE:M1", "MATCH:" ], [ "505", "996-997", "VALUE:M0", "MATCH:" ], [ "150", "999", "VALUE:M0", "MATCH:" ], [ "250", "999", "VALUE:M0", "MATCH:" ], [ "350", "999", "VALUE:M1", "MATCH:" ], [ "400", "999", "VALUE:M1", "MATCH:" ], [ "450", "999", "VALUE:M1", "MATCH:" ], [ "505", "999", "VALUE:M0", "MATCH:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets00_ajcc6_xdo_n.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets00_ajcc6_xdo_n.json
deleted file mode 100644
index 63d2d290b..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets00_ajcc6_xdo_n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets00_ajcc6_xdo_n",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 00 AJCC6 - For N",
- "title" : "Lymph Nodes Size Mets 00 AJCC 6 Table - For N",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 00, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table. A CS Site-Specific Factor 2 code takes precedence over a CS Lymph Nodes code for \"stated as N\"; however, if CS Site-Specific Factor 2 is coded as unknown, the N category may be assigned based on \"stated as N\" recorded in CS Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:26.190Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "SSF2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "505", "000", "ERROR:" ], [ "150", "001-020", "VALUE:N1" ], [ "250", "001-020", "VALUE:N2" ], [ "350", "001-020", "VALUE:N0" ], [ "400", "001-020", "VALUE:N1" ], [ "450", "001-020", "VALUE:N2" ], [ "505", "001-020", "VALUE:N1" ], [ "150", "021-050", "VALUE:N2" ], [ "250", "021-050", "VALUE:N2" ], [ "350", "021-050", "VALUE:N0" ], [ "400", "021-050", "VALUE:N2" ], [ "450", "021-050", "VALUE:N2" ], [ "505", "021-050", "VALUE:N2" ], [ "150", "051-980", "VALUE:N3" ], [ "250", "051-980", "VALUE:N3" ], [ "350", "051-980", "VALUE:N0" ], [ "400", "051-980", "VALUE:N3" ], [ "450", "051-980", "VALUE:N3" ], [ "505", "051-980", "VALUE:N3" ], [ "150", "988", "VALUE:N1" ], [ "250", "988", "VALUE:N2" ], [ "350", "988", "VALUE:N0" ], [ "400", "988", "VALUE:N1" ], [ "450", "988", "VALUE:N2" ], [ "505", "988", "VALUE:N1" ], [ "150", "990-992", "VALUE:N1" ], [ "250", "990-992", "VALUE:N2" ], [ "350", "990-992", "VALUE:N0" ], [ "400", "990-992", "VALUE:N1" ], [ "450", "990-992", "VALUE:N2" ], [ "505", "990-992", "VALUE:N1" ], [ "150", "993-995", "VALUE:N2" ], [ "250", "993-995", "VALUE:N2" ], [ "350", "993-995", "VALUE:N0" ], [ "400", "993-995", "VALUE:N2" ], [ "450", "993-995", "VALUE:N2" ], [ "505", "993-995", "VALUE:N2" ], [ "150", "996-997", "VALUE:N3" ], [ "250", "996-997", "VALUE:N3" ], [ "350", "996-997", "VALUE:N0" ], [ "400", "996-997", "VALUE:N3" ], [ "450", "996-997", "VALUE:N3" ], [ "505", "996-997", "VALUE:N3" ], [ "150", "999", "VALUE:N1" ], [ "250", "999", "VALUE:N2" ], [ "350", "999", "VALUE:N0" ], [ "400", "999", "VALUE:N1" ], [ "450", "999", "VALUE:N2" ], [ "505", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets10or50_ajcc6_xid_m.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets10or50_ajcc6_xid_m.json
deleted file mode 100644
index 604c71be3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets10or50_ajcc6_xid_m.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets10or50_ajcc6_xid_m",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 10 or 50 AJCC6 - For M",
- "title" : "Lymph Nodes Size Mets 10 or 50 AJCC 6 Table - For M",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 10 or 50, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.240Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "result_m",
- "name" : "Result for M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000-980,988,990-997,999", "VALUE:", "ERROR:" ], [ "250", "000-980,988,990-997,999", "VALUE:", "ERROR:" ], [ "350", "000-980,988,990-997,999", "VALUE:", "ERROR:" ], [ "400", "000-980,988,990-997,999", "VALUE:", "ERROR:" ], [ "450", "000-980,988,990-997,999", "VALUE:", "ERROR:" ], [ "505", "000-980,988,990-997,999", "VALUE:", "ERROR:" ], [ "*", "981-987,989,998", "VALUE:", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets10or50_ajcc6_xid_n.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets10or50_ajcc6_xid_n.json
deleted file mode 100644
index 215246d76..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets10or50_ajcc6_xid_n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets10or50_ajcc6_xid_n",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 10 or 50 AJCC6 - For N",
- "title" : "Lymph Nodes Size Mets 10 or 50 AJCC 6 Table - For N",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 10 or 50, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.288Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000-980,988,990-997,999", "ERROR:" ], [ "250", "000-980,988,990-997,999", "ERROR:" ], [ "350", "000-980,988,990-997,999", "ERROR:" ], [ "400", "000-980,988,990-997,999", "ERROR:" ], [ "450", "000-980,988,990-997,999", "ERROR:" ], [ "505", "000-980,988,990-997,999", "ERROR:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets114055or60_ajcc6_xdv_m.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets114055or60_ajcc6_xdv_m.json
deleted file mode 100644
index 4a84b23b0..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets114055or60_ajcc6_xdv_m.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets114055or60_ajcc6_xdv_m",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 11, 40, 55, or 60 AJCC6 - For M",
- "title" : "Lymph Nodes Size Mets 11, 40, 55, or 60 AJCC 6 Table - For M",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 11, 40, 55, or 60, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table. A CS Site-Specific Factor 2 code takes precedence over a CS Lymph Nodes code for \"stated as N\"; however, if CS Site-Specific Factor 2 is coded as unknown, the N category may be assigned based on \"stated as N\" recorded in CS Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:26.331Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "result_m",
- "name" : "Result for M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "VALUE:", "ERROR:" ], [ "250", "000", "VALUE:", "ERROR:" ], [ "350", "000", "VALUE:", "ERROR:" ], [ "400", "000", "VALUE:", "ERROR:" ], [ "450", "000", "VALUE:", "ERROR:" ], [ "505", "000", "VALUE:", "ERROR:" ], [ "150", "001-020", "VALUE:M1", "MATCH:" ], [ "250", "001-020", "VALUE:M1", "MATCH:" ], [ "350", "001-020", "VALUE:M1", "MATCH:" ], [ "400", "001-020", "VALUE:M1", "MATCH:" ], [ "450", "001-020", "VALUE:M1", "MATCH:" ], [ "505", "001-020", "VALUE:M1", "MATCH:" ], [ "150", "021-050", "VALUE:M1", "MATCH:" ], [ "250", "021-050", "VALUE:M1", "MATCH:" ], [ "350", "021-050", "VALUE:M1", "MATCH:" ], [ "400", "021-050", "VALUE:M1", "MATCH:" ], [ "450", "021-050", "VALUE:M1", "MATCH:" ], [ "505", "021-050", "VALUE:M1", "MATCH:" ], [ "150", "051-980", "VALUE:M1", "MATCH:" ], [ "250", "051-980", "VALUE:M1", "MATCH:" ], [ "350", "051-980", "VALUE:M1", "MATCH:" ], [ "400", "051-980", "VALUE:M1", "MATCH:" ], [ "450", "051-980", "VALUE:M1", "MATCH:" ], [ "505", "051-980", "VALUE:M1", "MATCH:" ], [ "150", "988", "VALUE:M1", "MATCH:" ], [ "250", "988", "VALUE:M1", "MATCH:" ], [ "350", "988", "VALUE:M1", "MATCH:" ], [ "400", "988", "VALUE:M1", "MATCH:" ], [ "450", "988", "VALUE:M1", "MATCH:" ], [ "505", "988", "VALUE:M1", "MATCH:" ], [ "150", "990-992", "VALUE:M1", "MATCH:" ], [ "250", "990-992", "VALUE:M1", "MATCH:" ], [ "350", "990-992", "VALUE:M1", "MATCH:" ], [ "400", "990-992", "VALUE:M1", "MATCH:" ], [ "450", "990-992", "VALUE:M1", "MATCH:" ], [ "505", "990-992", "VALUE:M1", "MATCH:" ], [ "150", "993-995", "VALUE:M1", "MATCH:" ], [ "250", "993-995", "VALUE:M1", "MATCH:" ], [ "350", "993-995", "VALUE:M1", "MATCH:" ], [ "400", "993-995", "VALUE:M1", "MATCH:" ], [ "450", "993-995", "VALUE:M1", "MATCH:" ], [ "505", "993-995", "VALUE:M1", "MATCH:" ], [ "150", "996-997", "VALUE:M1", "MATCH:" ], [ "250", "996-997", "VALUE:M1", "MATCH:" ], [ "350", "996-997", "VALUE:M1", "MATCH:" ], [ "400", "996-997", "VALUE:M1", "MATCH:" ], [ "450", "996-997", "VALUE:M1", "MATCH:" ], [ "505", "996-997", "VALUE:M1", "MATCH:" ], [ "150", "999", "VALUE:M1", "MATCH:" ], [ "250", "999", "VALUE:M1", "MATCH:" ], [ "350", "999", "VALUE:M1", "MATCH:" ], [ "400", "999", "VALUE:M1", "MATCH:" ], [ "450", "999", "VALUE:M1", "MATCH:" ], [ "505", "999", "VALUE:M1", "MATCH:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets114055or60_ajcc6_xdv_n.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets114055or60_ajcc6_xdv_n.json
deleted file mode 100644
index 58abe1c7f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets114055or60_ajcc6_xdv_n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets114055or60_ajcc6_xdv_n",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 11, 40, 55, or 60 AJCC6 - For N",
- "title" : "Lymph Nodes Size Mets 11, 40, 55, or 60 AJCC 6 Table",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 11, 40, 55, or 60, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table. A CS Site-Specific Factor 2 code takes precedence over a CS Lymph Nodes code for \"stated as N\"; however, if CS Site-Specific Factor 2 is coded as unknown, the N category may be assigned based on \"stated as N\" recorded in CS Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:26.379Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "505", "000", "ERROR:" ], [ "150", "001-020", "VALUE:N1" ], [ "250", "001-020", "VALUE:N2" ], [ "350", "001-020", "VALUE:N0" ], [ "400", "001-020", "VALUE:N1" ], [ "450", "001-020", "VALUE:N2" ], [ "505", "001-020", "VALUE:N1" ], [ "150", "021-050", "VALUE:N2" ], [ "250", "021-050", "VALUE:N2" ], [ "350", "021-050", "VALUE:N0" ], [ "400", "021-050", "VALUE:N2" ], [ "450", "021-050", "VALUE:N2" ], [ "505", "021-050", "VALUE:N2" ], [ "150", "051-980", "VALUE:N1" ], [ "250", "051-980", "VALUE:N2" ], [ "350", "051-980", "VALUE:N0" ], [ "400", "051-980", "VALUE:N1" ], [ "450", "051-980", "VALUE:N2" ], [ "505", "051-980", "VALUE:N1" ], [ "150", "988", "VALUE:N1" ], [ "250", "988", "VALUE:N2" ], [ "350", "988", "VALUE:N0" ], [ "400", "988", "VALUE:N1" ], [ "450", "988", "VALUE:N2" ], [ "505", "988", "VALUE:N1" ], [ "150", "990-992", "VALUE:N1" ], [ "250", "990-992", "VALUE:N2" ], [ "350", "990-992", "VALUE:N0" ], [ "400", "990-992", "VALUE:N1" ], [ "450", "990-992", "VALUE:N2" ], [ "505", "990-992", "VALUE:N1" ], [ "150", "993-995", "VALUE:N2" ], [ "250", "993-995", "VALUE:N2" ], [ "350", "993-995", "VALUE:N0" ], [ "400", "993-995", "VALUE:N2" ], [ "450", "993-995", "VALUE:N2" ], [ "505", "993-995", "VALUE:N2" ], [ "150", "996-997", "VALUE:N3" ], [ "250", "996-997", "VALUE:N3" ], [ "350", "996-997", "VALUE:N0" ], [ "400", "996-997", "VALUE:N3" ], [ "450", "996-997", "VALUE:N3" ], [ "505", "996-997", "VALUE:N3" ], [ "150", "999", "VALUE:N1" ], [ "250", "999", "VALUE:N2" ], [ "350", "999", "VALUE:N0" ], [ "400", "999", "VALUE:N1" ], [ "450", "999", "VALUE:N2" ], [ "505", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets99_ajcc6_xdp_m.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets99_ajcc6_xdp_m.json
deleted file mode 100644
index 0555dac10..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets99_ajcc6_xdp_m.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets99_ajcc6_xdp_m",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 99 AJCC6 - For M",
- "title" : "Lymph Nodes Size Mets 99 AJCC 6 Table - For M",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 99, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table. A CS Site-Specific Factor 2 code takes precedence over a CS Lymph Nodes code for \"stated as N\"; however, if CS Site-Specific Factor 2 is coded as unknown, the N category may be assigned based on \"stated as N\" recorded in CS Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:26.428Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "result_m",
- "name" : "Result for M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "VALUE:", "ERROR:" ], [ "250", "000", "VALUE:", "ERROR:" ], [ "350", "000", "VALUE:", "ERROR:" ], [ "400", "000", "VALUE:", "ERROR:" ], [ "450", "000", "VALUE:", "ERROR:" ], [ "505", "000", "VALUE:", "ERROR:" ], [ "150", "001-020", "VALUE:MX", "MATCH:" ], [ "250", "001-020", "VALUE:MX", "MATCH:" ], [ "350", "001-020", "VALUE:M1", "MATCH:" ], [ "400", "001-020", "VALUE:M1", "MATCH:" ], [ "450", "001-020", "VALUE:M1", "MATCH:" ], [ "505", "001-020", "VALUE:MX", "MATCH:" ], [ "150", "021-050", "VALUE:MX", "MATCH:" ], [ "250", "021-050", "VALUE:MX", "MATCH:" ], [ "350", "021-050", "VALUE:M1", "MATCH:" ], [ "400", "021-050", "VALUE:M1", "MATCH:" ], [ "450", "021-050", "VALUE:M1", "MATCH:" ], [ "505", "021-050", "VALUE:MX", "MATCH:" ], [ "150", "051-980", "VALUE:MX", "MATCH:" ], [ "250", "051-980", "VALUE:MX", "MATCH:" ], [ "350", "051-980", "VALUE:M1", "MATCH:" ], [ "400", "051-980", "VALUE:M1", "MATCH:" ], [ "450", "051-980", "VALUE:M1", "MATCH:" ], [ "505", "051-980", "VALUE:MX", "MATCH:" ], [ "150", "988", "VALUE:MX", "MATCH:" ], [ "250", "988", "VALUE:MX", "MATCH:" ], [ "350", "988", "VALUE:M1", "MATCH:" ], [ "400", "988", "VALUE:M1", "MATCH:" ], [ "450", "988", "VALUE:M1", "MATCH:" ], [ "505", "988", "VALUE:MX", "MATCH:" ], [ "150", "990-992", "VALUE:MX", "MATCH:" ], [ "250", "990-992", "VALUE:MX", "MATCH:" ], [ "350", "990-992", "VALUE:M1", "MATCH:" ], [ "400", "990-992", "VALUE:M1", "MATCH:" ], [ "450", "990-992", "VALUE:M1", "MATCH:" ], [ "505", "990-992", "VALUE:MX", "MATCH:" ], [ "150", "993-995", "VALUE:MX", "MATCH:" ], [ "250", "993-995", "VALUE:MX", "MATCH:" ], [ "350", "993-995", "VALUE:M1", "MATCH:" ], [ "400", "993-995", "VALUE:M1", "MATCH:" ], [ "450", "993-995", "VALUE:M1", "MATCH:" ], [ "505", "993-995", "VALUE:MX", "MATCH:" ], [ "150", "996-997", "VALUE:MX", "MATCH:" ], [ "250", "996-997", "VALUE:MX", "MATCH:" ], [ "350", "996-997", "VALUE:M1", "MATCH:" ], [ "400", "996-997", "VALUE:M1", "MATCH:" ], [ "450", "996-997", "VALUE:M1", "MATCH:" ], [ "505", "996-997", "VALUE:MX", "MATCH:" ], [ "150", "999", "VALUE:MX", "MATCH:" ], [ "250", "999", "VALUE:MX", "MATCH:" ], [ "350", "999", "VALUE:M1", "MATCH:" ], [ "400", "999", "VALUE:M1", "MATCH:" ], [ "450", "999", "VALUE:M1", "MATCH:" ], [ "505", "999", "VALUE:MX", "MATCH:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets99_ajcc6_xdp_n.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets99_ajcc6_xdp_n.json
deleted file mode 100644
index e1cda09d5..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_mets99_ajcc6_xdp_n.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_size_mets99_ajcc6_xdp_n",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Mets 99 AJCC6 - For N",
- "title" : "Lymph Nodes Size Mets 99 AJCC 6 Table - For N",
- "notes" : "**Note**: When CS Lymph Nodes is coded 150, 250, 350-450, or 505 and CS Mets at DX is coded 99, the AJCC 6 N and M categories are determined by the size of involved nodes as coded in CS Site-Specific Factor 2, Size of Metastasis in Lymph Nodes as shown in this table. A CS Site-Specific Factor 2 code takes precedence over a CS Lymph Nodes code for \"stated as N\"; however, if CS Site-Specific Factor 2 is coded as unknown, the N category may be assigned based on \"stated as N\" recorded in CS Lymph Nodes.",
- "last_modified" : "2015-05-27T16:19:26.477Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf2",
- "name" : "CS SSF 2",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "150", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "505", "000", "ERROR:" ], [ "150", "001-020", "VALUE:N1" ], [ "250", "001-020", "VALUE:N2" ], [ "350", "001-020", "VALUE:N0" ], [ "400", "001-020", "VALUE:N1" ], [ "450", "001-020", "VALUE:N2" ], [ "505", "001-020", "VALUE:N1" ], [ "150", "021-050", "VALUE:N2" ], [ "250", "021-050", "VALUE:N2" ], [ "350", "021-050", "VALUE:N0" ], [ "400", "021-050", "VALUE:N2" ], [ "450", "021-050", "VALUE:N2" ], [ "505", "021-050", "VALUE:N2" ], [ "150", "051-980", "VALUE:N3" ], [ "250", "051-980", "VALUE:N3" ], [ "350", "051-980", "VALUE:N0" ], [ "400", "051-980", "VALUE:N3" ], [ "450", "051-980", "VALUE:N3" ], [ "505", "051-980", "VALUE:N3" ], [ "150", "988", "VALUE:N1" ], [ "250", "988", "VALUE:N2" ], [ "350", "988", "VALUE:N0" ], [ "400", "988", "VALUE:N1" ], [ "450", "988", "VALUE:N2" ], [ "505", "988", "VALUE:N1" ], [ "150", "990-992", "VALUE:N1" ], [ "250", "990-992", "VALUE:N2" ], [ "350", "990-992", "VALUE:N0" ], [ "400", "990-992", "VALUE:N1" ], [ "450", "990-992", "VALUE:N2" ], [ "505", "990-992", "VALUE:N1" ], [ "150", "993-995", "VALUE:N2" ], [ "250", "993-995", "VALUE:N2" ], [ "350", "993-995", "VALUE:N0" ], [ "400", "993-995", "VALUE:N2" ], [ "450", "993-995", "VALUE:N2" ], [ "505", "993-995", "VALUE:N2" ], [ "150", "996-997", "VALUE:N3" ], [ "250", "996-997", "VALUE:N3" ], [ "350", "996-997", "VALUE:N0" ], [ "400", "996-997", "VALUE:N3" ], [ "450", "996-997", "VALUE:N3" ], [ "505", "996-997", "VALUE:N3" ], [ "150", "999", "VALUE:N1" ], [ "250", "999", "VALUE:N2" ], [ "350", "999", "VALUE:N0" ], [ "400", "999", "VALUE:N1" ], [ "450", "999", "VALUE:N2" ], [ "505", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_table_csv2_xcp.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_table_csv2_xcp.json
deleted file mode 100644
index 2495fc95a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_table_csv2_xcp.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_table_csv2_xcp",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size Table CSv2",
- "title" : "Lymph Nodes Size Table CSv2",
- "notes" : "**Note**: For CS Lymph Node codes 050-070, 105, 115, 130, 180, 405, 415, 430, 505, 515, and 530-620 ONLY, the N category is determined by the size of involved nodes coded in CS Site-Specific Factor 1, Size of Lymph Nodes Table, as shown in the following table.",
- "last_modified" : "2015-05-27T16:19:26.528Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1 Size of Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "050", "000", "ERROR:", "ERROR:" ], [ "060", "000", "ERROR:", "ERROR:" ], [ "070", "000", "ERROR:", "ERROR:" ], [ "105", "000", "ERROR:", "ERROR:" ], [ "115", "000", "ERROR:", "ERROR:" ], [ "130", "000", "ERROR:", "ERROR:" ], [ "180", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "430", "000", "ERROR:", "ERROR:" ], [ "505", "000", "ERROR:", "ERROR:" ], [ "515", "000", "ERROR:", "ERROR:" ], [ "530", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "620", "000", "ERROR:", "ERROR:" ], [ "050", "001-060", "VALUE:N1", "VALUE:N1" ], [ "060", "001-060", "VALUE:N1", "VALUE:N1" ], [ "070", "001-060", "VALUE:N1", "VALUE:N1" ], [ "105", "001-060", "VALUE:N1", "VALUE:N1" ], [ "115", "001-060", "VALUE:N1", "VALUE:N1" ], [ "130", "001-060", "VALUE:N1", "VALUE:N1" ], [ "180", "001-060", "VALUE:N1", "VALUE:N1" ], [ "405", "001-060", "VALUE:N2", "VALUE:N2" ], [ "415", "001-060", "VALUE:N2", "VALUE:N2" ], [ "430", "001-060", "VALUE:N2", "VALUE:N2" ], [ "505", "001-060", "VALUE:N1", "VALUE:N1" ], [ "515", "001-060", "VALUE:N1", "VALUE:N1" ], [ "530", "001-060", "VALUE:N1", "VALUE:N1" ], [ "600", "001-060", "VALUE:N2", "VALUE:N2" ], [ "620", "001-060", "VALUE:N1", "VALUE:N1" ], [ "050", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "060", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "070", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "105", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "115", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "130", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "180", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "405", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "415", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "430", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "505", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "515", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "530", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "600", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "620", "061-980", "VALUE:N3a", "VALUE:N3a" ], [ "050", "981-987", "ERROR:", "ERROR:" ], [ "060", "981-987", "ERROR:", "ERROR:" ], [ "070", "981-987", "ERROR:", "ERROR:" ], [ "105", "981-987", "ERROR:", "ERROR:" ], [ "115", "981-987", "ERROR:", "ERROR:" ], [ "130", "981-987", "ERROR:", "ERROR:" ], [ "180", "981-987", "ERROR:", "ERROR:" ], [ "405", "981-987", "ERROR:", "ERROR:" ], [ "415", "981-987", "ERROR:", "ERROR:" ], [ "430", "981-987", "ERROR:", "ERROR:" ], [ "505", "981-987", "ERROR:", "ERROR:" ], [ "515", "981-987", "ERROR:", "ERROR:" ], [ "530", "981-987", "ERROR:", "ERROR:" ], [ "600", "981-987", "ERROR:", "ERROR:" ], [ "620", "981-987", "ERROR:", "ERROR:" ], [ "050", "988", "ERROR:", "ERROR:" ], [ "060", "988", "ERROR:", "ERROR:" ], [ "070", "988", "ERROR:", "ERROR:" ], [ "105", "988", "ERROR:", "ERROR:" ], [ "115", "988", "ERROR:", "ERROR:" ], [ "130", "988", "ERROR:", "ERROR:" ], [ "180", "988", "ERROR:", "ERROR:" ], [ "405", "988", "ERROR:", "ERROR:" ], [ "415", "988", "ERROR:", "ERROR:" ], [ "430", "988", "ERROR:", "ERROR:" ], [ "505", "988", "ERROR:", "ERROR:" ], [ "515", "988", "ERROR:", "ERROR:" ], [ "530", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "620", "988", "ERROR:", "ERROR:" ], [ "050", "989", "ERROR:", "ERROR:" ], [ "060", "989", "ERROR:", "ERROR:" ], [ "070", "989", "ERROR:", "ERROR:" ], [ "105", "989", "ERROR:", "ERROR:" ], [ "115", "989", "ERROR:", "ERROR:" ], [ "130", "989", "ERROR:", "ERROR:" ], [ "180", "989", "ERROR:", "ERROR:" ], [ "405", "989", "ERROR:", "ERROR:" ], [ "415", "989", "ERROR:", "ERROR:" ], [ "430", "989", "ERROR:", "ERROR:" ], [ "505", "989", "ERROR:", "ERROR:" ], [ "515", "989", "ERROR:", "ERROR:" ], [ "530", "989", "ERROR:", "ERROR:" ], [ "600", "989", "ERROR:", "ERROR:" ], [ "620", "989", "ERROR:", "ERROR:" ], [ "050", "990-996", "VALUE:N1", "VALUE:N1" ], [ "060", "990-996", "VALUE:N1", "VALUE:N1" ], [ "070", "990-996", "VALUE:N1", "VALUE:N1" ], [ "105", "990-996", "VALUE:N1", "VALUE:N1" ], [ "115", "990-996", "VALUE:N1", "VALUE:N1" ], [ "130", "990-996", "VALUE:N1", "VALUE:N1" ], [ "180", "990-996", "VALUE:N1", "VALUE:N1" ], [ "405", "990-996", "VALUE:N2", "VALUE:N2" ], [ "415", "990-996", "VALUE:N2", "VALUE:N2" ], [ "430", "990-996", "VALUE:N2", "VALUE:N2" ], [ "505", "990-996", "VALUE:N1", "VALUE:N1" ], [ "515", "990-996", "VALUE:N1", "VALUE:N1" ], [ "530", "990-996", "VALUE:N1", "VALUE:N1" ], [ "600", "990-996", "VALUE:N2", "VALUE:N2" ], [ "620", "990-996", "VALUE:N1", "VALUE:N1" ], [ "050", "997", "VALUE:N3a", "VALUE:N3a" ], [ "060", "997", "VALUE:N3a", "VALUE:N3a" ], [ "070", "997", "VALUE:N3a", "VALUE:N3a" ], [ "105", "997", "VALUE:N3a", "VALUE:N3a" ], [ "115", "997", "VALUE:N3a", "VALUE:N3a" ], [ "130", "997", "VALUE:N3a", "VALUE:N3a" ], [ "180", "997", "VALUE:N3a", "VALUE:N3a" ], [ "405", "997", "VALUE:N3a", "VALUE:N3a" ], [ "415", "997", "VALUE:N3a", "VALUE:N3a" ], [ "430", "997", "VALUE:N3a", "VALUE:N3a" ], [ "505", "997", "VALUE:N3a", "VALUE:N3a" ], [ "515", "997", "VALUE:N3a", "VALUE:N3a" ], [ "530", "997", "VALUE:N3a", "VALUE:N3a" ], [ "600", "997", "VALUE:N3a", "VALUE:N3a" ], [ "620", "997", "VALUE:N3a", "VALUE:N3a" ], [ "050", "999", "VALUE:N1", "VALUE:N1" ], [ "060", "999", "VALUE:N1", "VALUE:N1" ], [ "070", "999", "VALUE:N1", "VALUE:N1" ], [ "105", "999", "VALUE:N1", "VALUE:N1" ], [ "115", "999", "VALUE:N1", "VALUE:N1" ], [ "130", "999", "VALUE:N1", "VALUE:N1" ], [ "180", "999", "VALUE:N1", "VALUE:N1" ], [ "405", "999", "VALUE:N2", "VALUE:N2" ], [ "415", "999", "VALUE:N2", "VALUE:N2" ], [ "430", "999", "VALUE:N2", "VALUE:N2" ], [ "505", "999", "VALUE:N1", "VALUE:N1" ], [ "515", "999", "VALUE:N1", "VALUE:N1" ], [ "530", "999", "VALUE:N1", "VALUE:N1" ], [ "600", "999", "VALUE:N2", "VALUE:N2" ], [ "620", "999", "VALUE:N3a", "VALUE:N3a" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xja.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xja.json
deleted file mode 100644
index 6059a3a31..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xja.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_xja",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size",
- "title" : "Lymph Nodes Size Table",
- "notes" : "**Note**: For CS Lymph Node codes 100-700 ONLY, the N category is determined by the size of involved nodes coded in CS Site-Specific Factor 1, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.589Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1 000",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "105", "000", "ERROR:", "ERROR:" ], [ "110", "000", "ERROR:", "ERROR:" ], [ "120", "000", "ERROR:", "ERROR:" ], [ "180", "000", "ERROR:", "ERROR:" ], [ "190", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "205", "000", "ERROR:", "ERROR:" ], [ "210", "000", "ERROR:", "ERROR:" ], [ "215", "000", "ERROR:", "ERROR:" ], [ "220", "000", "ERROR:", "ERROR:" ], [ "290", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "305", "000", "ERROR:", "ERROR:" ], [ "310", "000", "ERROR:", "ERROR:" ], [ "320", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "405", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "415", "000", "ERROR:", "ERROR:" ], [ "420", "000", "ERROR:", "ERROR:" ], [ "490", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "505", "000", "ERROR:", "ERROR:" ], [ "510", "000", "ERROR:", "ERROR:" ], [ "520", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "700", "000", "ERROR:", "ERROR:" ], [ "100", "001-030", "VALUE:N1", "VALUE:N1" ], [ "105", "001-030", "VALUE:N1", "VALUE:N1" ], [ "110", "001-030", "VALUE:N1", "VALUE:N1" ], [ "120", "001-030", "VALUE:N1", "VALUE:N1" ], [ "180", "001-030", "VALUE:N1", "VALUE:N1" ], [ "190", "001-030", "VALUE:N1", "VALUE:N1" ], [ "200", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "205", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "210", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "215", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "220", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "290", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "300", "001-030", "VALUE:N1", "VALUE:N1" ], [ "305", "001-030", "VALUE:N1", "VALUE:N1" ], [ "310", "001-030", "VALUE:N1", "VALUE:N1" ], [ "320", "001-030", "VALUE:N1", "VALUE:N1" ], [ "400", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "405", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "410", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "415", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "420", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "490", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "500", "001-030", "VALUE:N1", "VALUE:N1" ], [ "505", "001-030", "VALUE:N1", "VALUE:N1" ], [ "510", "001-030", "VALUE:N1", "VALUE:N1" ], [ "520", "001-030", "VALUE:N1", "VALUE:N1" ], [ "600", "001-030", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "001-030", "VALUE:N1", "VALUE:N1" ], [ "100", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "105", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "110", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "120", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "180", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "190", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "200", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "205", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "210", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "215", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "220", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "290", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "300", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "305", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "310", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "320", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "400", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "405", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "410", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "415", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "420", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "490", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "500", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "505", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "510", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "520", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "100", "061-980", "VALUE:N3", "VALUE:N3" ], [ "105", "061-980", "VALUE:N3", "VALUE:N3" ], [ "110", "061-980", "VALUE:N3", "VALUE:N3" ], [ "120", "061-980", "VALUE:N3", "VALUE:N3" ], [ "180", "061-980", "VALUE:N3", "VALUE:N3" ], [ "190", "061-980", "VALUE:N3", "VALUE:N3" ], [ "200", "061-980", "VALUE:N3", "VALUE:N3" ], [ "205", "061-980", "VALUE:N3", "VALUE:N3" ], [ "210", "061-980", "VALUE:N3", "VALUE:N3" ], [ "215", "061-980", "VALUE:N3", "VALUE:N3" ], [ "220", "061-980", "VALUE:N3", "VALUE:N3" ], [ "290", "061-980", "VALUE:N3", "VALUE:N3" ], [ "300", "061-980", "VALUE:N3", "VALUE:N3" ], [ "305", "061-980", "VALUE:N3", "VALUE:N3" ], [ "310", "061-980", "VALUE:N3", "VALUE:N3" ], [ "320", "061-980", "VALUE:N3", "VALUE:N3" ], [ "400", "061-980", "VALUE:N3", "VALUE:N3" ], [ "405", "061-980", "VALUE:N3", "VALUE:N3" ], [ "410", "061-980", "VALUE:N3", "VALUE:N3" ], [ "415", "061-980", "VALUE:N3", "VALUE:N3" ], [ "420", "061-980", "VALUE:N3", "VALUE:N3" ], [ "490", "061-980", "VALUE:N3", "VALUE:N3" ], [ "500", "061-980", "VALUE:N3", "VALUE:N3" ], [ "505", "061-980", "VALUE:N3", "VALUE:N3" ], [ "510", "061-980", "VALUE:N3", "VALUE:N3" ], [ "520", "061-980", "VALUE:N3", "VALUE:N3" ], [ "600", "061-980", "VALUE:N3", "VALUE:N3" ], [ "700", "061-980", "VALUE:N3", "VALUE:N3" ], [ "100", "981-987", "ERROR:", "ERROR:" ], [ "105", "981-987", "ERROR:", "ERROR:" ], [ "110", "981-987", "ERROR:", "ERROR:" ], [ "120", "981-987", "ERROR:", "ERROR:" ], [ "180", "981-987", "ERROR:", "ERROR:" ], [ "190", "981-987", "ERROR:", "ERROR:" ], [ "200", "981-987", "ERROR:", "ERROR:" ], [ "205", "981-987", "ERROR:", "ERROR:" ], [ "210", "981-987", "ERROR:", "ERROR:" ], [ "215", "981-987", "ERROR:", "ERROR:" ], [ "220", "981-987", "ERROR:", "ERROR:" ], [ "290", "981-987", "ERROR:", "ERROR:" ], [ "300", "981-987", "ERROR:", "ERROR:" ], [ "305", "981-987", "ERROR:", "ERROR:" ], [ "310", "981-987", "ERROR:", "ERROR:" ], [ "320", "981-987", "ERROR:", "ERROR:" ], [ "400", "981-987", "ERROR:", "ERROR:" ], [ "405", "981-987", "ERROR:", "ERROR:" ], [ "410", "981-987", "ERROR:", "ERROR:" ], [ "415", "981-987", "ERROR:", "ERROR:" ], [ "420", "981-987", "ERROR:", "ERROR:" ], [ "490", "981-987", "ERROR:", "ERROR:" ], [ "500", "981-987", "ERROR:", "ERROR:" ], [ "505", "981-987", "ERROR:", "ERROR:" ], [ "510", "981-987", "ERROR:", "ERROR:" ], [ "520", "981-987", "ERROR:", "ERROR:" ], [ "600", "981-987", "ERROR:", "ERROR:" ], [ "700", "981-987", "ERROR:", "ERROR:" ], [ "100", "988", "ERROR:", "ERROR:" ], [ "105", "988", "ERROR:", "ERROR:" ], [ "110", "988", "ERROR:", "ERROR:" ], [ "120", "988", "ERROR:", "ERROR:" ], [ "180", "988", "ERROR:", "ERROR:" ], [ "190", "988", "ERROR:", "ERROR:" ], [ "200", "988", "ERROR:", "ERROR:" ], [ "205", "988", "ERROR:", "ERROR:" ], [ "210", "988", "ERROR:", "ERROR:" ], [ "215", "988", "ERROR:", "ERROR:" ], [ "220", "988", "ERROR:", "ERROR:" ], [ "290", "988", "ERROR:", "ERROR:" ], [ "300", "988", "ERROR:", "ERROR:" ], [ "305", "988", "ERROR:", "ERROR:" ], [ "310", "988", "ERROR:", "ERROR:" ], [ "320", "988", "ERROR:", "ERROR:" ], [ "400", "988", "ERROR:", "ERROR:" ], [ "405", "988", "ERROR:", "ERROR:" ], [ "410", "988", "ERROR:", "ERROR:" ], [ "415", "988", "ERROR:", "ERROR:" ], [ "420", "988", "ERROR:", "ERROR:" ], [ "490", "988", "ERROR:", "ERROR:" ], [ "500", "988", "ERROR:", "ERROR:" ], [ "505", "988", "ERROR:", "ERROR:" ], [ "510", "988", "ERROR:", "ERROR:" ], [ "520", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "700", "988", "ERROR:", "ERROR:" ], [ "100", "989", "ERROR:", "ERROR:" ], [ "105", "989", "ERROR:", "ERROR:" ], [ "110", "989", "ERROR:", "ERROR:" ], [ "120", "989", "ERROR:", "ERROR:" ], [ "180", "989", "ERROR:", "ERROR:" ], [ "190", "989", "ERROR:", "ERROR:" ], [ "200", "989", "ERROR:", "ERROR:" ], [ "205", "989", "ERROR:", "ERROR:" ], [ "210", "989", "ERROR:", "ERROR:" ], [ "215", "989", "ERROR:", "ERROR:" ], [ "220", "989", "ERROR:", "ERROR:" ], [ "290", "989", "ERROR:", "ERROR:" ], [ "300", "989", "ERROR:", "ERROR:" ], [ "305", "989", "ERROR:", "ERROR:" ], [ "310", "989", "ERROR:", "ERROR:" ], [ "320", "989", "ERROR:", "ERROR:" ], [ "400", "989", "ERROR:", "ERROR:" ], [ "405", "989", "ERROR:", "ERROR:" ], [ "410", "989", "ERROR:", "ERROR:" ], [ "415", "989", "ERROR:", "ERROR:" ], [ "420", "989", "ERROR:", "ERROR:" ], [ "490", "989", "ERROR:", "ERROR:" ], [ "500", "989", "ERROR:", "ERROR:" ], [ "505", "989", "ERROR:", "ERROR:" ], [ "510", "989", "ERROR:", "ERROR:" ], [ "520", "989", "ERROR:", "ERROR:" ], [ "600", "989", "ERROR:", "ERROR:" ], [ "700", "989", "ERROR:", "ERROR:" ], [ "100", "990", "VALUE:N1", "VALUE:N1" ], [ "105", "990", "VALUE:N1", "VALUE:N1" ], [ "110", "990", "VALUE:N1", "VALUE:N1" ], [ "120", "990", "VALUE:N1", "VALUE:N1" ], [ "180", "990", "VALUE:N1", "VALUE:N1" ], [ "190", "990", "VALUE:N1", "VALUE:N1" ], [ "200", "990", "VALUE:N2b", "VALUE:N2b" ], [ "205", "990", "VALUE:N2b", "VALUE:N2b" ], [ "210", "990", "VALUE:N2b", "VALUE:N2b" ], [ "215", "990", "VALUE:N2b", "VALUE:N2b" ], [ "220", "990", "VALUE:N2b", "VALUE:N2b" ], [ "290", "990", "VALUE:N2b", "VALUE:N2b" ], [ "300", "990", "VALUE:N1", "VALUE:N1" ], [ "305", "990", "VALUE:N1", "VALUE:N1" ], [ "310", "990", "VALUE:N1", "VALUE:N1" ], [ "320", "990", "VALUE:N1", "VALUE:N1" ], [ "400", "990", "VALUE:N2c", "VALUE:N2c" ], [ "405", "990", "VALUE:N2c", "VALUE:N2c" ], [ "410", "990", "VALUE:N2c", "VALUE:N2c" ], [ "415", "990", "VALUE:N2c", "VALUE:N2c" ], [ "420", "990", "VALUE:N2c", "VALUE:N2c" ], [ "490", "990", "VALUE:N2c", "VALUE:N2c" ], [ "500", "990", "VALUE:N1", "VALUE:N1" ], [ "505", "990", "VALUE:N1", "VALUE:N1" ], [ "510", "990", "VALUE:N1", "VALUE:N1" ], [ "520", "990", "VALUE:N1", "VALUE:N1" ], [ "600", "990", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "990", "VALUE:N1", "VALUE:N1" ], [ "100", "991-993", "VALUE:N1", "VALUE:N1" ], [ "105", "991-993", "VALUE:N1", "VALUE:N1" ], [ "110", "991-993", "VALUE:N1", "VALUE:N1" ], [ "120", "991-993", "VALUE:N1", "VALUE:N1" ], [ "180", "991-993", "VALUE:N1", "VALUE:N1" ], [ "190", "991-993", "VALUE:N1", "VALUE:N1" ], [ "200", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "205", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "210", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "215", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "220", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "290", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "300", "991-993", "VALUE:N1", "VALUE:N1" ], [ "305", "991-993", "VALUE:N1", "VALUE:N1" ], [ "310", "991-993", "VALUE:N1", "VALUE:N1" ], [ "320", "991-993", "VALUE:N1", "VALUE:N1" ], [ "400", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "405", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "410", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "415", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "420", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "490", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "500", "991-993", "VALUE:N1", "VALUE:N1" ], [ "505", "991-993", "VALUE:N1", "VALUE:N1" ], [ "510", "991-993", "VALUE:N1", "VALUE:N1" ], [ "520", "991-993", "VALUE:N1", "VALUE:N1" ], [ "600", "991-993", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "991-993", "VALUE:N1", "VALUE:N1" ], [ "100", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "105", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "110", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "120", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "180", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "190", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "200", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "205", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "210", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "215", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "220", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "290", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "300", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "305", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "310", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "320", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "400", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "405", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "410", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "415", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "420", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "490", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "500", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "505", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "510", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "520", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "100", "997", "VALUE:N3", "VALUE:N3" ], [ "105", "997", "VALUE:N3", "VALUE:N3" ], [ "110", "997", "VALUE:N3", "VALUE:N3" ], [ "120", "997", "VALUE:N3", "VALUE:N3" ], [ "180", "997", "VALUE:N3", "VALUE:N3" ], [ "190", "997", "VALUE:N3", "VALUE:N3" ], [ "200", "997", "VALUE:N3", "VALUE:N3" ], [ "205", "997", "VALUE:N3", "VALUE:N3" ], [ "210", "997", "VALUE:N3", "VALUE:N3" ], [ "215", "997", "VALUE:N3", "VALUE:N3" ], [ "220", "997", "VALUE:N3", "VALUE:N3" ], [ "290", "997", "VALUE:N3", "VALUE:N3" ], [ "300", "997", "VALUE:N3", "VALUE:N3" ], [ "305", "997", "VALUE:N3", "VALUE:N3" ], [ "310", "997", "VALUE:N3", "VALUE:N3" ], [ "320", "997", "VALUE:N3", "VALUE:N3" ], [ "400", "997", "VALUE:N3", "VALUE:N3" ], [ "405", "997", "VALUE:N3", "VALUE:N3" ], [ "410", "997", "VALUE:N3", "VALUE:N3" ], [ "415", "997", "VALUE:N3", "VALUE:N3" ], [ "420", "997", "VALUE:N3", "VALUE:N3" ], [ "490", "997", "VALUE:N3", "VALUE:N3" ], [ "500", "997", "VALUE:N3", "VALUE:N3" ], [ "505", "997", "VALUE:N3", "VALUE:N3" ], [ "510", "997", "VALUE:N3", "VALUE:N3" ], [ "520", "997", "VALUE:N3", "VALUE:N3" ], [ "600", "997", "VALUE:N3", "VALUE:N3" ], [ "700", "997", "VALUE:N3", "VALUE:N3" ], [ "100", "999", "VALUE:N1", "VALUE:N1" ], [ "105", "999", "VALUE:N1", "VALUE:N1" ], [ "110", "999", "VALUE:N1", "VALUE:N1" ], [ "120", "999", "VALUE:N1", "VALUE:N1" ], [ "180", "999", "VALUE:N1", "VALUE:N1" ], [ "190", "999", "VALUE:N2a", "VALUE:N2a" ], [ "200", "999", "VALUE:N2b", "VALUE:N2b" ], [ "205", "999", "VALUE:N2b", "VALUE:N2b" ], [ "210", "999", "VALUE:N2b", "VALUE:N2b" ], [ "215", "999", "VALUE:N2b", "VALUE:N2b" ], [ "220", "999", "VALUE:N2b", "VALUE:N2b" ], [ "290", "999", "VALUE:N2b", "VALUE:N2b" ], [ "300", "999", "VALUE:N1", "VALUE:N1" ], [ "305", "999", "VALUE:N1", "VALUE:N1" ], [ "310", "999", "VALUE:N1", "VALUE:N1" ], [ "320", "999", "VALUE:N1", "VALUE:N1" ], [ "400", "999", "VALUE:N2c", "VALUE:N2c" ], [ "405", "999", "VALUE:N2c", "VALUE:N2c" ], [ "410", "999", "VALUE:N2c", "VALUE:N2c" ], [ "415", "999", "VALUE:N2c", "VALUE:N2c" ], [ "420", "999", "VALUE:N2c", "VALUE:N2c" ], [ "490", "999", "VALUE:N2c", "VALUE:N2c" ], [ "500", "999", "VALUE:N1", "VALUE:N1" ], [ "505", "999", "VALUE:N1", "VALUE:N1" ], [ "510", "999", "VALUE:N1", "VALUE:N1" ], [ "520", "999", "VALUE:N1", "VALUE:N1" ], [ "600", "999", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "999", "VALUE:N3", "VALUE:N3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xpd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xpd.json
deleted file mode 100644
index bb94deede..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xpd.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "id" : "lymph_nodes_size_xpd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size",
- "title" : "Lymph Nodes Size Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 100-700 ONLY, the N category is determined by the size of involved nodes coded in CS Site-Specific Factor 1, Size of Lymph Nodes, as shown in this table.",
- "footnotes" : "Note: For CS Lymph Nodes codes 100-700 ONLY, the N category is determined by the size of involved nodes coded in CS Site-Specific Factor 1, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.667Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "120", "000", "ERROR:", "ERROR:" ], [ "180", "000", "ERROR:", "ERROR:" ], [ "190", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "220", "000", "ERROR:", "ERROR:" ], [ "290", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "320", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "420", "000", "ERROR:", "ERROR:" ], [ "490", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "520", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "700", "000", "ERROR:", "ERROR:" ], [ "100", "001-030", "VALUE:N1", "VALUE:N1" ], [ "120", "001-030", "VALUE:N1", "VALUE:N1" ], [ "180", "001-030", "VALUE:N1", "VALUE:N1" ], [ "190", "001-030", "VALUE:N1", "VALUE:N1" ], [ "200", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "220", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "290", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "300", "001-030", "VALUE:N1", "VALUE:N1" ], [ "320", "001-030", "VALUE:N1", "VALUE:N1" ], [ "400", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "420", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "490", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "500", "001-030", "VALUE:N1", "VALUE:N1" ], [ "520", "001-030", "VALUE:N1", "VALUE:N1" ], [ "600", "001-030", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "001-030", "VALUE:N1", "VALUE:N1" ], [ "100", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "120", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "180", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "190", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "200", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "220", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "290", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "300", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "320", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "400", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "420", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "490", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "500", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "520", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "100", "061-980", "VALUE:N3", "VALUE:N3" ], [ "120", "061-980", "VALUE:N3", "VALUE:N3" ], [ "180", "061-980", "VALUE:N3", "VALUE:N3" ], [ "190", "061-980", "VALUE:N3", "VALUE:N3" ], [ "200", "061-980", "VALUE:N3", "VALUE:N3" ], [ "220", "061-980", "VALUE:N3", "VALUE:N3" ], [ "290", "061-980", "VALUE:N3", "VALUE:N3" ], [ "300", "061-980", "VALUE:N3", "VALUE:N3" ], [ "320", "061-980", "VALUE:N3", "VALUE:N3" ], [ "400", "061-980", "VALUE:N3", "VALUE:N3" ], [ "420", "061-980", "VALUE:N3", "VALUE:N3" ], [ "490", "061-980", "VALUE:N3", "VALUE:N3" ], [ "500", "061-980", "VALUE:N3", "VALUE:N3" ], [ "520", "061-980", "VALUE:N3", "VALUE:N3" ], [ "600", "061-980", "VALUE:N3", "VALUE:N3" ], [ "700", "061-980", "VALUE:N3", "VALUE:N3" ], [ "100", "981-987", "ERROR:", "ERROR:" ], [ "120", "981-987", "ERROR:", "ERROR:" ], [ "180", "981-987", "ERROR:", "ERROR:" ], [ "190", "981-987", "ERROR:", "ERROR:" ], [ "200", "981-987", "ERROR:", "ERROR:" ], [ "220", "981-987", "ERROR:", "ERROR:" ], [ "290", "981-987", "ERROR:", "ERROR:" ], [ "300", "981-987", "ERROR:", "ERROR:" ], [ "320", "981-987", "ERROR:", "ERROR:" ], [ "400", "981-987", "ERROR:", "ERROR:" ], [ "420", "981-987", "ERROR:", "ERROR:" ], [ "490", "981-987", "ERROR:", "ERROR:" ], [ "500", "981-987", "ERROR:", "ERROR:" ], [ "520", "981-987", "ERROR:", "ERROR:" ], [ "600", "981-987", "ERROR:", "ERROR:" ], [ "700", "981-987", "ERROR:", "ERROR:" ], [ "100", "988", "ERROR:", "ERROR:" ], [ "120", "988", "ERROR:", "ERROR:" ], [ "180", "988", "ERROR:", "ERROR:" ], [ "190", "988", "ERROR:", "ERROR:" ], [ "200", "988", "ERROR:", "ERROR:" ], [ "220", "988", "ERROR:", "ERROR:" ], [ "290", "988", "ERROR:", "ERROR:" ], [ "300", "988", "ERROR:", "ERROR:" ], [ "320", "988", "ERROR:", "ERROR:" ], [ "400", "988", "ERROR:", "ERROR:" ], [ "420", "988", "ERROR:", "ERROR:" ], [ "490", "988", "ERROR:", "ERROR:" ], [ "500", "988", "ERROR:", "ERROR:" ], [ "520", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "700", "988", "ERROR:", "ERROR:" ], [ "100", "989", "ERROR:", "ERROR:" ], [ "120", "989", "ERROR:", "ERROR:" ], [ "180", "989", "ERROR:", "ERROR:" ], [ "190", "989", "ERROR:", "ERROR:" ], [ "200", "989", "ERROR:", "ERROR:" ], [ "220", "989", "ERROR:", "ERROR:" ], [ "290", "989", "ERROR:", "ERROR:" ], [ "300", "989", "ERROR:", "ERROR:" ], [ "320", "989", "ERROR:", "ERROR:" ], [ "400", "989", "ERROR:", "ERROR:" ], [ "420", "989", "ERROR:", "ERROR:" ], [ "490", "989", "ERROR:", "ERROR:" ], [ "500", "989", "ERROR:", "ERROR:" ], [ "520", "989", "ERROR:", "ERROR:" ], [ "600", "989", "ERROR:", "ERROR:" ], [ "700", "989", "ERROR:", "ERROR:" ], [ "100", "990", "VALUE:N1", "VALUE:N1" ], [ "120", "990", "VALUE:N1", "VALUE:N1" ], [ "180", "990", "VALUE:N1", "VALUE:N1" ], [ "190", "990", "VALUE:N1", "VALUE:N1" ], [ "200", "990", "VALUE:N2b", "VALUE:N2b" ], [ "220", "990", "VALUE:N2b", "VALUE:N2b" ], [ "290", "990", "VALUE:N2b", "VALUE:N2b" ], [ "300", "990", "VALUE:N1", "VALUE:N1" ], [ "320", "990", "VALUE:N1", "VALUE:N1" ], [ "400", "990", "VALUE:N2c", "VALUE:N2c" ], [ "420", "990", "VALUE:N2c", "VALUE:N2c" ], [ "490", "990", "VALUE:N2c", "VALUE:N2c" ], [ "500", "990", "VALUE:N1", "VALUE:N1" ], [ "520", "990", "VALUE:N1", "VALUE:N1" ], [ "600", "990", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "990", "VALUE:N1", "VALUE:N1" ], [ "100", "991-993", "VALUE:N1", "VALUE:N1" ], [ "120", "991-993", "VALUE:N1", "VALUE:N1" ], [ "180", "991-993", "VALUE:N1", "VALUE:N1" ], [ "190", "991-993", "VALUE:N1", "VALUE:N1" ], [ "200", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "220", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "290", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "300", "991-993", "VALUE:N1", "VALUE:N1" ], [ "320", "991-993", "VALUE:N1", "VALUE:N1" ], [ "400", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "420", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "490", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "500", "991-993", "VALUE:N1", "VALUE:N1" ], [ "520", "991-993", "VALUE:N1", "VALUE:N1" ], [ "600", "991-993", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "991-993", "VALUE:N1", "VALUE:N1" ], [ "100", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "120", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "180", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "190", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "200", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "220", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "290", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "300", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "320", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "400", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "420", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "490", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "500", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "520", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "100", "997", "VALUE:N3", "VALUE:N3" ], [ "120", "997", "VALUE:N3", "VALUE:N3" ], [ "180", "997", "VALUE:N3", "VALUE:N3" ], [ "190", "997", "VALUE:N3", "VALUE:N3" ], [ "200", "997", "VALUE:N3", "VALUE:N3" ], [ "220", "997", "VALUE:N3", "VALUE:N3" ], [ "290", "997", "VALUE:N3", "VALUE:N3" ], [ "300", "997", "VALUE:N3", "VALUE:N3" ], [ "320", "997", "VALUE:N3", "VALUE:N3" ], [ "400", "997", "VALUE:N3", "VALUE:N3" ], [ "420", "997", "VALUE:N3", "VALUE:N3" ], [ "490", "997", "VALUE:N3", "VALUE:N3" ], [ "500", "997", "VALUE:N3", "VALUE:N3" ], [ "520", "997", "VALUE:N3", "VALUE:N3" ], [ "600", "997", "VALUE:N3", "VALUE:N3" ], [ "700", "997", "VALUE:N3", "VALUE:N3" ], [ "100", "999", "VALUE:N1", "VALUE:N1" ], [ "120", "999", "VALUE:N1", "VALUE:N1" ], [ "180", "999", "VALUE:N1", "VALUE:N1" ], [ "190", "999", "VALUE:N2a", "VALUE:N2a" ], [ "200", "999", "VALUE:N2b", "VALUE:N2b" ], [ "220", "999", "VALUE:N2b", "VALUE:N2b" ], [ "290", "999", "VALUE:N2b", "VALUE:N2b" ], [ "300", "999", "VALUE:N1", "VALUE:N1" ], [ "320", "999", "VALUE:N1", "VALUE:N1" ], [ "400", "999", "VALUE:N2c", "VALUE:N2c" ], [ "420", "999", "VALUE:N2c", "VALUE:N2c" ], [ "490", "999", "VALUE:N2c", "VALUE:N2c" ], [ "500", "999", "VALUE:N1", "VALUE:N1" ], [ "520", "999", "VALUE:N1", "VALUE:N1" ], [ "600", "999", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "999", "VALUE:N3", "VALUE:N3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xpg.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xpg.json
deleted file mode 100644
index ab3423b9a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_size_xpg.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "lymph_nodes_size_xpg",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes Size",
- "title" : "Lymph Nodes Size Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 100-700 ONLY, the N category is determined by the size of involved nodes coded in CS Site-Specific Factor 1, Size of Lymph Nodes, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.732Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf1",
- "name" : "CS SSF1",
- "type" : "INPUT"
- }, {
- "key" : "ajcc7_n",
- "name" : "AJCC 7 N",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_n",
- "name" : "TNM 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "100", "000", "ERROR:", "ERROR:" ], [ "110", "000", "ERROR:", "ERROR:" ], [ "120", "000", "ERROR:", "ERROR:" ], [ "180", "000", "ERROR:", "ERROR:" ], [ "190", "000", "ERROR:", "ERROR:" ], [ "200", "000", "ERROR:", "ERROR:" ], [ "210", "000", "ERROR:", "ERROR:" ], [ "220", "000", "ERROR:", "ERROR:" ], [ "290", "000", "ERROR:", "ERROR:" ], [ "300", "000", "ERROR:", "ERROR:" ], [ "310", "000", "ERROR:", "ERROR:" ], [ "320", "000", "ERROR:", "ERROR:" ], [ "400", "000", "ERROR:", "ERROR:" ], [ "410", "000", "ERROR:", "ERROR:" ], [ "420", "000", "ERROR:", "ERROR:" ], [ "490", "000", "ERROR:", "ERROR:" ], [ "500", "000", "ERROR:", "ERROR:" ], [ "510", "000", "ERROR:", "ERROR:" ], [ "520", "000", "ERROR:", "ERROR:" ], [ "600", "000", "ERROR:", "ERROR:" ], [ "700", "000", "ERROR:", "ERROR:" ], [ "100", "001-030", "VALUE:N1", "VALUE:N1" ], [ "110", "001-030", "VALUE:N1", "VALUE:N1" ], [ "120", "001-030", "VALUE:N1", "VALUE:N1" ], [ "180", "001-030", "VALUE:N1", "VALUE:N1" ], [ "190", "001-030", "VALUE:N1", "VALUE:N1" ], [ "200", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "210", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "220", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "290", "001-030", "VALUE:N2b", "VALUE:N2b" ], [ "300", "001-030", "VALUE:N1", "VALUE:N1" ], [ "310", "001-030", "VALUE:N1", "VALUE:N1" ], [ "320", "001-030", "VALUE:N1", "VALUE:N1" ], [ "400", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "410", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "420", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "490", "001-030", "VALUE:N2c", "VALUE:N2c" ], [ "500", "001-030", "VALUE:N1", "VALUE:N1" ], [ "510", "001-030", "VALUE:N1", "VALUE:N1" ], [ "520", "001-030", "VALUE:N1", "VALUE:N1" ], [ "600", "001-030", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "001-030", "VALUE:N1", "VALUE:N1" ], [ "100", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "110", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "120", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "180", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "190", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "200", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "210", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "220", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "290", "031-060", "VALUE:N2b", "VALUE:N2b" ], [ "300", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "310", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "320", "031-060", "VALUE:N2a", "VALUE:N2a" ], [ "400", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "410", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "420", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "490", "031-060", "VALUE:N2c", "VALUE:N2c" ], [ "500", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "510", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "520", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "031-060", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "100", "061-980", "VALUE:N3", "VALUE:N3" ], [ "110", "061-980", "VALUE:N3", "VALUE:N3" ], [ "120", "061-980", "VALUE:N3", "VALUE:N3" ], [ "180", "061-980", "VALUE:N3", "VALUE:N3" ], [ "190", "061-980", "VALUE:N3", "VALUE:N3" ], [ "200", "061-980", "VALUE:N3", "VALUE:N3" ], [ "210", "061-980", "VALUE:N3", "VALUE:N3" ], [ "220", "061-980", "VALUE:N3", "VALUE:N3" ], [ "290", "061-980", "VALUE:N3", "VALUE:N3" ], [ "300", "061-980", "VALUE:N3", "VALUE:N3" ], [ "310", "061-980", "VALUE:N3", "VALUE:N3" ], [ "320", "061-980", "VALUE:N3", "VALUE:N3" ], [ "400", "061-980", "VALUE:N3", "VALUE:N3" ], [ "410", "061-980", "VALUE:N3", "VALUE:N3" ], [ "420", "061-980", "VALUE:N3", "VALUE:N3" ], [ "490", "061-980", "VALUE:N3", "VALUE:N3" ], [ "500", "061-980", "VALUE:N3", "VALUE:N3" ], [ "510", "061-980", "VALUE:N3", "VALUE:N3" ], [ "520", "061-980", "VALUE:N3", "VALUE:N3" ], [ "600", "061-980", "VALUE:N3", "VALUE:N3" ], [ "700", "061-980", "VALUE:N3", "VALUE:N3" ], [ "100", "981-987", "ERROR:", "ERROR:" ], [ "110", "981-987", "ERROR:", "ERROR:" ], [ "120", "981-987", "ERROR:", "ERROR:" ], [ "180", "981-987", "ERROR:", "ERROR:" ], [ "190", "981-987", "ERROR:", "ERROR:" ], [ "200", "981-987", "ERROR:", "ERROR:" ], [ "210", "981-987", "ERROR:", "ERROR:" ], [ "220", "981-987", "ERROR:", "ERROR:" ], [ "290", "981-987", "ERROR:", "ERROR:" ], [ "300", "981-987", "ERROR:", "ERROR:" ], [ "310", "981-987", "ERROR:", "ERROR:" ], [ "320", "981-987", "ERROR:", "ERROR:" ], [ "400", "981-987", "ERROR:", "ERROR:" ], [ "410", "981-987", "ERROR:", "ERROR:" ], [ "420", "981-987", "ERROR:", "ERROR:" ], [ "490", "981-987", "ERROR:", "ERROR:" ], [ "500", "981-987", "ERROR:", "ERROR:" ], [ "510", "981-987", "ERROR:", "ERROR:" ], [ "520", "981-987", "ERROR:", "ERROR:" ], [ "600", "981-987", "ERROR:", "ERROR:" ], [ "700", "981-987", "ERROR:", "ERROR:" ], [ "100", "988", "ERROR:", "ERROR:" ], [ "110", "988", "ERROR:", "ERROR:" ], [ "120", "988", "ERROR:", "ERROR:" ], [ "180", "988", "ERROR:", "ERROR:" ], [ "190", "988", "ERROR:", "ERROR:" ], [ "200", "988", "ERROR:", "ERROR:" ], [ "210", "988", "ERROR:", "ERROR:" ], [ "220", "988", "ERROR:", "ERROR:" ], [ "290", "988", "ERROR:", "ERROR:" ], [ "300", "988", "ERROR:", "ERROR:" ], [ "310", "988", "ERROR:", "ERROR:" ], [ "320", "988", "ERROR:", "ERROR:" ], [ "400", "988", "ERROR:", "ERROR:" ], [ "410", "988", "ERROR:", "ERROR:" ], [ "420", "988", "ERROR:", "ERROR:" ], [ "490", "988", "ERROR:", "ERROR:" ], [ "500", "988", "ERROR:", "ERROR:" ], [ "510", "988", "ERROR:", "ERROR:" ], [ "520", "988", "ERROR:", "ERROR:" ], [ "600", "988", "ERROR:", "ERROR:" ], [ "700", "988", "ERROR:", "ERROR:" ], [ "100", "989", "ERROR:", "ERROR:" ], [ "110", "989", "ERROR:", "ERROR:" ], [ "120", "989", "ERROR:", "ERROR:" ], [ "180", "989", "ERROR:", "ERROR:" ], [ "190", "989", "ERROR:", "ERROR:" ], [ "200", "989", "ERROR:", "ERROR:" ], [ "210", "989", "ERROR:", "ERROR:" ], [ "220", "989", "ERROR:", "ERROR:" ], [ "290", "989", "ERROR:", "ERROR:" ], [ "300", "989", "ERROR:", "ERROR:" ], [ "310", "989", "ERROR:", "ERROR:" ], [ "320", "989", "ERROR:", "ERROR:" ], [ "400", "989", "ERROR:", "ERROR:" ], [ "410", "989", "ERROR:", "ERROR:" ], [ "420", "989", "ERROR:", "ERROR:" ], [ "490", "989", "ERROR:", "ERROR:" ], [ "500", "989", "ERROR:", "ERROR:" ], [ "510", "989", "ERROR:", "ERROR:" ], [ "520", "989", "ERROR:", "ERROR:" ], [ "600", "989", "ERROR:", "ERROR:" ], [ "700", "989", "ERROR:", "ERROR:" ], [ "100", "990", "VALUE:N1", "VALUE:N1" ], [ "110", "990", "VALUE:N1", "VALUE:N1" ], [ "120", "990", "VALUE:N1", "VALUE:N1" ], [ "180", "990", "VALUE:N1", "VALUE:N1" ], [ "190", "990", "VALUE:N1", "VALUE:N1" ], [ "200", "990", "VALUE:N2b", "VALUE:N2b" ], [ "210", "990", "VALUE:N2b", "VALUE:N2b" ], [ "220", "990", "VALUE:N2b", "VALUE:N2b" ], [ "290", "990", "VALUE:N2b", "VALUE:N2b" ], [ "300", "990", "VALUE:N1", "VALUE:N1" ], [ "310", "990", "VALUE:N1", "VALUE:N1" ], [ "320", "990", "VALUE:N1", "VALUE:N1" ], [ "400", "990", "VALUE:N2c", "VALUE:N2c" ], [ "410", "990", "VALUE:N2c", "VALUE:N2c" ], [ "420", "990", "VALUE:N2c", "VALUE:N2c" ], [ "490", "990", "VALUE:N2c", "VALUE:N2c" ], [ "500", "990", "VALUE:N1", "VALUE:N1" ], [ "510", "990", "VALUE:N1", "VALUE:N1" ], [ "520", "990", "VALUE:N1", "VALUE:N1" ], [ "600", "990", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "990", "VALUE:N1", "VALUE:N1" ], [ "100", "991-993", "VALUE:N1", "VALUE:N1" ], [ "110", "991-993", "VALUE:N1", "VALUE:N1" ], [ "120", "991-993", "VALUE:N1", "VALUE:N1" ], [ "180", "991-993", "VALUE:N1", "VALUE:N1" ], [ "190", "991-993", "VALUE:N1", "VALUE:N1" ], [ "200", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "210", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "220", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "290", "991-993", "VALUE:N2b", "VALUE:N2b" ], [ "300", "991-993", "VALUE:N1", "VALUE:N1" ], [ "310", "991-993", "VALUE:N1", "VALUE:N1" ], [ "320", "991-993", "VALUE:N1", "VALUE:N1" ], [ "400", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "410", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "420", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "490", "991-993", "VALUE:N2c", "VALUE:N2c" ], [ "500", "991-993", "VALUE:N1", "VALUE:N1" ], [ "510", "991-993", "VALUE:N1", "VALUE:N1" ], [ "520", "991-993", "VALUE:N1", "VALUE:N1" ], [ "600", "991-993", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "991-993", "VALUE:N1", "VALUE:N1" ], [ "100", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "110", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "120", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "180", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "190", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "200", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "210", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "220", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "290", "994-996", "VALUE:N2b", "VALUE:N2b" ], [ "300", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "310", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "320", "994-996", "VALUE:N2a", "VALUE:N2a" ], [ "400", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "410", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "420", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "490", "994-996", "VALUE:N2c", "VALUE:N2c" ], [ "500", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "510", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "520", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "600", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "994-996", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "100", "997", "VALUE:N3", "VALUE:N3" ], [ "110", "997", "VALUE:N3", "VALUE:N3" ], [ "120", "997", "VALUE:N3", "VALUE:N3" ], [ "180", "997", "VALUE:N3", "VALUE:N3" ], [ "190", "997", "VALUE:N3", "VALUE:N3" ], [ "200", "997", "VALUE:N3", "VALUE:N3" ], [ "210", "997", "VALUE:N3", "VALUE:N3" ], [ "220", "997", "VALUE:N3", "VALUE:N3" ], [ "290", "997", "VALUE:N3", "VALUE:N3" ], [ "300", "997", "VALUE:N3", "VALUE:N3" ], [ "310", "997", "VALUE:N3", "VALUE:N3" ], [ "320", "997", "VALUE:N3", "VALUE:N3" ], [ "400", "997", "VALUE:N3", "VALUE:N3" ], [ "410", "997", "VALUE:N3", "VALUE:N3" ], [ "420", "997", "VALUE:N3", "VALUE:N3" ], [ "490", "997", "VALUE:N3", "VALUE:N3" ], [ "500", "997", "VALUE:N3", "VALUE:N3" ], [ "510", "997", "VALUE:N3", "VALUE:N3" ], [ "520", "997", "VALUE:N3", "VALUE:N3" ], [ "600", "997", "VALUE:N3", "VALUE:N3" ], [ "700", "997", "VALUE:N3", "VALUE:N3" ], [ "100", "999", "VALUE:N1", "VALUE:N1" ], [ "110", "999", "VALUE:N1", "VALUE:N1" ], [ "120", "999", "VALUE:N1", "VALUE:N1" ], [ "180", "999", "VALUE:N1", "VALUE:N1" ], [ "190", "999", "VALUE:N2a", "VALUE:N2a" ], [ "200", "999", "VALUE:N2b", "VALUE:N2b" ], [ "210", "999", "VALUE:N2b", "VALUE:N2b" ], [ "220", "999", "VALUE:N2b", "VALUE:N2b" ], [ "290", "999", "VALUE:N2b", "VALUE:N2b" ], [ "300", "999", "VALUE:N1", "VALUE:N1" ], [ "310", "999", "VALUE:N1", "VALUE:N1" ], [ "320", "999", "VALUE:N1", "VALUE:N1" ], [ "400", "999", "VALUE:N2c", "VALUE:N2c" ], [ "410", "999", "VALUE:N2c", "VALUE:N2c" ], [ "420", "999", "VALUE:N2c", "VALUE:N2c" ], [ "490", "999", "VALUE:N2c", "VALUE:N2c" ], [ "500", "999", "VALUE:N1", "VALUE:N1" ], [ "510", "999", "VALUE:N1", "VALUE:N1" ], [ "520", "999", "VALUE:N1", "VALUE:N1" ], [ "600", "999", "VALUE:N2NOS", "VALUE:N2NOS" ], [ "700", "999", "VALUE:N3", "VALUE:N3" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_ssf11_ajcc6_xqd.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_ssf11_ajcc6_xqd.json
deleted file mode 100644
index dfe19cab2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodes_ssf11_ajcc6_xqd.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodes_ssf11_ajcc6_xqd",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes SSF11 AJCC6",
- "title" : "Lymph Nodes SSF 11 AJCC 6 Table",
- "notes" : "**Note**: For CS Lymph Node codes 110-450, the assignment of the N category for AJCC 6 staging is based on CS Site Specific Factor 11, Regional Lymph Node Laterality, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:26.803Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf11",
- "name" : "CS SSF11",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "110", "000", "ERROR:" ], [ "120", "000", "ERROR:" ], [ "130", "000", "ERROR:" ], [ "150", "000", "ERROR:" ], [ "210", "000", "ERROR:" ], [ "220", "000", "ERROR:" ], [ "230", "000", "ERROR:" ], [ "250", "000", "ERROR:" ], [ "300", "000", "ERROR:" ], [ "350", "000", "ERROR:" ], [ "360", "000", "ERROR:" ], [ "400", "000", "ERROR:" ], [ "450", "000", "ERROR:" ], [ "110", "010", "VALUE:N1" ], [ "120", "010", "VALUE:N1" ], [ "130", "010", "VALUE:N1" ], [ "150", "010", "VALUE:N1" ], [ "210", "010", "VALUE:N1" ], [ "220", "010", "VALUE:N1" ], [ "230", "010", "VALUE:N1" ], [ "250", "010", "VALUE:N1" ], [ "300", "010", "VALUE:N1" ], [ "350", "010", "VALUE:N1" ], [ "360", "010", "VALUE:N1" ], [ "400", "010", "VALUE:N1" ], [ "450", "010", "VALUE:N1" ], [ "110", "020", "VALUE:N2" ], [ "120", "020", "VALUE:N2" ], [ "130", "020", "VALUE:N2" ], [ "150", "020", "VALUE:N2" ], [ "210", "020", "VALUE:N2" ], [ "220", "020", "VALUE:N2" ], [ "230", "020", "VALUE:N2" ], [ "250", "020", "VALUE:N2" ], [ "300", "020", "VALUE:N2" ], [ "350", "020", "VALUE:N2" ], [ "360", "020", "VALUE:N2" ], [ "400", "020", "VALUE:N2" ], [ "450", "020", "VALUE:N2" ], [ "110", "030", "VALUE:N1" ], [ "120", "030", "VALUE:N1" ], [ "130", "030", "VALUE:N1" ], [ "150", "030", "VALUE:N1" ], [ "210", "030", "VALUE:N1" ], [ "220", "030", "VALUE:N1" ], [ "230", "030", "VALUE:N1" ], [ "250", "030", "VALUE:N1" ], [ "300", "030", "VALUE:N1" ], [ "350", "030", "VALUE:N1" ], [ "360", "030", "VALUE:N1" ], [ "400", "030", "VALUE:N1" ], [ "450", "030", "VALUE:N1" ], [ "110", "988", "VALUE:N1" ], [ "120", "988", "VALUE:N1" ], [ "130", "988", "VALUE:N1" ], [ "150", "988", "VALUE:N1" ], [ "210", "988", "VALUE:N1" ], [ "220", "988", "VALUE:N1" ], [ "230", "988", "VALUE:N1" ], [ "250", "988", "VALUE:N1" ], [ "300", "988", "VALUE:N1" ], [ "350", "988", "VALUE:N1" ], [ "360", "988", "VALUE:N1" ], [ "400", "988", "VALUE:N1" ], [ "450", "988", "VALUE:N1" ], [ "110", "998", "VALUE:N1" ], [ "120", "998", "VALUE:N1" ], [ "130", "998", "VALUE:N1" ], [ "150", "998", "VALUE:N1" ], [ "210", "998", "VALUE:N1" ], [ "220", "998", "VALUE:N1" ], [ "230", "998", "VALUE:N1" ], [ "250", "998", "VALUE:N1" ], [ "300", "998", "VALUE:N1" ], [ "350", "998", "VALUE:N1" ], [ "360", "998", "VALUE:N1" ], [ "400", "998", "VALUE:N1" ], [ "450", "998", "VALUE:N1" ], [ "110", "999", "VALUE:N1" ], [ "120", "999", "VALUE:N1" ], [ "130", "999", "VALUE:N1" ], [ "150", "999", "VALUE:N1" ], [ "210", "999", "VALUE:N1" ], [ "220", "999", "VALUE:N1" ], [ "230", "999", "VALUE:N1" ], [ "250", "999", "VALUE:N1" ], [ "300", "999", "VALUE:N1" ], [ "350", "999", "VALUE:N1" ], [ "360", "999", "VALUE:N1" ], [ "400", "999", "VALUE:N1" ], [ "450", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodesand_ssf11_ajcc6_xiq.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodesand_ssf11_ajcc6_xiq.json
deleted file mode 100644
index 17a8f1d50..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/lymph_nodesand_ssf11_ajcc6_xiq.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "lymph_nodesand_ssf11_ajcc6_xiq",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Lymph Nodes and SSF11 AJCC6",
- "title" : "Lymph Nodes and SSF 11 AJCC 6 Table",
- "notes" : "**Note**: For CS Lymph Nodes codes 105, 108, 109, 114-130, 520, 540, 570, and 580, the N category for AJCC 6 staging is assigned based on the value of CS Site-Specific Factor 11, Regional Lymph Node - Laterality, as shown in this table.",
- "last_modified" : "2015-05-27T16:19:23.158Z",
- "definition" : [ {
- "key" : "nodes",
- "name" : "CS Lymph Nodes",
- "type" : "INPUT"
- }, {
- "key" : "ssf11",
- "name" : "CS SSF 11",
- "type" : "INPUT"
- }, {
- "key" : "ajcc6_n",
- "name" : "AJCC 6 N",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "105", "000", "ERROR:" ], [ "108-109", "000", "ERROR:" ], [ "114-130", "000", "ERROR:" ], [ "520-540", "000", "ERROR:" ], [ "570-580", "000", "ERROR:" ], [ "105", "010", "VALUE:N1" ], [ "108-109", "010", "VALUE:N1" ], [ "114-130", "010", "VALUE:N1" ], [ "520-540", "010", "VALUE:N1" ], [ "570-580", "010", "VALUE:N1" ], [ "105", "020", "VALUE:N2" ], [ "108-109", "020", "VALUE:N2" ], [ "114-130", "020", "VALUE:N2" ], [ "520-540", "020", "VALUE:N2" ], [ "570-580", "020", "VALUE:N2" ], [ "105", "030", "VALUE:N1" ], [ "108-109", "030", "VALUE:N1" ], [ "114-130", "030", "VALUE:N1" ], [ "520-540", "030", "VALUE:N1" ], [ "570-580", "030", "VALUE:N1" ], [ "105", "988", "VALUE:N1" ], [ "108-109", "988", "VALUE:N1" ], [ "114-130", "988", "VALUE:N1" ], [ "520-540", "988", "VALUE:N1" ], [ "570-580", "988", "VALUE:N1" ], [ "105", "998", "ERROR:" ], [ "108-109", "998", "ERROR:" ], [ "114-130", "998", "ERROR:" ], [ "520-540", "998", "ERROR:" ], [ "570-580", "998", "ERROR:" ], [ "105", "999", "VALUE:N1" ], [ "108-109", "999", "VALUE:N1" ], [ "114-130", "999", "VALUE:N1" ], [ "520-540", "999", "VALUE:N1" ], [ "570-580", "999", "VALUE:N1" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iaa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iaa.json
deleted file mode 100644
index e35b84a6d..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iaa.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "id" : "mets_eval_iaa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "last_modified" : "2015-05-27T16:19:27.051Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "9", "Not applicable for this site.", "VALUE:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iac.json
deleted file mode 100644
index 463ada9f2..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iac.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "mets_eval_iac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note**: The staging basis 6 for this schema is blank because AJCC stage is not applicable in the 6th Edition.",
- "last_modified" : "2015-05-27T16:19:27.097Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n\nEvaluation of distant metastasis based on physical examination, imaging examination, and/or other non-invasive clinical evidence. No microscopic examination of metastasis performed or pathologic examination was negative. \n ", "VALUE:c", "VALUE:" ], [ "1", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n\nEvaluation of distant metastasis based on endoscopic examination or other invasive technique, including surgical observation without biopsy. No microscopic examination of metastasis performed or microscopic examination was negative. \n ", "VALUE:c", "VALUE:" ], [ "2", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nNo microscopic examination of metastasis done prior to death, but positive metastatic evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy). \n ", "VALUE:p", "VALUE:" ], [ "3", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nPositive microscopic examination of metastasis performed WITHOUT pre-surgical systemic treatment or radiation\nOR positive microscopic examination of metastasis performed, unknown if pre-surgical systemic treatment or radiation performed\nOR positive microscopic examination of metastasis performed prior to neoadjuvant treatment. \n ", "VALUE:p", "VALUE:" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp)staging of distant metastasis:\n\nPositive microscopic examination of metastasis performed WITH pre-surgical systemic treatment or radiation, and metastasis based on clinical evidence.\n ", "VALUE:c", "VALUE:" ], [ "6", "Meets criteria for AJCC y-pathologic (yp)staging of distant metastasis:\n\nPositive microscopic examination of metastasis performed WITH pre-surgical systemic treatment or radiation, BUT metastasis based on pathologic evidence.\n ", "VALUE:yp", "VALUE:" ], [ "8", "Meets criteria for AJCC autopsy (a) staging of distant metastasis:\n\nEvidence from autopsy AND tumor was unsuspected or undiagnosed prior to autopsy. \n ", "VALUE:a", "VALUE:" ], [ "9", "Not applicable for this site (Version 1)\nNot assessed; cannot be accessed\nUnknown if accessed\nNot documented in patient record \n ", "VALUE:c", "VALUE:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iad.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iad.json
deleted file mode 100644
index c9468acc9..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iad.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "mets_eval_iad",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note 1**: This item reflects the validity of the classification of the item CS Mets at DX only according to diagnostic methods employed.\n\n**Note 2**: CS Lymph Mets Eval is an applicable data item for ocular adnexal lymphomas in AJCC 7th Edition staging. The data item is not applicable for all lymphomas in AJCC 6th Edition staging.",
- "last_modified" : "2015-05-27T16:19:27.145Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n\nNo pathologic examination of metastatic tissue performed. Evaluation based on physical examination, imaging examination, and/or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:c", "VALUE:N" ], [ "1", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n\nEvaluation of distant metastasis based on endoscopic examination or other invasive technique, including surgical observation without biopsy. No pathologic examination of metastatic tissue performed or pathologic examination was negative.", "VALUE:c", "VALUE:N" ], [ "2", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nNo pathologic examination of metastatic tissue done prior to death, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p", "VALUE:N" ], [ "3", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITHOUT pre-surgical systemic treatment or radiation OR specimen from metastatic site microscopically positive, unknown if pre-surgical systemic treatment or radiation performed.", "VALUE:p", "VALUE:N" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on clinical evidence.", "VALUE:c", "VALUE:N" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, and metastasis based on pathologic evidence.", "VALUE:yp", "VALUE:N" ], [ "8", "Meets criteria for AJCC autopsy (a) staging of distant metastasis:\n\nEvidence from autopsy based on examination of positive metastatis tissue AND tumor was unsuspected or undiagnosed prior to autopsy.", "VALUE:a", "VALUE:N" ], [ "9", "Not assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c", "VALUE:N" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iae.json
deleted file mode 100644
index c5347fb5c..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iae.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "mets_eval_iae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note**: The staging basis AJCC 7 for this schema is blank because AJCC stage is not applicable in the 7th Edition.",
- "last_modified" : "2015-05-27T16:19:27.192Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n \n\nEvaluation of distant metastasis based on physical examination, imaging examination, and/or other non-invasive clinical evidence. No pathologic examination of metastatic tissue performed or pathologic examination was negative.", "VALUE:", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n\nEvaluation of distant metastasis based on endoscopic examination or other invasive technique, including surgical observation without biopsy. No pathologic examination of metastatic tissue performed or pathologic examination was negative.", "VALUE:", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nNo pathologic examination of metastatic specimen done prior to death, but positive metastatic evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:", "VALUE:p" ], [ "3", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITHOUT pre-surgical systemic treatment or radiation \nOR specimen from metastatic site microscopically positive, unknown if pre-surgical systemic treatment or radiation performed\nOR specimen from metastatic site microscopically positive prior to neoadjuvant treatment.", "VALUE:", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on clinical evidence.", "VALUE:", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging of distant metastasis:\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on pathologic evidence.", "VALUE:", "VALUE:yp" ], [ "8", "Meets criteria for AJCC autopsy (a) staging of distant metastasis:\n\nEvidence from autopsy based on examination of positive metastatic tissue AND tumor was unsuspected or undiagnosed prior to autopsy.", "VALUE:", "VALUE:a" ], [ "9", "Not assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iaf.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iaf.json
deleted file mode 100644
index 3137bc743..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_iaf.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "mets_eval_iaf",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note**: The staging basis AJCC 7 for this schema is blank because AJCC stage is not applicable for this site and histology. Data were collected in this item in CSv1 and are being retained.",
- "last_modified" : "2015-05-27T16:19:27.238Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "OBSOLETE DATA RETAINED V0200\n\nNo pathologic examination of metastatic tissue performed. Evaluation of distant metastasis based on physical examination, imaging examination, and/or other non-invasive clinical evidence. No autopsy evidence used.", "VALUE:", "VALUE:c" ], [ "1", "OBSOLETE DATA RETAINED V0200\n\nNo pathologic examination of metastatic tissue performed. Evaluation of distant metastasis based on endoscopic examination or other invasive technique, including surgical observation without biopsy. No autopsy evidence used.\nDoes not meet criteria for AJCC pathologic staging of distant metastasis.", "VALUE:", "VALUE:c" ], [ "2", "OBSOLETE DATA RETAINED V0200\n\nNo pathologic examination of metastatic specimen done prior to death, but evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:", "VALUE:p" ], [ "3", "OBSOLETE DATA RETAINED V0200\n\nPathologic examination of metastatic tissue performed WITHOUT pre-surgical systemic treatment \nOR pathologic examination of metastatic tissue performed, unknown if pre-surgical systemic treatment or radiation performed.\nMeets criteria for AJCC pathologic staging of distant metastasis.", "VALUE:", "VALUE:p" ], [ "5", "OBSOLETE DATA RETAINED V0200\n\nPathologic examination of metastatic tissue performed WITH pre-surgical systemic treatment or radiation, and metastasis based on clinical evidence.", "VALUE:", "VALUE:c" ], [ "6", "OBSOLETE DATA RETAINED V0200\n\nPathologic examination of metastatic tissue performed WITH pre-surgical systemic treatment or radiation, BUT metastasis based on pathologic evidence.", "VALUE:", "VALUE:yp" ], [ "8", "OBSOLETE DATA RETAINED V0200\n\nEvidence from autopsy AND tumor was unsuspected or undiagnosed prior to autopsy.", "VALUE:", "VALUE:a" ], [ "9", "Not assessed; cannot be assessed V01XX\nUnknown if assessed V01XX\nNot documented in patient record V01XX\n\nNot applicable for this schema V0200", "VALUE:", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ina.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ina.json
deleted file mode 100644
index 792369293..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ina.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "mets_eval_ina",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note**: The staging basis for this schema is blank because AJCC stage is not applicable.",
- "last_modified" : "2015-05-27T16:19:27.282Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "9", "Not applicable for this schema", "VALUE:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipa.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipa.json
deleted file mode 100644
index 37dc226a8..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipa.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "mets_eval_ipa",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note**: This item reflects the validity of the classification of the item CS Mets at DX only according to the diagnostic methods employed.",
- "last_modified" : "2015-05-27T16:19:27.329Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n \n\nEvaluation of distant metastasis based on physical examination, imaging examination, and/or other non-invasive clinical evidence. No pathologic examination of metastatic tissue performed or pathologic examination was negative.", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n\nEvaluation of distant metastasis based on endoscopic examination or other invasive technique, including surgical observation without biopsy. No pathologic examination of metastatic tissue performed or pathologic examination was negative.", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nNo pathologic examination of metastatic specimen done prior to death, but positive metastatic evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p" ], [ "3", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITHOUT pre-surgical systemic treatment or radiation \nOR specimen from metastatic site microscopically positive, unknown if pre-surgical systemic treatment or radiation performed\nOR specimen from metastatic site microscopically positive prior to neoadjuvant treatment.", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on clinical evidence.", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging of distant metastasis:\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on pathologic evidence.", "VALUE:yp" ], [ "8", "Meets criteria for AJCC autopsy (a) staging of distant metastasis:\n\nEvidence from autopsy based on examination of positive metastatic tissue AND tumor was unsuspected or undiagnosed prior to autopsy.", "VALUE:a" ], [ "9", "Not assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipb.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipb.json
deleted file mode 100644
index fc46af4f3..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipb.json
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- "id" : "mets_eval_ipb",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note 1**: This item reflects the validity of the classification of the item CS Mets at DX only according to the diagnostic methods employed.\n\n**Note 2**: If a specific subcategory of M1 will be derived from CS Mets at DX, then determine if there was any pathological evidence for the highest subcategory. If so, select an Eval code that will derive a \"p\" staging basis. If there was only clinical evidence of the highest subcategory, select an Eval code that will derive a \"c\" staging basis. See also CS Mets Eval in Part 1.",
- "last_modified" : "2015-05-27T16:19:27.373Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging of distant metastasis: \n\nEvaluation of distant metastasis based on physical examination, imaging examination, and/or other non-invasive clinical evidence. No microscopic examination of metastatic specimen performed or microscopic examination was negative.", "VALUE:c" ], [ "1", "Does not meet criteria for AJCC pathologic staging of distant metastasis: \n\nEvaluation of distant metastasis based on endoscopic examination or other invasive technique, including surgical observation without biopsy. No microscopic examination of metastatic specimen performed or microscopic examination was negative.", "VALUE:c" ], [ "2", "Meets criteria for AJCC pathologic staging of distant metastasis: \n\nNo microscopic examination of metastatic specimen done prior to death, but positive metastatic evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p" ], [ "3", "Meets criteria for AJCC pathologic staging of distant metastasis: \n\nSpecimen from metastatic site microscopically positive WITHOUT pre-surgical systemic treatment or radiation \n\nOR specimen from metastatic site microscopically positive, unknown if pre-surgical systemic treatment or radiation performed \n\nOR specimen from metastatic site microscopically positive prior to neoadjuvant treatment.", "VALUE:p" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging of distant metastasis: \n\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on clinical evidence.", "VALUE:c" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging of distant metastasis: \n\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on pathologic evidence.", "VALUE:yp" ], [ "8", "Meets criteria for AJCC autopsy (a) staging of distant metastasis: \n\nEvidence from autopsy based on examination of positive metastatic tissue AND tumor was unsuspected or undiagnosed prior to autopsy.", "VALUE:a" ], [ "9", "Not assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipc.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipc.json
deleted file mode 100644
index 788dee49a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_eval_ipc.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id" : "mets_eval_ipc",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets Eval",
- "title" : "CS Mets Eval",
- "notes" : "**Note**: This item reflects the validity of the classification of the item CS Mets at DX only according to the diagnostic methods employed.",
- "last_modified" : "2015-05-27T16:19:27.420Z",
- "definition" : [ {
- "key" : "mets_eval",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "mdescriptor",
- "name" : "Staging Basis 7",
- "type" : "ENDPOINT"
- }, {
- "key" : "staging_basis_6",
- "name" : "Staging Basis 6",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "0", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n \n\nEvaluation of distant metastasis based on physical examination, imaging examination, and/or other non-invasive clinical evidence. No pathologic examination of metastatic tissue performed or pathologic examination was negative.", "VALUE:c", "VALUE:" ], [ "1", "Does not meet criteria for AJCC pathologic staging of distant metastasis:\n\nEvaluation of distant metastasis based on endoscopic examination or other invasive technique, including surgical observation without biopsy. No pathologic examination of metastatic tissue performed or pathologic examination was negative.", "VALUE:c", "VALUE:" ], [ "2", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nNo pathologic examination of metastatic specimen done prior to death, but positive metastatic evidence derived from autopsy (tumor was suspected or diagnosed prior to autopsy).", "VALUE:p", "VALUE:" ], [ "3", "Meets criteria for AJCC pathologic staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITHOUT pre-surgical systemic treatment or radiation \nOR specimen from metastatic site microscopically positive, unknown if pre-surgical systemic treatment or radiation performed\nOR specimen from metastatic site microscopically positive prior to neoadjuvant treatment.", "VALUE:p", "VALUE:" ], [ "5", "Does not meet criteria for AJCC y-pathologic (yp) staging of distant metastasis:\n\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on clinical evidence.", "VALUE:c", "VALUE:" ], [ "6", "Meets criteria for AJCC y-pathologic (yp) staging of distant metastasis:\nSpecimen from metastatic site microscopically positive WITH pre-surgical systemic treatment or radiation, BUT metastasis based on pathologic evidence.", "VALUE:yp", "VALUE:" ], [ "8", "Meets criteria for AJCC autopsy (a) staging of distant metastasis:\n\nEvidence from autopsy based on examination of positive metastatic tissue AND tumor was unsuspected or undiagnosed prior to autopsy.", "VALUE:a", "VALUE:" ], [ "9", "Not assessed; cannot be assessed\nUnknown if assessed\nNot documented in patient record", "VALUE:c", "VALUE:" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hab.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hab.json
deleted file mode 100644
index 32bfe7d2f..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hab.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "mets_hab",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets",
- "title" : "CS Mets at DX",
- "notes" : "**Note 1**: Most pleural and pericardial effusions with lung cancer are due to tumor. In a few patients, however, multiple cytopathologic examinations of pleural and/or pericardial fluid are negative for tumor, and the fluid is nonbloody and is not an exudate. Where these elements and clinical judgment dictate that the effusion is not related to the tumor, the effusion should be excluded as a staging element and the tumor should be classified as M0.\n\n**Note 2**: For contralateral (different lung) pleural effusion, use code 16 instead of code 40. For bilateral (same and different lung) pleural effusion, use code 17 instead of code 40.",
- "footnotes" : "- For CS Mets at DX codes 00 and 99, the M category for AJCC 7 staging is assigned based on the value of CS Tumor Size as shown in the Size Mets at DX AJCC 7 Table for this schema.\n- For all CS Met at Dx codes, the M category for AJCC 6 staging is assigned based on the values of CS Tumor Size, CS Extension, CS Mets at DX, and CS Site Specific Factor 1, as shown in the Size Extension Mets SSF1 AJCC 6 Tables for this schema.",
- "last_modified" : "2015-05-27T16:19:27.467Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC 7 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m77",
- "name" : "Summary Stage 1977 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage 2000 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "No distant metastasis", "JUMP:size_metsat_dxajcc7_m_xkb", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:NONE", "VALUE:NONE" ], [ "10", "OBSOLETE DATA CONVERTED V0200\nSee code 30\n\nDistant lymph node(s), including cervical nodes", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "ERROR:", "ERROR:" ], [ "15", "Malignant pleural effusion, ipsilateral or same lung", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "16", "Malignant pleural effusion, contralateral or other lung", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "17", "Malignant pleural effusion, ipsilateral and contralateral lungs (Bilateral pleural effusion)", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "18", "Malignant pleural effusion, unknown if ipsilateral or contralateral lung", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "20", "Malignant pericardial effusion", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "21", "20 + (16 or 17)\n\nMalignant pericardial effusion plus contralateral or bilateral pleural effusion", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "23", "Extension to: \n Contralateral lung \n Contralateral main stem bronchus \nSeparate tumor nodule(s) in contralateral lung\nPleural tumor foci or nodules on contralateral lung", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "24", "Pleural tumor foci or nodules on the ipsilateral lung separate from direct invasion", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "25", "23 + any of (15, 16, 17, 18, 20, 21, 24)\n\nExtension to contralateral lung plus pleural or pericardial effusion or separate pleural tumor foci", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "26", "Stated as M1a with no other information on distant metastasis", "VALUE:M1a", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "30", "Distant lymph node(s), including cervical nodes", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "32", "30 + any of (15, 16, 17, 18, 20, 21)\n\nDistant lymph nodes plus pleural or pericardial effusion", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "33", "30 + 24\n\nDistant lymph nodes plus pleural tumor foci", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "35", "OBSOLETE DATA RETAINED V0200 \nSeparate tumor nodules reclassified in AJCC 7th Edition, coded in CS Site-Specific Factor 1 \n\nSeparate tumor nodule(s) in different lobe, same lung", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:L", "VALUE:D" ], [ "36", "30 + 23\n\nDistant lymph nodes plus extension to contralateral lung", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "37", "Extension to:\n Skeletal muscle\n Sternum\n Skin of chest", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "38", "37 + 23\n\nExtension in code 37 plus extension to contralateral lung", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "39", "OBSOLETE DATA CONVERTED V0200\nSee code 23\n\nExtension to:\n Contralateral lung\n Contralateral main stem bronchus \nSeparate tumor nodule(s) in contralateral lung", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "ERROR:", "ERROR:" ], [ "40", "Abdominal organs\nDistant metastasis, except distant lymph node(s) and extension specified in codes 23 and 37, including: \n Separate lesion in chest wall or diaphragm\n Distant metastasis, NOS\n Carcinomatosis", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "41", "40+ 23 \n\nDistant mets plus extension to contralateral lung ", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "42", "(37 or 40) + any of (15, 16, 17, 18, 20, 21)\n\nDistant metastasis plus pleural or pericardial effusion", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "43", "(37 or 40) + 24\n\nDistant metastasis plus pleural tumor foci", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "50", "OBSOLETE DATA RETAINED V0200\n\nDistant metastases + Distant node(s)\n(10) + any of (35 to 40)", "ERROR:", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "51", "(37 or 40) + 30\n\nDistant metastasis plus distant lymph node(s)", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "52", "51 + any of (15, 16, 17, 18, 20, 21)\n\nDistant metastasis plus distant lymph nodes plus pleural or pericardial effusion", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "53", "51 + 24\n\nDistant metastases plus distant lymph nodes plus pleural tumor foci", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "70", "Stated as M1b with no other information on distant metastasis", "VALUE:M1b", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "75", "Stated as M1 [NOS] with no other information on distant metastasis", "VALUE:M1NOS", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:D", "VALUE:D" ], [ "99", "Unknown; distant metastasis not stated\nDistant metastasis cannot be assessed\nNot documented in patient record", "JUMP:size_metsat_dxajcc7_m_xkb", "JUMP:determine_correct_table_for_ajcc6_tm_ns47", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hac.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hac.json
deleted file mode 100644
index daed5d381..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hac.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "id" : "mets_hac",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets",
- "title" : "CS Mets at DX",
- "last_modified" : "2015-05-27T16:19:27.522Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC 7 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m77",
- "name" : "Summary Stage 1977 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage 2000 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "No distant metastasis", "VALUE:M0", "VALUE:M0", "VALUE:NONE", "VALUE:NONE" ], [ "10", "Distant lymph node(s), including:\n For all subsites: \n Mesenteric, NOS:\n Inferior mesenteric\n Superior mesenteric\n Para-aortic\n Porta hepatis (portal) (hilar) (in hilus of liver)\n Retropancreatic\n Retroperitoneal\n For all subsites EXCEPT lesser curvature :\n Hepatoduodenal \n Distant lymph node(s), NOS", "VALUE:M1", "VALUE:M1", "VALUE:D", "VALUE:D" ], [ "40", "Distant metastasis except distant lymph node(s)\nCarcinomatosis\nKrukenberg tumor (metastasis to ovary(ies)\nMalignant (positive) peritoneal cytology", "VALUE:M1", "VALUE:M1", "VALUE:D", "VALUE:D" ], [ "50", "40 + 10\n\nDistant metastasis plus distant lymph node(s)", "VALUE:M1", "VALUE:M1", "VALUE:D", "VALUE:D" ], [ "60", "Distant metastasis, NOS\n \nStated as M1 with no other information on distant metastasis", "VALUE:M1", "VALUE:M1", "VALUE:D", "VALUE:D" ], [ "99", "Unknown; distant metastasis not stated\nDistant metastasis cannot be assessed\nNot documented in patient record", "VALUE:M0", "VALUE:MX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_had.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_had.json
deleted file mode 100644
index 5ce8d4520..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_had.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "id" : "mets_had",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets",
- "title" : "CS Mets at DX",
- "notes" : "**Note**: Nodes in contiguous (secondary) and bidirectional (cephalad/caudal) primary nodal basins are coded in CS Lymph Nodes. (Clarification V0204)",
- "footnotes" : "- For CS Mets at DX codes 05, 10, 42, 43, 52, 53, 55, 56, and 60 ONLY, the M category is assigned based on the status of serum LDH as coded in CS Site-Specific Factor 4 and shown in the Mets at DX and LDH Table.\n- For CS Mets at DX codes 05, 10, 42, 43, 52, 53, 55, 56, and 60 ONLY, the M category is assigned based on the status of serum LDH as coded in CS Site-Specific Factor 4 and shown in the Mets at DX and LDH Table.",
- "last_modified" : "2015-05-27T16:19:27.570Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC 7 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m77",
- "name" : "Summary Stage 1977 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage 2000 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "No distant metastasis", "VALUE:M0", "VALUE:M0", "VALUE:NONE", "VALUE:NONE" ], [ "05", "Metastasis to underlying cartilage, bone, skeletal muscle (excluding direct extension)", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "10", "Distant lymph node(s)", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "40", "OBSOLETE DATA CONVERTED V0200\nSee code 60\n\nDistant metastasis, NOS", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "42", "Metastasis to skin or subcutaneous tissue beyond regional lymph nodes", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "43", "Lung", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "44", "Metastasis to all other visceral or distant sites with or without metastasis to lungs\nCarcinomatosis", "VALUE:M1c", "VALUE:M1c", "VALUE:D", "VALUE:D" ], [ "52", "42 + 10\n\nMetastasis to skin or subcutaneous tissue beyond nodes plus distant nodes", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "53", "43 + 10\n\nMetastasis to lung plus distant nodes", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "54", "44 + 10\n\nMetastasis to all other visceral or distant sites plus distant nodes\nWith or without metastasis to lungs", "VALUE:M1c", "VALUE:M1c", "VALUE:D", "VALUE:D" ], [ "55", "Stated as M1a with no other information on metastasis", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "56", "Stated as M1b with no other information on distant metastasis", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "57", "Stated as M1c with no other information on distant metastasis", "VALUE:M1c", "VALUE:M1c", "VALUE:D", "VALUE:D" ], [ "60", "Distant metastasis, NOS\n\nStated as M1 [NOS] with no other information on distant metastasis", "JUMP:metsat_dxand_ldh_xbs", "JUMP:metsat_dxand_ldh_xbs", "VALUE:D", "VALUE:D" ], [ "99", "Unknown; distant metastasis not stated\nDistant metastasis cannot be assessed\nNot documented in patient record", "VALUE:M0", "VALUE:MX", "VALUE:U", "VALUE:U" ] ]
-}
\ No newline at end of file
diff --git a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hae.json b/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hae.json
deleted file mode 100644
index 3deb9e59a..000000000
--- a/algorithm-cs/src/main/resources/algorithms/cs/02.05.50/tables/mets_hae.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "id" : "mets_hae",
- "algorithm" : "cs",
- "version" : "02.05.50",
- "name" : "Mets",
- "title" : "CS Mets at DX",
- "notes" : "**Note**: For metastasis limited to a single distant lymph node chain, use code 08, 16 or 18. For metastases involving multiple distant lymph node chains, use codes 31 or 33.",
- "last_modified" : "2015-05-27T16:19:27.614Z",
- "definition" : [ {
- "key" : "mets",
- "name" : "Code",
- "type" : "INPUT"
- }, {
- "key" : "description",
- "name" : "Description",
- "type" : "DESCRIPTION"
- }, {
- "key" : "ajcc7_m",
- "name" : "AJCC 7 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "ajcc6_m",
- "name" : "AJCC 6 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m77",
- "name" : "Summary Stage 1977 M",
- "type" : "ENDPOINT"
- }, {
- "key" : "m2000",
- "name" : "Summary Stage 2000 M",
- "type" : "ENDPOINT"
- } ],
- "rows" : [ [ "00", "No distant metastasis", "VALUE:M0", "VALUE:M0", "VALUE:NONE", "VALUE:NONE" ], [ "08", "Metastasis limited to a single distant lymph node chain:\nFor cecum, ascending, hepatic flexure and transverse colon:\n Superior mesenteric lymph nodes only", "VALUE:M1a", "VALUE:M1", "VALUE:RN", "VALUE:D" ], [ "10", "OBSOLETE DATA RETAINED V0200\nSee codes 15 and 25\n\nDistant lymph node(s) other than code 08\nFor all colon sites:\n Common iliac\n Distant lymph node(s), NOS\n External iliac\n Para-aortic\n Retroperitoneal\nFor cecum, \nappendix, \nascending\ncolon, \ntransverse colon, \nand hepatic flexure;\n Inferior mesenteric\nFor splenic flexure, \ndescending colon, and \nsigmoid colon:\n Superior mesenteric", "ERROR:", "VALUE:M1", "VALUE:D", "VALUE:D" ], [ "15", "OBSOLETE DATA CONVERTED V0203\nSee code 16\n\nMetastasis to a single distant lymph node chain other than code 08\nFor all colon sites:\n Common iliac\n Distant lymph node(s), NOS\n External iliac\n Para-aortic\n Retroperitoneal\nFor cecum, ascending colon, transverse colon, and hepatic flexure:\n Inferior mesenteric\nFor splenic flexure, descending colon, and sigmoid colon:\n Superior mesenteric", "ERROR:", "ERROR:", "ERROR:", "ERROR:" ], [ "16", "Metastasis limited to a single distant lymph node chain: For all colon sites:\n Common iliac\n Distant lymph node(s), NOS\n External iliac\n Para-aort